Name

User

Synopsis

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 ...

Get Java Web Services in a Nutshell now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.