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 javax.xml.registry.JAXRException; |
20 | |
import javax.xml.registry.UnsupportedCapabilityException; |
21 | |
|
22 | |
|
23 | |
|
24 | |
|
25 | |
|
26 | |
|
27 | |
|
28 | |
public class PersonNameImpl implements javax.xml.registry.infomodel.PersonName |
29 | |
{ |
30 | |
|
31 | 0 | private String fullname = ""; |
32 | |
|
33 | |
|
34 | |
|
35 | |
|
36 | |
public PersonNameImpl() |
37 | 0 | { |
38 | 0 | } |
39 | |
|
40 | |
public PersonNameImpl(String fullname) |
41 | 0 | { |
42 | 0 | this.fullname = fullname; |
43 | 0 | } |
44 | |
|
45 | |
public String getFullName() throws JAXRException |
46 | |
{ |
47 | 0 | return this.fullname; |
48 | |
} |
49 | |
|
50 | |
public void setFullName(String str) throws JAXRException |
51 | |
{ |
52 | 0 | this.fullname = str; |
53 | 0 | } |
54 | |
|
55 | |
public String getFirstName() throws JAXRException |
56 | |
{ |
57 | 0 | throw new UnsupportedCapabilityException(); |
58 | |
} |
59 | |
|
60 | |
public String getLastName() throws JAXRException |
61 | |
{ |
62 | 0 | throw new UnsupportedCapabilityException(); |
63 | |
} |
64 | |
|
65 | |
public String getMiddleName() throws JAXRException |
66 | |
{ |
67 | 0 | throw new UnsupportedCapabilityException(); |
68 | |
} |
69 | |
|
70 | |
public void setFirstName(String str) throws JAXRException |
71 | |
{ |
72 | 0 | throw new UnsupportedCapabilityException(); |
73 | |
} |
74 | |
|
75 | |
public void setLastName(String str) throws JAXRException |
76 | |
{ |
77 | 0 | throw new UnsupportedCapabilityException(); |
78 | |
} |
79 | |
|
80 | |
public void setMiddleName(String str) throws JAXRException |
81 | |
{ |
82 | 0 | throw new UnsupportedCapabilityException(); |
83 | |
} |
84 | |
} |