Package org.bonitasoft.engine.identity
Interface ContactData
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
ContactDataImpl
public interface ContactData extends Serializable
represents a user contact data- Since:
- 6.0.0
- Author:
- Matthieu Chaffotte
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetAddress()StringgetBuilding()StringgetCity()StringgetCountry()StringgetEmail()StringgetFaxNumber()StringgetMobileNumber()StringgetPhoneNumber()StringgetRoom()StringgetState()longgetUserId()StringgetWebsite()StringgetZipCode()booleanisPersonal()
-
-
-
Method Detail
-
getUserId
long getUserId()
- Returns:
- the user id of this contact data
-
isPersonal
boolean isPersonal()
- Returns:
- true if this contact data is some personal information
-
getEmail
String getEmail()
- Returns:
- the contact email
-
getPhoneNumber
String getPhoneNumber()
- Returns:
- the contact phone number
-
getMobileNumber
String getMobileNumber()
- Returns:
- the contact mobile phone number
-
getFaxNumber
String getFaxNumber()
- Returns:
- the contact fax number
-
getBuilding
String getBuilding()
- Returns:
- the contact building
-
getRoom
String getRoom()
- Returns:
- the contact room
-
getAddress
String getAddress()
- Returns:
- the contact address
-
getZipCode
String getZipCode()
- Returns:
- the contact ZIP code
-
getCity
String getCity()
- Returns:
- the contact city
-
getState
String getState()
- Returns:
- the contact state
-
getCountry
String getCountry()
- Returns:
- the contact country
-
getWebsite
String getWebsite()
- Returns:
- the contact web site address
-
-