Package com.rometools.modules.base
Interface Person
-
- All Superinterfaces:
GlobalInterface,Serializable
- All Known Subinterfaces:
GoogleBase
- All Known Implementing Classes:
GoogleBaseImpl
public interface Person extends GlobalInterface
This is an interface for the GoogleBase plug in that exposes methods used for Person (personal ad, resume, profile) entry types.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IntegergetAge()Age of the individual.StringgetEducation()Education of the individual.StringgetEmployer()Individuals employer.String[]getEthnicities()Ethnicity of the individual in the People profiles bulk upload entry.GenderEnumerationgetGender()Gender of an individual in a People profiles bulk upload.String[]getInterestedIn()Interest of a person being profiled.StringgetLocation()Location of a person.StringgetMaritalStatus()Marital status of an individual.StringgetOccupation()Occupation of an individual.StringgetSexualOrientation()Individual's sexual orientation.voidsetAge(Integer age)Age of the individual.voidsetEducation(String education)Education of the individual.voidsetEmployer(String employer)Individuals employer.voidsetEthnicities(String[] ethnicities)Ethnicity of the individual in the People profiles bulk upload entry.voidsetGender(GenderEnumeration gender)Gender of an individual in a People profiles bulk upload.voidsetInterestedIn(String[] interestedIn)Interest of a person being profiled.voidsetLocation(String location)Location of a person.voidsetMaritalStatus(String maritalStatus)Marital status of an individual.voidsetOccupation(String occupation)Occupation of an individual.voidsetSexualOrientation(String sexualOrientation)Individual's sexual orientation.-
Methods inherited from interface com.rometools.modules.base.GlobalInterface
getExpirationDate, getExpirationDateTime, getId, getImageLinks, getLabels, setExpirationDate, setExpirationDateTime, setId, setImageLinks, setLabels
-
-
-
-
Method Detail
-
setAge
void setAge(Integer age)
Age of the individual.- Parameters:
age- Age of the individual.
-
getAge
Integer getAge()
Age of the individual.- Returns:
- Age of the individual.
-
setEducation
void setEducation(String education)
Education of the individual.education Details Level of education required for an employment position. Example <g:education>PhD</g:education> Attribute of Jobs Content type string - Parameters:
education- Education of the individual.
-
getEducation
String getEducation()
Education of the individual.education Details Level of education required for an employment position. Example <g:education>PhD</g:education> Attribute of Jobs Content type string - Returns:
- Education of the individual.
-
setEmployer
void setEmployer(String employer)
Individuals employer.employer Details Company providing employment. Example <g:employer>Google, Inc</g:employer> Attribute of Jobs Content type string - Parameters:
employer- Individuals employer.
-
getEmployer
String getEmployer()
Individuals employer.employer Details Company providing employment. Example <g:employer>Google, Inc</g:employer> Attribute of Jobs Content type string - Returns:
- Individuals employer.
-
setEthnicities
void setEthnicities(String[] ethnicities)
Ethnicity of the individual in the People profiles bulk upload entry.ethnicity Details Ethnicity of the individual in the People profiles bulk upload entry. Example <g:ethnicity>Latino</g:ethnicity> Attribute of People profiles Content type string - Parameters:
ethnicities- Ethnicity of the individual in the People profiles bulk upload entry.
-
getEthnicities
String[] getEthnicities()
Ethnicity of the individual in the People profiles bulk upload entry.ethnicity Details Ethnicity of the individual in the People profiles bulk upload entry. Example <g:ethnicity>Latino</g:ethnicity> Attribute of People profiles Content type string - Returns:
- Ethnicity of the individual in the People profiles bulk upload entry.
-
setGender
void setGender(GenderEnumeration gender)
Gender of an individual in a People profiles bulk upload.- Parameters:
gender- Gender of an individual in a People profiles bulk upload.
-
getGender
GenderEnumeration getGender()
Gender of an individual in a People profiles bulk upload.- Returns:
- Gender of an individual in a People profiles bulk upload.
-
setInterestedIn
void setInterestedIn(String[] interestedIn)
Interest of a person being profiled.interested_in Details Interest of a person being profiled. Example <g:interested_in>Long walks on the beach.</g:interested_in> Attribute of People profiles Content type string - Parameters:
interestedIn- Interest of a person being profiled.
-
getInterestedIn
String[] getInterestedIn()
Interest of a person being profiled.interested_in Details Interest of a person being profiled. Example <g:interested_in>Long walks on the beach.</g:interested_in> Attribute of People profiles Content type string - Returns:
- Interest of a person being profiled.
-
setLocation
void setLocation(String location)
Location of a person.- Parameters:
location- Location of a person.
-
getLocation
String getLocation()
Location of a person.- Returns:
- Location of a person.
-
setMaritalStatus
void setMaritalStatus(String maritalStatus)
Marital status of an individual.- Parameters:
maritalStatus- Marital status of an individual.
-
getMaritalStatus
String getMaritalStatus()
Marital status of an individual.- Returns:
- Marital status of an individual.
-
setOccupation
void setOccupation(String occupation)
Occupation of an individual.occupation Details Industry the individual in a People profiles bulk upload is employed in. Example <g:occupation>Sales</g:occupation> Attribute of People profiles Content type string - Parameters:
occupation- Occupation of an individual.
-
getOccupation
String getOccupation()
Occupation of an individual.occupation Details Industry the individual in a People profiles bulk upload is employed in. Example <g:occupation>Sales</g:occupation> Attribute of People profiles Content type string - Returns:
- Occupation of an individual.
-
setSexualOrientation
void setSexualOrientation(String sexualOrientation)
Individual's sexual orientation.- Parameters:
sexualOrientation- Individual's sexual orientation.
-
getSexualOrientation
String getSexualOrientation()
Individual's sexual orientation.- Returns:
- Individual's sexual orientation.
-
-