站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > Java Platform, Enterprise Edition v1.4 API Specifications

EmailAddress (Java 2 Platform Ent. Ed. v1.4) - Java Platform, Enterprise Edition v1.4 API Specifications

JavaTM 2 Platform
Ent. Ed. v1.4

javax.xml.registry.infomodel
Interface EmailAddress


public interface EmailAddress

Represents an email address.

Author:
Farrukh S. Najmi
See Also:
User

Method Summary
 String getAddress()
          Returns the email address for this object.
 String getType()
          Gets the type for this object.
 void setAddress(String address)
          Sets the email address for this object.
 void setType(String type)
          Sets the type for this object.
 

Method Detail

getAddress

public String getAddress()
                  throws JAXRException
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 JAXR provider encounters an internal error

setAddress

public void setAddress(String address)
                throws JAXRException
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 JAXR provider encounters an internal error

getType

public String getType()
               throws JAXRException
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 JAXR provider encounters an internal error

setType

public void setType(String type)
             throws JAXRException
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 JAXR provider encounters an internal error

JavaTM 2 Platform
Ent. Ed. v1.4

Submit a bug or feature

Copyright 2003 Sun Microsystems, Inc. All rights reserved.