com.softwareag.centrasite.appl.framework.beans.standard
Interface TelephoneNumber

All Known Implementing Classes:
TelephoneNumberImpl

public interface TelephoneNumber


Method Summary
 java.lang.String getAreaCode()
          Gets the area code.
 java.lang.String getCountryCode()
          Gets the country code.
 java.lang.String getExtension()
          Gets the internal extension.
 java.lang.String getNumber()
          Gets the telephone number suffix, not including the country or area code.
 java.lang.String getType()
          Returns the type of telephone number (for example, "fax").
 java.lang.String getUrl()
          Gets the URL that can dial this number electronically.
 void setAreaCode(java.lang.String areaCode)
          Sets the area code.
 void setCountryCode(java.lang.String countryCode)
          Sets the country code.
 void setExtension(java.lang.String extension)
          sets the internal extension.
 void setNumber(java.lang.String number)
          Sets the telephone number suffix, not including the country or area code.
 void setType(java.lang.String type)
          Sets the type of telephone number (for example, "fax").
 void setUrl(java.lang.String url)
          Sets the URL that can dial this number electronically.
 

Method Detail

getAreaCode

java.lang.String getAreaCode()
                             throws CSAppFrameworkException
Gets the area code.

Returns:
String
Throws:
CSAppFrameworkException

setAreaCode

void setAreaCode(java.lang.String areaCode)
                 throws CSAppFrameworkException
Sets the area code.

Parameters:
areaCode -
Throws:
CSAppFrameworkException

getCountryCode

java.lang.String getCountryCode()
                                throws CSAppFrameworkException
Gets the country code.

Returns:
String
Throws:
CSAppFrameworkException

setCountryCode

void setCountryCode(java.lang.String countryCode)
                    throws CSAppFrameworkException
Sets the country code.

Parameters:
countryCode -
Throws:
CSAppFrameworkException

getExtension

java.lang.String getExtension()
                              throws CSAppFrameworkException
Gets the internal extension.

Returns:
String
Throws:
CSAppFrameworkException

setExtension

void setExtension(java.lang.String extension)
                  throws CSAppFrameworkException
sets the internal extension.

Parameters:
extension -
Throws:
CSAppFrameworkException

getNumber

java.lang.String getNumber()
                           throws CSAppFrameworkException
Gets the telephone number suffix, not including the country or area code.

Returns:
String
Throws:
CSAppFrameworkException

setNumber

void setNumber(java.lang.String number)
               throws CSAppFrameworkException
Sets the telephone number suffix, not including the country or area code.

Parameters:
number -
Throws:
CSAppFrameworkException

getType

java.lang.String getType()
                         throws CSAppFrameworkException
Returns the type of telephone number (for example, "fax").

Returns:
String
Throws:
CSAppFrameworkException

setType

void setType(java.lang.String type)
             throws CSAppFrameworkException
Sets the type of telephone number (for example, "fax").

Parameters:
type -
Throws:
CSAppFrameworkException

getUrl

java.lang.String getUrl()
                        throws CSAppFrameworkException
Gets the URL that can dial this number electronically.

Returns:
String
Throws:
CSAppFrameworkException

setUrl

void setUrl(java.lang.String url)
            throws CSAppFrameworkException
Sets the URL that can dial this number electronically.

Parameters:
url -
Throws:
CSAppFrameworkException