1 package org.jellyfish;
2
3 import java.util.Collection;
4 import java.util.Properties;
5 import java.util.logging.Logger;
6
7 import javax.jdo.PersistenceManager;
8
9 import org.apache.commons.beanutils.Converter;
10 import org.jellyfish.provider.EntryFileHandler;
11 import org.jellyfish.provider.EntryFileHandlerMock;
12
13 import mock.java.util.logging.LoggerMock;
14
15 public class ManagerFactoryMock extends ManagerFactoryBase {
16
17 public LoggerMock createLoggerReturn = new LoggerMock();
18 public Logger createLogger(Class clazz) {
19 return createLoggerReturn;
20 }
21
22 public MappingManagerMock createMappingManagerReturn = new MappingManagerMock();
23 public MappingManager createMappingManager() {
24 return createMappingManagerReturn;
25 }
26
27 public ConnectionManagerMock createConnectionManagerReturn = new ConnectionManagerMock();
28 public ConnectionManager createConnectionManager() {
29 return createConnectionManagerReturn;
30 }
31
32 public IOManagerMock createIOManagerReturn = new IOManagerMock();
33 public IOManager createIOManager() {
34 return createIOManagerReturn;
35 }
36
37 public ConfigurationManagerMock createConfigurationManagerReturn =
38 new ConfigurationManagerMock();
39 public ConfigurationManager createConfigurationManager() {
40 return createConfigurationManagerReturn;
41 }
42
43 public ConverterMock createConverterReturn = new ConverterMock();
44 public Converter createConverter() {
45 return createConverterReturn;
46 }
47
48 public EntryFileHandlerMock createEntryFileHandlerReturn = new EntryFileHandlerMock();
49 public EntryFileHandler createEntryFileHandler() {
50 return createEntryFileHandlerReturn;
51 }
52 public PersistenceManager getPersistenceManager() {
53 throw new UnsupportedOperationException("Implement Me!");
54 }
55 public PersistenceManager getPersistenceManager(String arg0, String arg1) {
56 throw new UnsupportedOperationException("Implement Me!");
57 }
58 public void setConnectionUserName(String arg0) {
59 throw new UnsupportedOperationException("Implement Me!");
60 }
61 public String getConnectionUserName() {
62 throw new UnsupportedOperationException("Implement Me!");
63 }
64 public void setConnectionPassword(String arg0) {
65 throw new UnsupportedOperationException("Implement Me!");
66 }
67 public void setConnectionURL(String arg0) {
68 throw new UnsupportedOperationException("Implement Me!");
69 }
70 public String getConnectionURL() {
71 throw new UnsupportedOperationException("Implement Me!");
72 }
73 public void setConnectionDriverName(String arg0) {
74 throw new UnsupportedOperationException("Implement Me!");
75 }
76 public String getConnectionDriverName() {
77 throw new UnsupportedOperationException("Implement Me!");
78 }
79 public void setConnectionFactoryName(String arg0) {
80 throw new UnsupportedOperationException("Implement Me!");
81 }
82 public String getConnectionFactoryName() {
83 throw new UnsupportedOperationException("Implement Me!");
84 }
85 public void setConnectionFactory(Object arg0) {
86 throw new UnsupportedOperationException("Implement Me!");
87 }
88 public Object getConnectionFactory() {
89 throw new UnsupportedOperationException("Implement Me!");
90 }
91 public void setConnectionFactory2Name(String arg0) {
92 throw new UnsupportedOperationException("Implement Me!");
93 }
94 public String getConnectionFactory2Name() {
95 throw new UnsupportedOperationException("Implement Me!");
96 }
97 public void setConnectionFactory2(Object arg0) {
98 throw new UnsupportedOperationException("Implement Me!");
99 }
100 public Object getConnectionFactory2() {
101 throw new UnsupportedOperationException("Implement Me!");
102 }
103 public void setMultithreaded(boolean arg0) {
104 throw new UnsupportedOperationException("Implement Me!");
105 }
106 public boolean getMultithreaded() {
107 throw new UnsupportedOperationException("Implement Me!");
108 }
109 public void setOptimistic(boolean arg0) {
110 throw new UnsupportedOperationException("Implement Me!");
111 }
112 public boolean getOptimistic() {
113 throw new UnsupportedOperationException("Implement Me!");
114 }
115 public void setRetainValues(boolean arg0) {
116 throw new UnsupportedOperationException("Implement Me!");
117 }
118 public boolean getRetainValues() {
119 throw new UnsupportedOperationException("Implement Me!");
120 }
121 public void setRestoreValues(boolean arg0) {
122 throw new UnsupportedOperationException("Implement Me!");
123 }
124 public boolean getRestoreValues() {
125 throw new UnsupportedOperationException("Implement Me!");
126 }
127 public void setNontransactionalRead(boolean arg0) {
128 throw new UnsupportedOperationException("Implement Me!");
129 }
130 public boolean getNontransactionalRead() {
131 throw new UnsupportedOperationException("Implement Me!");
132 }
133 public void setNontransactionalWrite(boolean arg0) {
134 throw new UnsupportedOperationException("Implement Me!");
135 }
136 public boolean getNontransactionalWrite() {
137 throw new UnsupportedOperationException("Implement Me!");
138 }
139 public void setIgnoreCache(boolean arg0) {
140 throw new UnsupportedOperationException("Implement Me!");
141 }
142 public boolean getIgnoreCache() {
143 throw new UnsupportedOperationException("Implement Me!");
144 }
145 public int getMaxPool() {
146 throw new UnsupportedOperationException("Implement Me!");
147 }
148 public void setMaxPool(int arg0) {
149 throw new UnsupportedOperationException("Implement Me!");
150 }
151 public int getMinPool() {
152 throw new UnsupportedOperationException("Implement Me!");
153 }
154 public void setMinPool(int arg0) {
155 throw new UnsupportedOperationException("Implement Me!");
156 }
157 public int getMsWait() {
158 throw new UnsupportedOperationException("Implement Me!");
159 }
160 public void setMsWait(int arg0) {
161 throw new UnsupportedOperationException("Implement Me!");
162 }
163 public Properties getProperties() {
164 throw new UnsupportedOperationException("Implement Me!");
165 }
166 public Collection supportedOptions() {
167 throw new UnsupportedOperationException("Implement Me!");
168 }
169 public DirectoryManager createDirectoryManager() {
170 throw new UnsupportedOperationException("Implement me.");
171 }
172
173 }
This page was automatically generated by Maven