1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | |
package org.apache.ws.scout.registry.infomodel; |
18 | |
|
19 | |
import java.util.Date; |
20 | |
|
21 | |
import javax.xml.registry.JAXRException; |
22 | |
import javax.xml.registry.LifeCycleManager; |
23 | |
import javax.xml.registry.UnsupportedCapabilityException; |
24 | |
import javax.xml.registry.infomodel.RegistryEntry; |
25 | |
|
26 | |
|
27 | |
|
28 | |
|
29 | |
|
30 | |
|
31 | |
|
32 | |
public class RegistryEntryImpl extends RegistryObjectImpl implements RegistryEntry |
33 | |
{ |
34 | |
|
35 | |
|
36 | |
|
37 | |
|
38 | |
|
39 | |
|
40 | |
|
41 | |
|
42 | |
|
43 | |
|
44 | |
|
45 | |
public RegistryEntryImpl(LifeCycleManager lifeCycleManager) |
46 | |
{ |
47 | 0 | super(lifeCycleManager); |
48 | 0 | } |
49 | |
|
50 | |
public Date getExpiration() throws JAXRException |
51 | |
{ |
52 | 0 | throw new UnsupportedCapabilityException("Level 1 feature"); |
53 | |
} |
54 | |
|
55 | |
public int getMajorVersion() throws JAXRException |
56 | |
{ |
57 | 0 | throw new UnsupportedCapabilityException("Level 1 feature"); |
58 | |
} |
59 | |
|
60 | |
public int getMinorVersion() throws JAXRException |
61 | |
{ |
62 | 0 | throw new UnsupportedCapabilityException("Level 1 feature"); |
63 | |
} |
64 | |
|
65 | |
public int getStability() throws JAXRException |
66 | |
{ |
67 | 0 | throw new UnsupportedCapabilityException("Level 1 feature"); |
68 | |
} |
69 | |
|
70 | |
public int getStatus() throws JAXRException |
71 | |
{ |
72 | 0 | throw new UnsupportedCapabilityException("Level 1 feature"); |
73 | |
} |
74 | |
|
75 | |
public String getUserVersion() throws JAXRException |
76 | |
{ |
77 | 0 | throw new UnsupportedCapabilityException("Level 1 feature"); |
78 | |
} |
79 | |
|
80 | |
public void setExpiration(Date date) throws JAXRException |
81 | |
{ |
82 | 0 | throw new UnsupportedCapabilityException("Level 1 feature"); |
83 | |
} |
84 | |
|
85 | |
public void setMajorVersion(int param) throws JAXRException |
86 | |
{ |
87 | 0 | throw new UnsupportedCapabilityException("Level 1 feature"); |
88 | |
} |
89 | |
|
90 | |
public void setMinorVersion(int param) throws JAXRException |
91 | |
{ |
92 | 0 | throw new UnsupportedCapabilityException("Level 1 feature"); |
93 | |
} |
94 | |
|
95 | |
public void setStability(int param) throws JAXRException |
96 | |
{ |
97 | 0 | throw new UnsupportedCapabilityException("Level 1 feature"); |
98 | |
} |
99 | |
|
100 | |
public void setUserVersion(String str) throws JAXRException |
101 | |
{ |
102 | 0 | throw new UnsupportedCapabilityException("Level 1 feature"); |
103 | |
} |
104 | |
|
105 | |
} |