/**
* 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.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 DossierDoc service. Represents a row in the "oep_dossiermgt_dossierdoc" database table, with each column mapped to a property of this class.
*
* <p>
* This interface and its corresponding implementation {@link org.oep.dossiermgt.model.impl.DossierDocModelImpl} 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.dossiermgt.model.impl.DossierDocImpl}.
* </p>
*
* @author trungdk
* @see DossierDoc
* @see org.oep.dossiermgt.model.impl.DossierDocImpl
* @see org.oep.dossiermgt.model.impl.DossierDocModelImpl
* @generated
*/
public interface DossierDocModel extends BaseModel<DossierDoc> {
/*
* NOTE FOR DEVELOPERS:
*
* Never modify or reference this interface directly. All methods that expect a dossier doc model instance should use the {@link DossierDoc} interface instead.
*/
/**
* Returns the primary key of this dossier doc.
*
* @return the primary key of this dossier doc
*/
public long getPrimaryKey();
/**
* Sets the primary key of this dossier doc.
*
* @param primaryKey the primary key of this dossier doc
*/
public void setPrimaryKey(long primaryKey);
/**
* Returns the dossier doc ID of this dossier doc.
*
* @return the dossier doc ID of this dossier doc
*/
public long getDossierDocId();
/**
* Sets the dossier doc ID of this dossier doc.
*
* @param dossierDocId the dossier doc ID of this dossier doc
*/
public void setDossierDocId(long dossierDocId);
/**
* Returns the user ID of this dossier doc.
*
* @return the user ID of this dossier doc
*/
public long getUserId();
/**
* Sets the user ID of this dossier doc.
*
* @param userId the user ID of this dossier doc
*/
public void setUserId(long userId);
/**
* Returns the user uuid of this dossier doc.
*
* @return the user uuid of this dossier doc
* @throws SystemException if a system exception occurred
*/
public String getUserUuid() throws SystemException;
/**
* Sets the user uuid of this dossier doc.
*
* @param userUuid the user uuid of this dossier doc
*/
public void setUserUuid(String userUuid);
/**
* Returns the group ID of this dossier doc.
*
* @return the group ID of this dossier doc
*/
public long getGroupId();
/**
* Sets the group ID of this dossier doc.
*
* @param groupId the group ID of this dossier doc
*/
public void setGroupId(long groupId);
/**
* Returns the company ID of this dossier doc.
*
* @return the company ID of this dossier doc
*/
public long getCompanyId();
/**
* Sets the company ID of this dossier doc.
*
* @param companyId the company ID of this dossier doc
*/
public void setCompanyId(long companyId);
/**
* Returns the create date of this dossier doc.
*
* @return the create date of this dossier doc
*/
public Date getCreateDate();
/**
* Sets the create date of this dossier doc.
*
* @param createDate the create date of this dossier doc
*/
public void setCreateDate(Date createDate);
/**
* Returns the modified date of this dossier doc.
*
* @return the modified date of this dossier doc
*/
public Date getModifiedDate();
/**
* Sets the modified date of this dossier doc.
*
* @param modifiedDate the modified date of this dossier doc
*/
public void setModifiedDate(Date modifiedDate);
/**
* Returns the dossier proc ID of this dossier doc.
*
* @return the dossier proc ID of this dossier doc
*/
public long getDossierProcId();
/**
* Sets the dossier proc ID of this dossier doc.
*
* @param dossierProcId the dossier proc ID of this dossier doc
*/
public void setDossierProcId(long dossierProcId);
/**
* Returns the dossier doc no of this dossier doc.
*
* @return the dossier doc no of this dossier doc
*/
@AutoEscape
public String getDossierDocNo();
/**
* Sets the dossier doc no of this dossier doc.
*
* @param dossierDocNo the dossier doc no of this dossier doc
*/
public void setDossierDocNo(String dossierDocNo);
/**
* Returns the dossier doc name of this dossier doc.
*
* @return the dossier doc name of this dossier doc
*/
@AutoEscape
public String getDossierDocName();
/**
* Sets the dossier doc name of this dossier doc.
*
* @param dossierDocName the dossier doc name of this dossier doc
*/
public void setDossierDocName(String dossierDocName);
/**
* Returns the note of this dossier doc.
*
* @return the note of this dossier doc
*/
@AutoEscape
public String getNote();
/**
* Sets the note of this dossier doc.
*
* @param note the note of this dossier doc
*/
public void setNote(String note);
/**
* Returns the sequence no of this dossier doc.
*
* @return the sequence no of this dossier doc
*/
public int getSequenceNo();
/**
* Sets the sequence no of this dossier doc.
*
* @param sequenceNo the sequence no of this dossier doc
*/
public void setSequenceNo(int sequenceNo);
/**
* Returns the default doc template ID of this dossier doc.
*
* @return the default doc template ID of this dossier doc
*/
public long getDefaultDocTemplateId();
/**
* Sets the default doc template ID of this dossier doc.
*
* @param defaultDocTemplateId the default doc template ID of this dossier doc
*/
public void setDefaultDocTemplateId(long defaultDocTemplateId);
/**
* Returns the dossier doc type of this dossier doc.
*
* @return the dossier doc type of this dossier doc
*/
public int getDossierDocType();
/**
* Sets the dossier doc type of this dossier doc.
*
* @param dossierDocType the dossier doc type of this dossier doc
*/
public void setDossierDocType(int dossierDocType);
/**
* Returns the number of file of this dossier doc.
*
* @return the number of file of this dossier doc
*/
public int getNumberOfFile();
/**
* Sets the number of file of this dossier doc.
*
* @param numberOfFile the number of file of this dossier doc
*/
public void setNumberOfFile(int numberOfFile);
/**
* Returns the split sub dossier of this dossier doc.
*
* @return the split sub dossier of this dossier doc
*/
public int getSplitSubDossier();
/**
* Sets the split sub dossier of this dossier doc.
*
* @param splitSubDossier the split sub dossier of this dossier doc
*/
public void setSplitSubDossier(int splitSubDossier);
/**
* Returns the online form of this dossier doc.
*
* @return the online form of this dossier doc
*/
@AutoEscape
public String getOnlineForm();
/**
* Sets the online form of this dossier doc.
*
* @param onlineForm the online form of this dossier doc
*/
public void setOnlineForm(String onlineForm);
@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(DossierDoc dossierDoc);
@Override
public int hashCode();
@Override
public CacheModel<DossierDoc> toCacheModel();
@Override
public DossierDoc toEscapedModel();
@Override
public DossierDoc toUnescapedModel();
@Override
public String toString();
@Override
public String toXmlString();
}