/**
* Copyright (c) 2000-present Liferay, Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 2.1 of the License, or (at your option)
* any later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*/
package org.oep.usermgt.model;
import com.liferay.portal.kernel.bean.AutoEscape;
import com.liferay.portal.kernel.exception.SystemException;
import com.liferay.portal.model.BaseModel;
import com.liferay.portal.model.CacheModel;
import com.liferay.portal.service.ServiceContext;
import com.liferay.portlet.expando.model.ExpandoBridge;
import java.io.Serializable;
import java.util.Date;
/**
* The base model interface for the Citizen service. Represents a row in the "oep_usermgt_citizen" database table, with each column mapped to a property of this class.
*
* <p>
* This interface and its corresponding implementation {@link org.oep.usermgt.model.impl.CitizenModelImpl} exist only as a container for the default property accessors generated by ServiceBuilder. Helper methods and all application logic should be put in {@link org.oep.usermgt.model.impl.CitizenImpl}.
* </p>
*
* @author NQMINH
* @see Citizen
* @see org.oep.usermgt.model.impl.CitizenImpl
* @see org.oep.usermgt.model.impl.CitizenModelImpl
* @generated
*/
public interface CitizenModel extends BaseModel<Citizen> {
/*
* NOTE FOR DEVELOPERS:
*
* Never modify or reference this interface directly. All methods that expect a citizen model instance should use the {@link Citizen} interface instead.
*/
/**
* Returns the primary key of this citizen.
*
* @return the primary key of this citizen
*/
public long getPrimaryKey();
/**
* Sets the primary key of this citizen.
*
* @param primaryKey the primary key of this citizen
*/
public void setPrimaryKey(long primaryKey);
/**
* Returns the citizen ID of this citizen.
*
* @return the citizen ID of this citizen
*/
public long getCitizenId();
/**
* Sets the citizen ID of this citizen.
*
* @param citizenId the citizen ID of this citizen
*/
public void setCitizenId(long citizenId);
/**
* Returns the company ID of this citizen.
*
* @return the company ID of this citizen
*/
public long getCompanyId();
/**
* Sets the company ID of this citizen.
*
* @param companyId the company ID of this citizen
*/
public void setCompanyId(long companyId);
/**
* Returns the user ID of this citizen.
*
* @return the user ID of this citizen
*/
public long getUserId();
/**
* Sets the user ID of this citizen.
*
* @param userId the user ID of this citizen
*/
public void setUserId(long userId);
/**
* Returns the user uuid of this citizen.
*
* @return the user uuid of this citizen
* @throws SystemException if a system exception occurred
*/
public String getUserUuid() throws SystemException;
/**
* Sets the user uuid of this citizen.
*
* @param userUuid the user uuid of this citizen
*/
public void setUserUuid(String userUuid);
/**
* Returns the group ID of this citizen.
*
* @return the group ID of this citizen
*/
public long getGroupId();
/**
* Sets the group ID of this citizen.
*
* @param groupId the group ID of this citizen
*/
public void setGroupId(long groupId);
/**
* Returns the create date of this citizen.
*
* @return the create date of this citizen
*/
public Date getCreateDate();
/**
* Sets the create date of this citizen.
*
* @param createDate the create date of this citizen
*/
public void setCreateDate(Date createDate);
/**
* Returns the modified date of this citizen.
*
* @return the modified date of this citizen
*/
public Date getModifiedDate();
/**
* Sets the modified date of this citizen.
*
* @param modifiedDate the modified date of this citizen
*/
public void setModifiedDate(Date modifiedDate);
/**
* Returns the mapping user ID of this citizen.
*
* @return the mapping user ID of this citizen
*/
public long getMappingUserId();
/**
* Sets the mapping user ID of this citizen.
*
* @param mappingUserId the mapping user ID of this citizen
*/
public void setMappingUserId(long mappingUserId);
/**
* Returns the mapping user uuid of this citizen.
*
* @return the mapping user uuid of this citizen
* @throws SystemException if a system exception occurred
*/
public String getMappingUserUuid() throws SystemException;
/**
* Sets the mapping user uuid of this citizen.
*
* @param mappingUserUuid the mapping user uuid of this citizen
*/
public void setMappingUserUuid(String mappingUserUuid);
/**
* Returns the citizen no of this citizen.
*
* @return the citizen no of this citizen
*/
@AutoEscape
public String getCitizenNo();
/**
* Sets the citizen no of this citizen.
*
* @param citizenNo the citizen no of this citizen
*/
public void setCitizenNo(String citizenNo);
/**
* Returns the full name of this citizen.
*
* @return the full name of this citizen
*/
@AutoEscape
public String getFullName();
/**
* Sets the full name of this citizen.
*
* @param fullName the full name of this citizen
*/
public void setFullName(String fullName);
/**
* Returns the gender of this citizen.
*
* @return the gender of this citizen
*/
public int getGender();
/**
* Sets the gender of this citizen.
*
* @param gender the gender of this citizen
*/
public void setGender(int gender);
/**
* Returns the identification no of this citizen.
*
* @return the identification no of this citizen
*/
@AutoEscape
public String getIdentificationNo();
/**
* Sets the identification no of this citizen.
*
* @param identificationNo the identification no of this citizen
*/
public void setIdentificationNo(String identificationNo);
/**
* Returns the address of this citizen.
*
* @return the address of this citizen
*/
@AutoEscape
public String getAddress();
/**
* Sets the address of this citizen.
*
* @param address the address of this citizen
*/
public void setAddress(String address);
/**
* Returns the city no of this citizen.
*
* @return the city no of this citizen
*/
@AutoEscape
public String getCityNo();
/**
* Sets the city no of this citizen.
*
* @param cityNo the city no of this citizen
*/
public void setCityNo(String cityNo);
/**
* Returns the city name of this citizen.
*
* @return the city name of this citizen
*/
@AutoEscape
public String getCityName();
/**
* Sets the city name of this citizen.
*
* @param cityName the city name of this citizen
*/
public void setCityName(String cityName);
/**
* Returns the district no of this citizen.
*
* @return the district no of this citizen
*/
@AutoEscape
public String getDistrictNo();
/**
* Sets the district no of this citizen.
*
* @param districtNo the district no of this citizen
*/
public void setDistrictNo(String districtNo);
/**
* Returns the district name of this citizen.
*
* @return the district name of this citizen
*/
@AutoEscape
public String getDistrictName();
/**
* Sets the district name of this citizen.
*
* @param districtName the district name of this citizen
*/
public void setDistrictName(String districtName);
/**
* Returns the ward no of this citizen.
*
* @return the ward no of this citizen
*/
@AutoEscape
public String getWardNo();
/**
* Sets the ward no of this citizen.
*
* @param wardNo the ward no of this citizen
*/
public void setWardNo(String wardNo);
/**
* Returns the ward name of this citizen.
*
* @return the ward name of this citizen
*/
@AutoEscape
public String getWardName();
/**
* Sets the ward name of this citizen.
*
* @param wardName the ward name of this citizen
*/
public void setWardName(String wardName);
/**
* Returns the home address of this citizen.
*
* @return the home address of this citizen
*/
@AutoEscape
public String getHomeAddress();
/**
* Sets the home address of this citizen.
*
* @param homeAddress the home address of this citizen
*/
public void setHomeAddress(String homeAddress);
/**
* Returns the home tel of this citizen.
*
* @return the home tel of this citizen
*/
@AutoEscape
public String getHomeTel();
/**
* Sets the home tel of this citizen.
*
* @param homeTel the home tel of this citizen
*/
public void setHomeTel(String homeTel);
/**
* Returns the mobile of this citizen.
*
* @return the mobile of this citizen
*/
@AutoEscape
public String getMobile();
/**
* Sets the mobile of this citizen.
*
* @param mobile the mobile of this citizen
*/
public void setMobile(String mobile);
/**
* Returns the email of this citizen.
*
* @return the email of this citizen
*/
@AutoEscape
public String getEmail();
/**
* Sets the email of this citizen.
*
* @param email the email of this citizen
*/
public void setEmail(String email);
/**
* Returns the short name of this citizen.
*
* @return the short name of this citizen
*/
@AutoEscape
public String getShortName();
/**
* Sets the short name of this citizen.
*
* @param shortName the short name of this citizen
*/
public void setShortName(String shortName);
@Override
public boolean isNew();
@Override
public void setNew(boolean n);
@Override
public boolean isCachedModel();
@Override
public void setCachedModel(boolean cachedModel);
@Override
public boolean isEscapedModel();
@Override
public Serializable getPrimaryKeyObj();
@Override
public void setPrimaryKeyObj(Serializable primaryKeyObj);
@Override
public ExpandoBridge getExpandoBridge();
@Override
public void setExpandoBridgeAttributes(BaseModel<?> baseModel);
@Override
public void setExpandoBridgeAttributes(ExpandoBridge expandoBridge);
@Override
public void setExpandoBridgeAttributes(ServiceContext serviceContext);
@Override
public Object clone();
@Override
public int compareTo(Citizen citizen);
@Override
public int hashCode();
@Override
public CacheModel<Citizen> toCacheModel();
@Override
public Citizen toEscapedModel();
@Override
public Citizen toUnescapedModel();
@Override
public String toString();
@Override
public String toXmlString();
}