/** * 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 JobPos service. Represents a row in the "oep_usermgt_jobpos" 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.JobPosModelImpl} 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.JobPosImpl}. * </p> * * @author NQMINH * @see JobPos * @see org.oep.usermgt.model.impl.JobPosImpl * @see org.oep.usermgt.model.impl.JobPosModelImpl * @generated */ public interface JobPosModel extends BaseModel<JobPos> { /* * NOTE FOR DEVELOPERS: * * Never modify or reference this interface directly. All methods that expect a Job Pos model instance should use the {@link JobPos} interface instead. */ /** * Returns the primary key of this Job Pos. * * @return the primary key of this Job Pos */ public long getPrimaryKey(); /** * Sets the primary key of this Job Pos. * * @param primaryKey the primary key of this Job Pos */ public void setPrimaryKey(long primaryKey); /** * Returns the job pos ID of this Job Pos. * * @return the job pos ID of this Job Pos */ public long getJobPosId(); /** * Sets the job pos ID of this Job Pos. * * @param jobPosId the job pos ID of this Job Pos */ public void setJobPosId(long jobPosId); /** * Returns the company ID of this Job Pos. * * @return the company ID of this Job Pos */ public long getCompanyId(); /** * Sets the company ID of this Job Pos. * * @param companyId the company ID of this Job Pos */ public void setCompanyId(long companyId); /** * Returns the group ID of this Job Pos. * * @return the group ID of this Job Pos */ public long getGroupId(); /** * Sets the group ID of this Job Pos. * * @param groupId the group ID of this Job Pos */ public void setGroupId(long groupId); /** * Returns the user ID of this Job Pos. * * @return the user ID of this Job Pos */ public long getUserId(); /** * Sets the user ID of this Job Pos. * * @param userId the user ID of this Job Pos */ public void setUserId(long userId); /** * Returns the user uuid of this Job Pos. * * @return the user uuid of this Job Pos * @throws SystemException if a system exception occurred */ public String getUserUuid() throws SystemException; /** * Sets the user uuid of this Job Pos. * * @param userUuid the user uuid of this Job Pos */ public void setUserUuid(String userUuid); /** * Returns the create date of this Job Pos. * * @return the create date of this Job Pos */ public Date getCreateDate(); /** * Sets the create date of this Job Pos. * * @param createDate the create date of this Job Pos */ public void setCreateDate(Date createDate); /** * Returns the modified date of this Job Pos. * * @return the modified date of this Job Pos */ public Date getModifiedDate(); /** * Sets the modified date of this Job Pos. * * @param modifiedDate the modified date of this Job Pos */ public void setModifiedDate(Date modifiedDate); /** * Returns the title of this Job Pos. * * @return the title of this Job Pos */ @AutoEscape public String getTitle(); /** * Sets the title of this Job Pos. * * @param title the title of this Job Pos */ public void setTitle(String title); /** * Returns the position cat no of this Job Pos. * * @return the position cat no of this Job Pos */ @AutoEscape public String getPositionCatNo(); /** * Sets the position cat no of this Job Pos. * * @param positionCatNo the position cat no of this Job Pos */ public void setPositionCatNo(String positionCatNo); /** * Returns the working unit ID of this Job Pos. * * @return the working unit ID of this Job Pos */ public long getWorkingUnitId(); /** * Sets the working unit ID of this Job Pos. * * @param workingUnitId the working unit ID of this Job Pos */ public void setWorkingUnitId(long workingUnitId); /** * Returns the sub working unit ID of this Job Pos. * * @return the sub working unit ID of this Job Pos */ public long getSubWorkingUnitId(); /** * Sets the sub working unit ID of this Job Pos. * * @param subWorkingUnitId the sub working unit ID of this Job Pos */ public void setSubWorkingUnitId(long subWorkingUnitId); /** * Returns the leader of this Job Pos. * * @return the leader of this Job Pos */ public int getLeader(); /** * Sets the leader of this Job Pos. * * @param leader the leader of this Job Pos */ public void setLeader(int leader); @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(JobPos jobPos); @Override public int hashCode(); @Override public CacheModel<JobPos> toCacheModel(); @Override public JobPos toEscapedModel(); @Override public JobPos toUnescapedModel(); @Override public String toString(); @Override public String toXmlString(); }