Name

TelephoneNumber

Synopsis

public interface TelephoneNumber {
// Property Accessor Methods (by property name)
    public abstract String getAreaCode(  )
       throws javax.xml.registry.JAXRException;             //L1
    public abstract void setAreaCode(String areaCode)
       throws javax.xml.registry.JAXRException;             //L1
    public abstract String getCountryCode(  )
       throws javax.xml.registry.JAXRException;             //L1
    public abstract void setCountryCode(String countryCode)
       throws javax.xml.registry.JAXRException;             //L1
    public abstract String getExtension(  )
       throws javax.xml.registry.JAXRException;             //L1
    public abstract void setExtension(String extension)
       throws javax.xml.registry.JAXRException;             //L1
    public abstract String getNumber(  )
       throws javax.xml.registry.JAXRException;             //L0
    public abstract void setNumber(String number)
       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 String getUrl(  )
       throws javax.xml.registry.JAXRException;             //L1
    public abstract void setUrl(String url)
       throws javax.xml.registry.JAXRException;             //L1
}

The TelephoneNumber interface represents the telephone number of a user or an organization. Create one or more TelephoneNumbers using the LifeCycleManager createTelephoneNumber method and then add them, as a group, to either a User or an Organization object by calling their setTelephoneNumbers( ) method.

The functionality provided ...

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.