1 package org.jellyfish.provider;
2
3 import java.util.Hashtable;
4
5 import javax.naming.Context;
6 import javax.naming.Name;
7 import javax.naming.NameParser;
8 import javax.naming.NamingEnumeration;
9 import javax.naming.NamingException;
10 import javax.naming.directory.Attributes;
11 import javax.naming.directory.DirContext;
12 import javax.naming.directory.ModificationItem;
13 import javax.naming.directory.SearchControls;
14
15 public class FileSystemDirectoryContextMock implements FileSystemDirectoryContext {
16
17 private String providerUrl;
18
19 public Attributes getAttributes(Name name) throws NamingException {
20 throw new UnsupportedOperationException("implement me");
21 }
22
23 public Attributes getAttributes(String name) throws NamingException {
24 throw new UnsupportedOperationException("implement me");
25 }
26
27 public Attributes getAttributes(Name name, String[] attrIds) throws NamingException {
28 throw new UnsupportedOperationException("implement me");
29 }
30
31 public Attributes getAttributes(String name, String[] attrIds) throws NamingException {
32 throw new UnsupportedOperationException("implement me");
33 }
34
35 public void modifyAttributes(Name name, int mod_op, Attributes attrs) throws NamingException {
36 throw new UnsupportedOperationException("implement me");
37 }
38
39 public void modifyAttributes(String name, int mod_op, Attributes attrs)
40 throws NamingException {
41 throw new UnsupportedOperationException("implement me");
42 }
43
44 public void modifyAttributes(Name name, ModificationItem[] mods) throws NamingException {
45 throw new UnsupportedOperationException("implement me");
46 }
47
48 public void modifyAttributes(String name, ModificationItem[] mods) throws NamingException {
49 throw new UnsupportedOperationException("implement me");
50 }
51
52 public void bind(Name name, Object obj, Attributes attrs) throws NamingException {
53 throw new UnsupportedOperationException("implement me");
54 }
55
56 public void bind(String name, Object obj, Attributes attrs) throws NamingException {
57 throw new UnsupportedOperationException("implement me");
58 }
59
60 public void rebind(Name name, Object obj, Attributes attrs) throws NamingException {
61 throw new UnsupportedOperationException("implement me");
62 }
63
64 public void rebind(String name, Object obj, Attributes attrs) throws NamingException {
65 throw new UnsupportedOperationException("implement me");
66 }
67
68 public DirContext createSubcontext(Name name, Attributes attrs) throws NamingException {
69 throw new UnsupportedOperationException("implement me");
70 }
71
72 public DirContext createSubcontext(String name, Attributes attrs) throws NamingException {
73 throw new UnsupportedOperationException("implement me");
74 }
75
76 public DirContext getSchema(Name name) throws NamingException {
77 throw new UnsupportedOperationException("implement me");
78 }
79
80 public DirContext getSchema(String name) throws NamingException {
81 throw new UnsupportedOperationException("implement me");
82 }
83
84 public DirContext getSchemaClassDefinition(Name name) throws NamingException {
85 throw new UnsupportedOperationException("implement me");
86 }
87
88 public DirContext getSchemaClassDefinition(String name) throws NamingException {
89 throw new UnsupportedOperationException("implement me");
90 }
91
92 public NamingEnumeration search(
93 Name name,
94 Attributes matchingAttributes,
95 String[] attributesToReturn)
96 throws NamingException {
97 throw new UnsupportedOperationException("implement me");
98 }
99
100 public NamingEnumeration search(
101 String name,
102 Attributes matchingAttributes,
103 String[] attributesToReturn)
104 throws NamingException {
105 throw new UnsupportedOperationException("implement me");
106 }
107
108 public NamingEnumeration search(Name name, Attributes matchingAttributes)
109 throws NamingException {
110 throw new UnsupportedOperationException("implement me");
111 }
112
113 public NamingEnumeration search(String name, Attributes matchingAttributes)
114 throws NamingException {
115 throw new UnsupportedOperationException("implement me");
116 }
117
118 public NamingEnumeration search(Name name, String filter, SearchControls cons)
119 throws NamingException {
120 throw new UnsupportedOperationException("implement me");
121 }
122
123 public NamingEnumeration search(String name, String filter, SearchControls cons)
124 throws NamingException {
125 throw new UnsupportedOperationException("implement me");
126 }
127
128 public NamingEnumeration search(
129 Name name,
130 String filterExpr,
131 Object[] filterArgs,
132 SearchControls cons)
133 throws NamingException {
134 throw new UnsupportedOperationException("implement me");
135 }
136
137 public NamingEnumeration search(
138 String name,
139 String filterExpr,
140 Object[] filterArgs,
141 SearchControls cons)
142 throws NamingException {
143 throw new UnsupportedOperationException("implement me");
144 }
145
146 public Object lookup(Name name) throws NamingException {
147 throw new UnsupportedOperationException("implement me");
148 }
149
150 public Object lookup(String name) throws NamingException {
151 throw new UnsupportedOperationException("implement me");
152 }
153
154 public void bind(Name name, Object obj) throws NamingException {
155 throw new UnsupportedOperationException("implement me");
156 }
157
158 public void bind(String name, Object obj) throws NamingException {
159 throw new UnsupportedOperationException("implement me");
160 }
161
162 public void rebind(Name name, Object obj) throws NamingException {
163 throw new UnsupportedOperationException("implement me");
164 }
165
166 public void rebind(String name, Object obj) throws NamingException {
167 throw new UnsupportedOperationException("implement me");
168 }
169
170 public void unbind(Name name) throws NamingException {
171 throw new UnsupportedOperationException("implement me");
172 }
173
174 public void unbind(String name) throws NamingException {
175 throw new UnsupportedOperationException("implement me");
176 }
177
178 public void rename(Name oldName, Name newName) throws NamingException {
179 throw new UnsupportedOperationException("implement me");
180 }
181
182 public void rename(String oldName, String newName) throws NamingException {
183 throw new UnsupportedOperationException("implement me");
184 }
185
186 public NamingEnumeration list(Name name) throws NamingException {
187 throw new UnsupportedOperationException("implement me");
188 }
189
190 public NamingEnumeration list(String name) throws NamingException {
191 throw new UnsupportedOperationException("implement me");
192 }
193
194 public NamingEnumeration listBindings(Name name) throws NamingException {
195 throw new UnsupportedOperationException("implement me");
196 }
197
198 public NamingEnumeration listBindings(String name) throws NamingException {
199 throw new UnsupportedOperationException("implement me");
200 }
201
202 public void destroySubcontext(Name name) throws NamingException {
203 throw new UnsupportedOperationException("implement me");
204 }
205
206 public void destroySubcontext(String name) throws NamingException {
207 throw new UnsupportedOperationException("implement me");
208 }
209
210 public Context createSubcontext(Name name) throws NamingException {
211 throw new UnsupportedOperationException("implement me");
212 }
213
214 public Context createSubcontext(String name) throws NamingException {
215 throw new UnsupportedOperationException("implement me");
216 }
217
218 public Object lookupLink(Name name) throws NamingException {
219 throw new UnsupportedOperationException("implement me");
220 }
221
222 public Object lookupLink(String name) throws NamingException {
223 throw new UnsupportedOperationException("implement me");
224 }
225
226 public NameParser getNameParser(Name name) throws NamingException {
227 throw new UnsupportedOperationException("implement me");
228 }
229
230 public NameParser getNameParser(String name) throws NamingException {
231 throw new UnsupportedOperationException("implement me");
232 }
233
234 public Name composeName(Name name, Name prefix) throws NamingException {
235 throw new UnsupportedOperationException("implement me");
236 }
237
238 public String composeName(String name, String prefix) throws NamingException {
239 throw new UnsupportedOperationException("implement me");
240 }
241
242 public Object addToEnvironment(String propName, Object propVal) throws NamingException {
243 throw new UnsupportedOperationException("implement me");
244 }
245
246 public Object removeFromEnvironment(String propName) throws NamingException {
247 throw new UnsupportedOperationException("implement me");
248 }
249
250 public Hashtable getEnvironment() throws NamingException {
251 throw new UnsupportedOperationException("implement me");
252 }
253
254 public void close() throws NamingException {
255 throw new UnsupportedOperationException("implement me");
256 }
257
258 public String getNameInNamespace() throws NamingException {
259 throw new UnsupportedOperationException("implement me");
260 }
261
262 public String getProviderUrl() {
263 return providerUrl;
264 }
265
266 public void setProviderUrl(String providerUrl) {
267 this.providerUrl = providerUrl;
268 }
269
270 }
This page was automatically generated by Maven