/** * 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.processmgt.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 StepTransition service. Represents a row in the "oep_processmgt_steptransition" database table, with each column mapped to a property of this class. * * <p> * This interface and its corresponding implementation {@link org.oep.processmgt.model.impl.StepTransitionModelImpl} 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.processmgt.model.impl.StepTransitionImpl}. * </p> * * @author trungdk * @see StepTransition * @see org.oep.processmgt.model.impl.StepTransitionImpl * @see org.oep.processmgt.model.impl.StepTransitionModelImpl * @generated */ public interface StepTransitionModel extends BaseModel<StepTransition> { /* * NOTE FOR DEVELOPERS: * * Never modify or reference this interface directly. All methods that expect a step transition model instance should use the {@link StepTransition} interface instead. */ /** * Returns the primary key of this step transition. * * @return the primary key of this step transition */ public long getPrimaryKey(); /** * Sets the primary key of this step transition. * * @param primaryKey the primary key of this step transition */ public void setPrimaryKey(long primaryKey); /** * Returns the step transition ID of this step transition. * * @return the step transition ID of this step transition */ public long getStepTransitionId(); /** * Sets the step transition ID of this step transition. * * @param stepTransitionId the step transition ID of this step transition */ public void setStepTransitionId(long stepTransitionId); /** * Returns the user ID of this step transition. * * @return the user ID of this step transition */ public long getUserId(); /** * Sets the user ID of this step transition. * * @param userId the user ID of this step transition */ public void setUserId(long userId); /** * Returns the user uuid of this step transition. * * @return the user uuid of this step transition * @throws SystemException if a system exception occurred */ public String getUserUuid() throws SystemException; /** * Sets the user uuid of this step transition. * * @param userUuid the user uuid of this step transition */ public void setUserUuid(String userUuid); /** * Returns the group ID of this step transition. * * @return the group ID of this step transition */ public long getGroupId(); /** * Sets the group ID of this step transition. * * @param groupId the group ID of this step transition */ public void setGroupId(long groupId); /** * Returns the company ID of this step transition. * * @return the company ID of this step transition */ public long getCompanyId(); /** * Sets the company ID of this step transition. * * @param companyId the company ID of this step transition */ public void setCompanyId(long companyId); /** * Returns the create date of this step transition. * * @return the create date of this step transition */ public Date getCreateDate(); /** * Sets the create date of this step transition. * * @param createDate the create date of this step transition */ public void setCreateDate(Date createDate); /** * Returns the modified date of this step transition. * * @return the modified date of this step transition */ public Date getModifiedDate(); /** * Sets the modified date of this step transition. * * @param modifiedDate the modified date of this step transition */ public void setModifiedDate(Date modifiedDate); /** * Returns the dossier process ID of this step transition. * * @return the dossier process ID of this step transition */ public long getDossierProcessId(); /** * Sets the dossier process ID of this step transition. * * @param dossierProcessId the dossier process ID of this step transition */ public void setDossierProcessId(long dossierProcessId); /** * Returns the pre dossier step ID of this step transition. * * @return the pre dossier step ID of this step transition */ public long getPreDossierStepId(); /** * Sets the pre dossier step ID of this step transition. * * @param preDossierStepId the pre dossier step ID of this step transition */ public void setPreDossierStepId(long preDossierStepId); /** * Returns the post dossier step ID of this step transition. * * @return the post dossier step ID of this step transition */ public long getPostDossierStepId(); /** * Sets the post dossier step ID of this step transition. * * @param postDossierStepId the post dossier step ID of this step transition */ public void setPostDossierStepId(long postDossierStepId); /** * Returns the auto condition of this step transition. * * @return the auto condition of this step transition */ @AutoEscape public String getAutoCondition(); /** * Sets the auto condition of this step transition. * * @param autoCondition the auto condition of this step transition */ public void setAutoCondition(String autoCondition); /** * Returns the transition name of this step transition. * * @return the transition name of this step transition */ @AutoEscape public String getTransitionName(); /** * Sets the transition name of this step transition. * * @param transitionName the transition name of this step transition */ public void setTransitionName(String transitionName); /** * Returns the dossier status of this step transition. * * @return the dossier status of this step transition */ @AutoEscape public String getDossierStatus(); /** * Sets the dossier status of this step transition. * * @param dossierStatus the dossier status of this step transition */ public void setDossierStatus(String dossierStatus); /** * Returns the send results of this step transition. * * @return the send results of this step transition */ public int getSendResults(); /** * Sets the send results of this step transition. * * @param sendResults the send results of this step transition */ public void setSendResults(int sendResults); /** * Returns the user assignment of this step transition. * * @return the user assignment of this step transition */ public int getUserAssignment(); /** * Sets the user assignment of this step transition. * * @param userAssignment the user assignment of this step transition */ public void setUserAssignment(int userAssignment); /** * Returns the new process order of this step transition. * * @return the new process order of this step transition */ public int getNewProcessOrder(); /** * Sets the new process order of this step transition. * * @param newProcessOrder the new process order of this step transition */ public void setNewProcessOrder(int newProcessOrder); @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(StepTransition stepTransition); @Override public int hashCode(); @Override public CacheModel<StepTransition> toCacheModel(); @Override public StepTransition toEscapedModel(); @Override public StepTransition toUnescapedModel(); @Override public String toString(); @Override public String toXmlString(); }