/**
* 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.dossiermgt.model;
import com.liferay.portal.kernel.lar.StagedModelType;
import com.liferay.portal.kernel.util.Validator;
import com.liferay.portal.model.ModelWrapper;
import java.util.Date;
import java.util.HashMap;
import java.util.Map;
/**
* <p>
* This class is a wrapper for {@link Dossier}.
* </p>
*
* @author trungdk
* @see Dossier
* @generated
*/
public class DossierWrapper implements Dossier, ModelWrapper<Dossier> {
public DossierWrapper(Dossier dossier) {
_dossier = dossier;
}
@Override
public Class<?> getModelClass() {
return Dossier.class;
}
@Override
public String getModelClassName() {
return Dossier.class.getName();
}
@Override
public Map<String, Object> getModelAttributes() {
Map<String, Object> attributes = new HashMap<String, Object>();
attributes.put("uuid", getUuid());
attributes.put("dossierId", getDossierId());
attributes.put("userId", getUserId());
attributes.put("groupId", getGroupId());
attributes.put("companyId", getCompanyId());
attributes.put("createDate", getCreateDate());
attributes.put("modifiedDate", getModifiedDate());
attributes.put("organizationId", getOrganizationId());
attributes.put("dossierProcId", getDossierProcId());
attributes.put("govAgencyId", getGovAgencyId());
attributes.put("govAgencyName", getGovAgencyName());
attributes.put("subjectId", getSubjectId());
attributes.put("subjectType", getSubjectType());
attributes.put("subjectName", getSubjectName());
attributes.put("address", getAddress());
attributes.put("cityNo", getCityNo());
attributes.put("cityName", getCityName());
attributes.put("districtNo", getDistrictNo());
attributes.put("districtName", getDistrictName());
attributes.put("wardNo", getWardNo());
attributes.put("wardName", getWardName());
attributes.put("telNo", getTelNo());
attributes.put("email", getEmail());
attributes.put("subjectAsContactPerson", getSubjectAsContactPerson());
attributes.put("contactPersonName", getContactPersonName());
attributes.put("contactPersonId", getContactPersonId());
attributes.put("contactPersonSex", getContactPersonSex());
attributes.put("contactPersonTel", getContactPersonTel());
attributes.put("note", getNote());
attributes.put("resumeDescription", getResumeDescription());
attributes.put("receptionNo", getReceptionNo());
attributes.put("onegate", getOnegate());
attributes.put("submitDate", getSubmitDate());
attributes.put("receiveDate", getReceiveDate());
attributes.put("processDate", getProcessDate());
attributes.put("renewDate", getRenewDate());
attributes.put("estimateDate", getEstimateDate());
attributes.put("finishDate", getFinishDate());
attributes.put("handoverDate", getHandoverDate());
attributes.put("returnDate", getReturnDate());
attributes.put("archiveDate", getArchiveDate());
attributes.put("mainStatus", getMainStatus());
attributes.put("subStatus", getSubStatus());
attributes.put("statusDate", getStatusDate());
attributes.put("statusDescription", getStatusDescription());
attributes.put("feedbackNote", getFeedbackNote());
attributes.put("daysDelay", getDaysDelay());
attributes.put("errorStatus", getErrorStatus());
attributes.put("errorCode", getErrorCode());
attributes.put("pendingStatus", getPendingStatus());
attributes.put("dirty", getDirty());
return attributes;
}
@Override
public void setModelAttributes(Map<String, Object> attributes) {
String uuid = (String)attributes.get("uuid");
if (uuid != null) {
setUuid(uuid);
}
Long dossierId = (Long)attributes.get("dossierId");
if (dossierId != null) {
setDossierId(dossierId);
}
Long userId = (Long)attributes.get("userId");
if (userId != null) {
setUserId(userId);
}
Long groupId = (Long)attributes.get("groupId");
if (groupId != null) {
setGroupId(groupId);
}
Long companyId = (Long)attributes.get("companyId");
if (companyId != null) {
setCompanyId(companyId);
}
Date createDate = (Date)attributes.get("createDate");
if (createDate != null) {
setCreateDate(createDate);
}
Date modifiedDate = (Date)attributes.get("modifiedDate");
if (modifiedDate != null) {
setModifiedDate(modifiedDate);
}
Long organizationId = (Long)attributes.get("organizationId");
if (organizationId != null) {
setOrganizationId(organizationId);
}
Long dossierProcId = (Long)attributes.get("dossierProcId");
if (dossierProcId != null) {
setDossierProcId(dossierProcId);
}
String govAgencyId = (String)attributes.get("govAgencyId");
if (govAgencyId != null) {
setGovAgencyId(govAgencyId);
}
String govAgencyName = (String)attributes.get("govAgencyName");
if (govAgencyName != null) {
setGovAgencyName(govAgencyName);
}
String subjectId = (String)attributes.get("subjectId");
if (subjectId != null) {
setSubjectId(subjectId);
}
String subjectType = (String)attributes.get("subjectType");
if (subjectType != null) {
setSubjectType(subjectType);
}
String subjectName = (String)attributes.get("subjectName");
if (subjectName != null) {
setSubjectName(subjectName);
}
String address = (String)attributes.get("address");
if (address != null) {
setAddress(address);
}
String cityNo = (String)attributes.get("cityNo");
if (cityNo != null) {
setCityNo(cityNo);
}
String cityName = (String)attributes.get("cityName");
if (cityName != null) {
setCityName(cityName);
}
String districtNo = (String)attributes.get("districtNo");
if (districtNo != null) {
setDistrictNo(districtNo);
}
String districtName = (String)attributes.get("districtName");
if (districtName != null) {
setDistrictName(districtName);
}
String wardNo = (String)attributes.get("wardNo");
if (wardNo != null) {
setWardNo(wardNo);
}
String wardName = (String)attributes.get("wardName");
if (wardName != null) {
setWardName(wardName);
}
String telNo = (String)attributes.get("telNo");
if (telNo != null) {
setTelNo(telNo);
}
String email = (String)attributes.get("email");
if (email != null) {
setEmail(email);
}
Integer subjectAsContactPerson = (Integer)attributes.get(
"subjectAsContactPerson");
if (subjectAsContactPerson != null) {
setSubjectAsContactPerson(subjectAsContactPerson);
}
String contactPersonName = (String)attributes.get("contactPersonName");
if (contactPersonName != null) {
setContactPersonName(contactPersonName);
}
String contactPersonId = (String)attributes.get("contactPersonId");
if (contactPersonId != null) {
setContactPersonId(contactPersonId);
}
Integer contactPersonSex = (Integer)attributes.get("contactPersonSex");
if (contactPersonSex != null) {
setContactPersonSex(contactPersonSex);
}
String contactPersonTel = (String)attributes.get("contactPersonTel");
if (contactPersonTel != null) {
setContactPersonTel(contactPersonTel);
}
String note = (String)attributes.get("note");
if (note != null) {
setNote(note);
}
String resumeDescription = (String)attributes.get("resumeDescription");
if (resumeDescription != null) {
setResumeDescription(resumeDescription);
}
String receptionNo = (String)attributes.get("receptionNo");
if (receptionNo != null) {
setReceptionNo(receptionNo);
}
Integer onegate = (Integer)attributes.get("onegate");
if (onegate != null) {
setOnegate(onegate);
}
Date submitDate = (Date)attributes.get("submitDate");
if (submitDate != null) {
setSubmitDate(submitDate);
}
Date receiveDate = (Date)attributes.get("receiveDate");
if (receiveDate != null) {
setReceiveDate(receiveDate);
}
Date processDate = (Date)attributes.get("processDate");
if (processDate != null) {
setProcessDate(processDate);
}
Date renewDate = (Date)attributes.get("renewDate");
if (renewDate != null) {
setRenewDate(renewDate);
}
Date estimateDate = (Date)attributes.get("estimateDate");
if (estimateDate != null) {
setEstimateDate(estimateDate);
}
Date finishDate = (Date)attributes.get("finishDate");
if (finishDate != null) {
setFinishDate(finishDate);
}
Date handoverDate = (Date)attributes.get("handoverDate");
if (handoverDate != null) {
setHandoverDate(handoverDate);
}
Date returnDate = (Date)attributes.get("returnDate");
if (returnDate != null) {
setReturnDate(returnDate);
}
Date archiveDate = (Date)attributes.get("archiveDate");
if (archiveDate != null) {
setArchiveDate(archiveDate);
}
String mainStatus = (String)attributes.get("mainStatus");
if (mainStatus != null) {
setMainStatus(mainStatus);
}
String subStatus = (String)attributes.get("subStatus");
if (subStatus != null) {
setSubStatus(subStatus);
}
Date statusDate = (Date)attributes.get("statusDate");
if (statusDate != null) {
setStatusDate(statusDate);
}
String statusDescription = (String)attributes.get("statusDescription");
if (statusDescription != null) {
setStatusDescription(statusDescription);
}
String feedbackNote = (String)attributes.get("feedbackNote");
if (feedbackNote != null) {
setFeedbackNote(feedbackNote);
}
Integer daysDelay = (Integer)attributes.get("daysDelay");
if (daysDelay != null) {
setDaysDelay(daysDelay);
}
String errorStatus = (String)attributes.get("errorStatus");
if (errorStatus != null) {
setErrorStatus(errorStatus);
}
String errorCode = (String)attributes.get("errorCode");
if (errorCode != null) {
setErrorCode(errorCode);
}
Integer pendingStatus = (Integer)attributes.get("pendingStatus");
if (pendingStatus != null) {
setPendingStatus(pendingStatus);
}
Integer dirty = (Integer)attributes.get("dirty");
if (dirty != null) {
setDirty(dirty);
}
}
/**
* Returns the primary key of this dossier.
*
* @return the primary key of this dossier
*/
@Override
public long getPrimaryKey() {
return _dossier.getPrimaryKey();
}
/**
* Sets the primary key of this dossier.
*
* @param primaryKey the primary key of this dossier
*/
@Override
public void setPrimaryKey(long primaryKey) {
_dossier.setPrimaryKey(primaryKey);
}
/**
* Returns the uuid of this dossier.
*
* @return the uuid of this dossier
*/
@Override
public java.lang.String getUuid() {
return _dossier.getUuid();
}
/**
* Sets the uuid of this dossier.
*
* @param uuid the uuid of this dossier
*/
@Override
public void setUuid(java.lang.String uuid) {
_dossier.setUuid(uuid);
}
/**
* Returns the dossier ID of this dossier.
*
* @return the dossier ID of this dossier
*/
@Override
public long getDossierId() {
return _dossier.getDossierId();
}
/**
* Sets the dossier ID of this dossier.
*
* @param dossierId the dossier ID of this dossier
*/
@Override
public void setDossierId(long dossierId) {
_dossier.setDossierId(dossierId);
}
/**
* Returns the user ID of this dossier.
*
* @return the user ID of this dossier
*/
@Override
public long getUserId() {
return _dossier.getUserId();
}
/**
* Sets the user ID of this dossier.
*
* @param userId the user ID of this dossier
*/
@Override
public void setUserId(long userId) {
_dossier.setUserId(userId);
}
/**
* Returns the user uuid of this dossier.
*
* @return the user uuid of this dossier
* @throws SystemException if a system exception occurred
*/
@Override
public java.lang.String getUserUuid()
throws com.liferay.portal.kernel.exception.SystemException {
return _dossier.getUserUuid();
}
/**
* Sets the user uuid of this dossier.
*
* @param userUuid the user uuid of this dossier
*/
@Override
public void setUserUuid(java.lang.String userUuid) {
_dossier.setUserUuid(userUuid);
}
/**
* Returns the group ID of this dossier.
*
* @return the group ID of this dossier
*/
@Override
public long getGroupId() {
return _dossier.getGroupId();
}
/**
* Sets the group ID of this dossier.
*
* @param groupId the group ID of this dossier
*/
@Override
public void setGroupId(long groupId) {
_dossier.setGroupId(groupId);
}
/**
* Returns the company ID of this dossier.
*
* @return the company ID of this dossier
*/
@Override
public long getCompanyId() {
return _dossier.getCompanyId();
}
/**
* Sets the company ID of this dossier.
*
* @param companyId the company ID of this dossier
*/
@Override
public void setCompanyId(long companyId) {
_dossier.setCompanyId(companyId);
}
/**
* Returns the create date of this dossier.
*
* @return the create date of this dossier
*/
@Override
public java.util.Date getCreateDate() {
return _dossier.getCreateDate();
}
/**
* Sets the create date of this dossier.
*
* @param createDate the create date of this dossier
*/
@Override
public void setCreateDate(java.util.Date createDate) {
_dossier.setCreateDate(createDate);
}
/**
* Returns the modified date of this dossier.
*
* @return the modified date of this dossier
*/
@Override
public java.util.Date getModifiedDate() {
return _dossier.getModifiedDate();
}
/**
* Sets the modified date of this dossier.
*
* @param modifiedDate the modified date of this dossier
*/
@Override
public void setModifiedDate(java.util.Date modifiedDate) {
_dossier.setModifiedDate(modifiedDate);
}
/**
* Returns the organization ID of this dossier.
*
* @return the organization ID of this dossier
*/
@Override
public long getOrganizationId() {
return _dossier.getOrganizationId();
}
/**
* Sets the organization ID of this dossier.
*
* @param organizationId the organization ID of this dossier
*/
@Override
public void setOrganizationId(long organizationId) {
_dossier.setOrganizationId(organizationId);
}
/**
* Returns the dossier proc ID of this dossier.
*
* @return the dossier proc ID of this dossier
*/
@Override
public long getDossierProcId() {
return _dossier.getDossierProcId();
}
/**
* Sets the dossier proc ID of this dossier.
*
* @param dossierProcId the dossier proc ID of this dossier
*/
@Override
public void setDossierProcId(long dossierProcId) {
_dossier.setDossierProcId(dossierProcId);
}
/**
* Returns the gov agency ID of this dossier.
*
* @return the gov agency ID of this dossier
*/
@Override
public java.lang.String getGovAgencyId() {
return _dossier.getGovAgencyId();
}
/**
* Sets the gov agency ID of this dossier.
*
* @param govAgencyId the gov agency ID of this dossier
*/
@Override
public void setGovAgencyId(java.lang.String govAgencyId) {
_dossier.setGovAgencyId(govAgencyId);
}
/**
* Returns the gov agency name of this dossier.
*
* @return the gov agency name of this dossier
*/
@Override
public java.lang.String getGovAgencyName() {
return _dossier.getGovAgencyName();
}
/**
* Sets the gov agency name of this dossier.
*
* @param govAgencyName the gov agency name of this dossier
*/
@Override
public void setGovAgencyName(java.lang.String govAgencyName) {
_dossier.setGovAgencyName(govAgencyName);
}
/**
* Returns the subject ID of this dossier.
*
* @return the subject ID of this dossier
*/
@Override
public java.lang.String getSubjectId() {
return _dossier.getSubjectId();
}
/**
* Sets the subject ID of this dossier.
*
* @param subjectId the subject ID of this dossier
*/
@Override
public void setSubjectId(java.lang.String subjectId) {
_dossier.setSubjectId(subjectId);
}
/**
* Returns the subject type of this dossier.
*
* @return the subject type of this dossier
*/
@Override
public java.lang.String getSubjectType() {
return _dossier.getSubjectType();
}
/**
* Sets the subject type of this dossier.
*
* @param subjectType the subject type of this dossier
*/
@Override
public void setSubjectType(java.lang.String subjectType) {
_dossier.setSubjectType(subjectType);
}
/**
* Returns the subject name of this dossier.
*
* @return the subject name of this dossier
*/
@Override
public java.lang.String getSubjectName() {
return _dossier.getSubjectName();
}
/**
* Sets the subject name of this dossier.
*
* @param subjectName the subject name of this dossier
*/
@Override
public void setSubjectName(java.lang.String subjectName) {
_dossier.setSubjectName(subjectName);
}
/**
* Returns the address of this dossier.
*
* @return the address of this dossier
*/
@Override
public java.lang.String getAddress() {
return _dossier.getAddress();
}
/**
* Sets the address of this dossier.
*
* @param address the address of this dossier
*/
@Override
public void setAddress(java.lang.String address) {
_dossier.setAddress(address);
}
/**
* Returns the city no of this dossier.
*
* @return the city no of this dossier
*/
@Override
public java.lang.String getCityNo() {
return _dossier.getCityNo();
}
/**
* Sets the city no of this dossier.
*
* @param cityNo the city no of this dossier
*/
@Override
public void setCityNo(java.lang.String cityNo) {
_dossier.setCityNo(cityNo);
}
/**
* Returns the city name of this dossier.
*
* @return the city name of this dossier
*/
@Override
public java.lang.String getCityName() {
return _dossier.getCityName();
}
/**
* Sets the city name of this dossier.
*
* @param cityName the city name of this dossier
*/
@Override
public void setCityName(java.lang.String cityName) {
_dossier.setCityName(cityName);
}
/**
* Returns the district no of this dossier.
*
* @return the district no of this dossier
*/
@Override
public java.lang.String getDistrictNo() {
return _dossier.getDistrictNo();
}
/**
* Sets the district no of this dossier.
*
* @param districtNo the district no of this dossier
*/
@Override
public void setDistrictNo(java.lang.String districtNo) {
_dossier.setDistrictNo(districtNo);
}
/**
* Returns the district name of this dossier.
*
* @return the district name of this dossier
*/
@Override
public java.lang.String getDistrictName() {
return _dossier.getDistrictName();
}
/**
* Sets the district name of this dossier.
*
* @param districtName the district name of this dossier
*/
@Override
public void setDistrictName(java.lang.String districtName) {
_dossier.setDistrictName(districtName);
}
/**
* Returns the ward no of this dossier.
*
* @return the ward no of this dossier
*/
@Override
public java.lang.String getWardNo() {
return _dossier.getWardNo();
}
/**
* Sets the ward no of this dossier.
*
* @param wardNo the ward no of this dossier
*/
@Override
public void setWardNo(java.lang.String wardNo) {
_dossier.setWardNo(wardNo);
}
/**
* Returns the ward name of this dossier.
*
* @return the ward name of this dossier
*/
@Override
public java.lang.String getWardName() {
return _dossier.getWardName();
}
/**
* Sets the ward name of this dossier.
*
* @param wardName the ward name of this dossier
*/
@Override
public void setWardName(java.lang.String wardName) {
_dossier.setWardName(wardName);
}
/**
* Returns the tel no of this dossier.
*
* @return the tel no of this dossier
*/
@Override
public java.lang.String getTelNo() {
return _dossier.getTelNo();
}
/**
* Sets the tel no of this dossier.
*
* @param telNo the tel no of this dossier
*/
@Override
public void setTelNo(java.lang.String telNo) {
_dossier.setTelNo(telNo);
}
/**
* Returns the email of this dossier.
*
* @return the email of this dossier
*/
@Override
public java.lang.String getEmail() {
return _dossier.getEmail();
}
/**
* Sets the email of this dossier.
*
* @param email the email of this dossier
*/
@Override
public void setEmail(java.lang.String email) {
_dossier.setEmail(email);
}
/**
* Returns the subject as contact person of this dossier.
*
* @return the subject as contact person of this dossier
*/
@Override
public int getSubjectAsContactPerson() {
return _dossier.getSubjectAsContactPerson();
}
/**
* Sets the subject as contact person of this dossier.
*
* @param subjectAsContactPerson the subject as contact person of this dossier
*/
@Override
public void setSubjectAsContactPerson(int subjectAsContactPerson) {
_dossier.setSubjectAsContactPerson(subjectAsContactPerson);
}
/**
* Returns the contact person name of this dossier.
*
* @return the contact person name of this dossier
*/
@Override
public java.lang.String getContactPersonName() {
return _dossier.getContactPersonName();
}
/**
* Sets the contact person name of this dossier.
*
* @param contactPersonName the contact person name of this dossier
*/
@Override
public void setContactPersonName(java.lang.String contactPersonName) {
_dossier.setContactPersonName(contactPersonName);
}
/**
* Returns the contact person ID of this dossier.
*
* @return the contact person ID of this dossier
*/
@Override
public java.lang.String getContactPersonId() {
return _dossier.getContactPersonId();
}
/**
* Sets the contact person ID of this dossier.
*
* @param contactPersonId the contact person ID of this dossier
*/
@Override
public void setContactPersonId(java.lang.String contactPersonId) {
_dossier.setContactPersonId(contactPersonId);
}
/**
* Returns the contact person sex of this dossier.
*
* @return the contact person sex of this dossier
*/
@Override
public int getContactPersonSex() {
return _dossier.getContactPersonSex();
}
/**
* Sets the contact person sex of this dossier.
*
* @param contactPersonSex the contact person sex of this dossier
*/
@Override
public void setContactPersonSex(int contactPersonSex) {
_dossier.setContactPersonSex(contactPersonSex);
}
/**
* Returns the contact person tel of this dossier.
*
* @return the contact person tel of this dossier
*/
@Override
public java.lang.String getContactPersonTel() {
return _dossier.getContactPersonTel();
}
/**
* Sets the contact person tel of this dossier.
*
* @param contactPersonTel the contact person tel of this dossier
*/
@Override
public void setContactPersonTel(java.lang.String contactPersonTel) {
_dossier.setContactPersonTel(contactPersonTel);
}
/**
* Returns the note of this dossier.
*
* @return the note of this dossier
*/
@Override
public java.lang.String getNote() {
return _dossier.getNote();
}
/**
* Sets the note of this dossier.
*
* @param note the note of this dossier
*/
@Override
public void setNote(java.lang.String note) {
_dossier.setNote(note);
}
/**
* Returns the resume description of this dossier.
*
* @return the resume description of this dossier
*/
@Override
public java.lang.String getResumeDescription() {
return _dossier.getResumeDescription();
}
/**
* Sets the resume description of this dossier.
*
* @param resumeDescription the resume description of this dossier
*/
@Override
public void setResumeDescription(java.lang.String resumeDescription) {
_dossier.setResumeDescription(resumeDescription);
}
/**
* Returns the reception no of this dossier.
*
* @return the reception no of this dossier
*/
@Override
public java.lang.String getReceptionNo() {
return _dossier.getReceptionNo();
}
/**
* Sets the reception no of this dossier.
*
* @param receptionNo the reception no of this dossier
*/
@Override
public void setReceptionNo(java.lang.String receptionNo) {
_dossier.setReceptionNo(receptionNo);
}
/**
* Returns the onegate of this dossier.
*
* @return the onegate of this dossier
*/
@Override
public int getOnegate() {
return _dossier.getOnegate();
}
/**
* Sets the onegate of this dossier.
*
* @param onegate the onegate of this dossier
*/
@Override
public void setOnegate(int onegate) {
_dossier.setOnegate(onegate);
}
/**
* Returns the submit date of this dossier.
*
* @return the submit date of this dossier
*/
@Override
public java.util.Date getSubmitDate() {
return _dossier.getSubmitDate();
}
/**
* Sets the submit date of this dossier.
*
* @param submitDate the submit date of this dossier
*/
@Override
public void setSubmitDate(java.util.Date submitDate) {
_dossier.setSubmitDate(submitDate);
}
/**
* Returns the receive date of this dossier.
*
* @return the receive date of this dossier
*/
@Override
public java.util.Date getReceiveDate() {
return _dossier.getReceiveDate();
}
/**
* Sets the receive date of this dossier.
*
* @param receiveDate the receive date of this dossier
*/
@Override
public void setReceiveDate(java.util.Date receiveDate) {
_dossier.setReceiveDate(receiveDate);
}
/**
* Returns the process date of this dossier.
*
* @return the process date of this dossier
*/
@Override
public java.util.Date getProcessDate() {
return _dossier.getProcessDate();
}
/**
* Sets the process date of this dossier.
*
* @param processDate the process date of this dossier
*/
@Override
public void setProcessDate(java.util.Date processDate) {
_dossier.setProcessDate(processDate);
}
/**
* Returns the renew date of this dossier.
*
* @return the renew date of this dossier
*/
@Override
public java.util.Date getRenewDate() {
return _dossier.getRenewDate();
}
/**
* Sets the renew date of this dossier.
*
* @param renewDate the renew date of this dossier
*/
@Override
public void setRenewDate(java.util.Date renewDate) {
_dossier.setRenewDate(renewDate);
}
/**
* Returns the estimate date of this dossier.
*
* @return the estimate date of this dossier
*/
@Override
public java.util.Date getEstimateDate() {
return _dossier.getEstimateDate();
}
/**
* Sets the estimate date of this dossier.
*
* @param estimateDate the estimate date of this dossier
*/
@Override
public void setEstimateDate(java.util.Date estimateDate) {
_dossier.setEstimateDate(estimateDate);
}
/**
* Returns the finish date of this dossier.
*
* @return the finish date of this dossier
*/
@Override
public java.util.Date getFinishDate() {
return _dossier.getFinishDate();
}
/**
* Sets the finish date of this dossier.
*
* @param finishDate the finish date of this dossier
*/
@Override
public void setFinishDate(java.util.Date finishDate) {
_dossier.setFinishDate(finishDate);
}
/**
* Returns the handover date of this dossier.
*
* @return the handover date of this dossier
*/
@Override
public java.util.Date getHandoverDate() {
return _dossier.getHandoverDate();
}
/**
* Sets the handover date of this dossier.
*
* @param handoverDate the handover date of this dossier
*/
@Override
public void setHandoverDate(java.util.Date handoverDate) {
_dossier.setHandoverDate(handoverDate);
}
/**
* Returns the return date of this dossier.
*
* @return the return date of this dossier
*/
@Override
public java.util.Date getReturnDate() {
return _dossier.getReturnDate();
}
/**
* Sets the return date of this dossier.
*
* @param returnDate the return date of this dossier
*/
@Override
public void setReturnDate(java.util.Date returnDate) {
_dossier.setReturnDate(returnDate);
}
/**
* Returns the archive date of this dossier.
*
* @return the archive date of this dossier
*/
@Override
public java.util.Date getArchiveDate() {
return _dossier.getArchiveDate();
}
/**
* Sets the archive date of this dossier.
*
* @param archiveDate the archive date of this dossier
*/
@Override
public void setArchiveDate(java.util.Date archiveDate) {
_dossier.setArchiveDate(archiveDate);
}
/**
* Returns the main status of this dossier.
*
* @return the main status of this dossier
*/
@Override
public java.lang.String getMainStatus() {
return _dossier.getMainStatus();
}
/**
* Sets the main status of this dossier.
*
* @param mainStatus the main status of this dossier
*/
@Override
public void setMainStatus(java.lang.String mainStatus) {
_dossier.setMainStatus(mainStatus);
}
/**
* Returns the sub status of this dossier.
*
* @return the sub status of this dossier
*/
@Override
public java.lang.String getSubStatus() {
return _dossier.getSubStatus();
}
/**
* Sets the sub status of this dossier.
*
* @param subStatus the sub status of this dossier
*/
@Override
public void setSubStatus(java.lang.String subStatus) {
_dossier.setSubStatus(subStatus);
}
/**
* Returns the status date of this dossier.
*
* @return the status date of this dossier
*/
@Override
public java.util.Date getStatusDate() {
return _dossier.getStatusDate();
}
/**
* Sets the status date of this dossier.
*
* @param statusDate the status date of this dossier
*/
@Override
public void setStatusDate(java.util.Date statusDate) {
_dossier.setStatusDate(statusDate);
}
/**
* Returns the status description of this dossier.
*
* @return the status description of this dossier
*/
@Override
public java.lang.String getStatusDescription() {
return _dossier.getStatusDescription();
}
/**
* Sets the status description of this dossier.
*
* @param statusDescription the status description of this dossier
*/
@Override
public void setStatusDescription(java.lang.String statusDescription) {
_dossier.setStatusDescription(statusDescription);
}
/**
* Returns the feedback note of this dossier.
*
* @return the feedback note of this dossier
*/
@Override
public java.lang.String getFeedbackNote() {
return _dossier.getFeedbackNote();
}
/**
* Sets the feedback note of this dossier.
*
* @param feedbackNote the feedback note of this dossier
*/
@Override
public void setFeedbackNote(java.lang.String feedbackNote) {
_dossier.setFeedbackNote(feedbackNote);
}
/**
* Returns the days delay of this dossier.
*
* @return the days delay of this dossier
*/
@Override
public int getDaysDelay() {
return _dossier.getDaysDelay();
}
/**
* Sets the days delay of this dossier.
*
* @param daysDelay the days delay of this dossier
*/
@Override
public void setDaysDelay(int daysDelay) {
_dossier.setDaysDelay(daysDelay);
}
/**
* Returns the error status of this dossier.
*
* @return the error status of this dossier
*/
@Override
public java.lang.String getErrorStatus() {
return _dossier.getErrorStatus();
}
/**
* Sets the error status of this dossier.
*
* @param errorStatus the error status of this dossier
*/
@Override
public void setErrorStatus(java.lang.String errorStatus) {
_dossier.setErrorStatus(errorStatus);
}
/**
* Returns the error code of this dossier.
*
* @return the error code of this dossier
*/
@Override
public java.lang.String getErrorCode() {
return _dossier.getErrorCode();
}
/**
* Sets the error code of this dossier.
*
* @param errorCode the error code of this dossier
*/
@Override
public void setErrorCode(java.lang.String errorCode) {
_dossier.setErrorCode(errorCode);
}
/**
* Returns the pending status of this dossier.
*
* @return the pending status of this dossier
*/
@Override
public int getPendingStatus() {
return _dossier.getPendingStatus();
}
/**
* Sets the pending status of this dossier.
*
* @param pendingStatus the pending status of this dossier
*/
@Override
public void setPendingStatus(int pendingStatus) {
_dossier.setPendingStatus(pendingStatus);
}
/**
* Returns the dirty of this dossier.
*
* @return the dirty of this dossier
*/
@Override
public int getDirty() {
return _dossier.getDirty();
}
/**
* Sets the dirty of this dossier.
*
* @param dirty the dirty of this dossier
*/
@Override
public void setDirty(int dirty) {
_dossier.setDirty(dirty);
}
@Override
public boolean isNew() {
return _dossier.isNew();
}
@Override
public void setNew(boolean n) {
_dossier.setNew(n);
}
@Override
public boolean isCachedModel() {
return _dossier.isCachedModel();
}
@Override
public void setCachedModel(boolean cachedModel) {
_dossier.setCachedModel(cachedModel);
}
@Override
public boolean isEscapedModel() {
return _dossier.isEscapedModel();
}
@Override
public java.io.Serializable getPrimaryKeyObj() {
return _dossier.getPrimaryKeyObj();
}
@Override
public void setPrimaryKeyObj(java.io.Serializable primaryKeyObj) {
_dossier.setPrimaryKeyObj(primaryKeyObj);
}
@Override
public com.liferay.portlet.expando.model.ExpandoBridge getExpandoBridge() {
return _dossier.getExpandoBridge();
}
@Override
public void setExpandoBridgeAttributes(
com.liferay.portal.model.BaseModel<?> baseModel) {
_dossier.setExpandoBridgeAttributes(baseModel);
}
@Override
public void setExpandoBridgeAttributes(
com.liferay.portlet.expando.model.ExpandoBridge expandoBridge) {
_dossier.setExpandoBridgeAttributes(expandoBridge);
}
@Override
public void setExpandoBridgeAttributes(
com.liferay.portal.service.ServiceContext serviceContext) {
_dossier.setExpandoBridgeAttributes(serviceContext);
}
@Override
public java.lang.Object clone() {
return new DossierWrapper((Dossier)_dossier.clone());
}
@Override
public int compareTo(org.oep.dossiermgt.model.Dossier dossier) {
return _dossier.compareTo(dossier);
}
@Override
public int hashCode() {
return _dossier.hashCode();
}
@Override
public com.liferay.portal.model.CacheModel<org.oep.dossiermgt.model.Dossier> toCacheModel() {
return _dossier.toCacheModel();
}
@Override
public org.oep.dossiermgt.model.Dossier toEscapedModel() {
return new DossierWrapper(_dossier.toEscapedModel());
}
@Override
public org.oep.dossiermgt.model.Dossier toUnescapedModel() {
return new DossierWrapper(_dossier.toUnescapedModel());
}
@Override
public java.lang.String toString() {
return _dossier.toString();
}
@Override
public java.lang.String toXmlString() {
return _dossier.toXmlString();
}
@Override
public void persist()
throws com.liferay.portal.kernel.exception.SystemException {
_dossier.persist();
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (!(obj instanceof DossierWrapper)) {
return false;
}
DossierWrapper dossierWrapper = (DossierWrapper)obj;
if (Validator.equals(_dossier, dossierWrapper._dossier)) {
return true;
}
return false;
}
@Override
public StagedModelType getStagedModelType() {
return _dossier.getStagedModelType();
}
/**
* @deprecated As of 6.1.0, replaced by {@link #getWrappedModel}
*/
public Dossier getWrappedDossier() {
return _dossier;
}
@Override
public Dossier getWrappedModel() {
return _dossier;
}
@Override
public void resetOriginalValues() {
_dossier.resetOriginalValues();
}
private Dossier _dossier;
}