| 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 | 127 | private String fullname = ""; |
| 32 | |
|
| 33 | |
|
| 34 | |
|
| 35 | |
|
| 36 | |
public PersonNameImpl() |
| 37 | 36 | { |
| 38 | 36 | } |
| 39 | |
|
| 40 | |
public PersonNameImpl(String fullname) |
| 41 | 91 | { |
| 42 | 91 | this.fullname = fullname; |
| 43 | 91 | } |
| 44 | |
|
| 45 | |
public String getFullName() throws JAXRException |
| 46 | |
{ |
| 47 | 124 | return this.fullname; |
| 48 | |
} |
| 49 | |
|
| 50 | |
public void setFullName(String str) throws JAXRException |
| 51 | |
{ |
| 52 | 32 | this.fullname = str; |
| 53 | 32 | } |
| 54 | |
|
| 55 | |
public String getFirstName() throws JAXRException |
| 56 | |
{ |
| 57 | 2 | throw new UnsupportedCapabilityException(); |
| 58 | |
} |
| 59 | |
|
| 60 | |
public String getLastName() throws JAXRException |
| 61 | |
{ |
| 62 | 2 | throw new UnsupportedCapabilityException(); |
| 63 | |
} |
| 64 | |
|
| 65 | |
public String getMiddleName() throws JAXRException |
| 66 | |
{ |
| 67 | 2 | throw new UnsupportedCapabilityException(); |
| 68 | |
} |
| 69 | |
|
| 70 | |
public void setFirstName(String str) throws JAXRException |
| 71 | |
{ |
| 72 | 2 | throw new UnsupportedCapabilityException(); |
| 73 | |
} |
| 74 | |
|
| 75 | |
public void setLastName(String str) throws JAXRException |
| 76 | |
{ |
| 77 | 2 | throw new UnsupportedCapabilityException(); |
| 78 | |
} |
| 79 | |
|
| 80 | |
public void setMiddleName(String str) throws JAXRException |
| 81 | |
{ |
| 82 | 2 | throw new UnsupportedCapabilityException(); |
| 83 | |
} |
| 84 | |
} |