Package javax.xml.registry.infomodel
Interface EmailAddress
public interface EmailAddress
Represents an email address.
- Author:
- Farrukh S. Najmi
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionReturns the email address for this object.getType()Gets the type for this object.voidsetAddress(String address) Sets the email address for this object.voidSets the type for this object.
-
Method Details
-
getAddress
Returns the email address for this object. Default is a NULL String.- Capability Level: 0
- Returns:
- the actual email address (e.g. john.doe@acme.com)
- Throws:
JAXRException- If the Jakarta XML Registries provider encounters an internal error
-
setAddress
Sets the email address for this object.- Capability Level: 0
- Parameters:
address- the actual email address (e.g. john.doe@acme.com)- Throws:
JAXRException- If the Jakarta XML Registries provider encounters an internal error
-
getType
Gets the type for this object. Default is a NULL String.- Capability Level: 0
- Returns:
- the usage type for this object which is an arbitrary value (e.g. "Home" or "Office")
- Throws:
JAXRException- If the Jakarta XML Registries provider encounters an internal error
-
setType
Sets the type for this object.- Capability Level: 0
- Parameters:
type- the usage type for this object which is an arbitrary value (e.g. "Home" or "Office")- Throws:
JAXRException- If the Jakarta XML Registries provider encounters an internal error
-