1 package com.sourceforge.jpatterns.core.configuration.junit;
2
3 import com.sourceforge.jpatterns.core.configuration.IPropertiesManager;
4 import org.apache.log4j.Logger;
5
6 import java.util.Set;
7
8
9
10
11
12
13
14
15 public class PropertiesManagerMockImplTwo implements IPropertiesManager
16 {
17
18
19
20 final public static Logger LOG = Logger.getLogger(PropertiesManagerMockImplTwo.class);
21
22 public boolean customConfigPresents()
23 {
24 throw new UnsupportedOperationException();
25 }
26
27 public boolean defaultConfigPresents()
28 {
29 throw new UnsupportedOperationException();
30 }
31
32 public boolean useOnlyCustomConfigIfPresent()
33 {
34 throw new UnsupportedOperationException();
35 }
36
37 public String getBundle(final String key)
38 {
39 throw new UnsupportedOperationException();
40 }
41
42 public String getBundle(final Class key)
43 {
44 throw new UnsupportedOperationException();
45 }
46
47 public Object getBundledObject(final Class key)
48 {
49 throw new UnsupportedOperationException();
50 }
51
52 public Object getBundledObject(final String key)
53 {
54 throw new UnsupportedOperationException();
55 }
56
57 public String getDefaultBundle(final String key)
58 {
59 throw new UnsupportedOperationException();
60 }
61
62 public String getCustomBundle(final String key)
63 {
64 throw new UnsupportedOperationException();
65 }
66
67 public Set<String> getMergedKeys()
68 {
69 throw new UnsupportedOperationException();
70 }
71 }