June 2003
Intermediate to advanced
672 pages
23h 48m
English
TelephoneNumber
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 ...
Read now
Unlock full access