June 2003
Intermediate to advanced
672 pages
23h 48m
English
User
public interface User extends RegistryObject {
// Property Accessor Methods (by property name)
public abstract Collection getEmailAddresses( )
throws javax.xml.registry.JAXRException; //L0
public abstract void setEmailAddresses(Collection emailAddresses)
throws javax.xml.registry.JAXRException; //L0
public abstract Organization getOrganization( )
throws javax.xml.registry.JAXRException; //L0
public abstract PersonName getPersonName( )
throws javax.xml.registry.JAXRException; //L0
public abstract void setPersonName(PersonName personName)
throws javax.xml.registry.JAXRException; //L0
public abstract Collection getPostalAddresses( )
throws javax.xml.registry.JAXRException; //L0
public abstract void setPostalAddresses(Collection addresses)
throws javax.xml.registry.JAXRException;
//L0
public abstract String getType( )
throws javax.xml.registry.JAXRException; //L0
public abstract void setType(String type)
throws javax.xml.registry.JAXRException;
//L0
public abstract java.net.URL getUrl( )
throws javax.xml.registry.JAXRException; //L1
public abstract void setUrl(java.net.URL url)
throws javax.xml.registry.JAXRException; //L1
// Public Instance Methods
public abstract Collection getTelephoneNumbers( String phoneType)
throws javax.xml.registry.JAXRException; //L0
public abstract void setTelephoneNumbers(Collection phoneNumbers)
throws javax.xml.registry.JAXRException; //L0
}The User interface represents a registry user. Every object in the registry is associated with the ...
Read now
Unlock full access