Interface IContactInfo
-
- All Superinterfaces:
IEntity
- All Known Subinterfaces:
IRegularContactInfo
- All Known Implementing Classes:
AddressContactInfo,AddressContactInfoDTO,AddressContactInfoVO,BaseContactInfo,BaseContactInfoDTO,BaseContactInfoVO,ContactInfo,ContactInfoDetailedVO,ContactInfoDTO,ContactInfoVO
public interface IContactInfo extends IEntity
Common interface for base contact information implementations
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetEmail()StringgetLandLineExtension()StringgetLandLinePhone()StringgetMobilePhone()voidsetEmail(String email)voidsetLandLineExtension(String landLineExtension)voidsetLandLinePhone(String landLinePhone)voidsetMobilePhone(String mobilePhone)
-
-
-
Method Detail
-
getEmail
String getEmail()
-
getLandLineExtension
String getLandLineExtension()
-
getLandLinePhone
String getLandLinePhone()
-
getMobilePhone
String getMobilePhone()
-
setEmail
void setEmail(String email)
-
setLandLineExtension
void setLandLineExtension(String landLineExtension)
-
setLandLinePhone
void setLandLinePhone(String landLinePhone)
-
setMobilePhone
void setMobilePhone(String mobilePhone)
-
-