/** * Copyright (c) 2000-2012 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 com.ese.ils.beta.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 Module service. Represents a row in the "ese_Module" database table, with each column mapped to a property of this class. * * <p> * This interface and its corresponding implementation {@link com.ese.ils.beta.model.impl.ModuleModelImpl} exist only as a container for the default property accessors generated by ServiceBuilder. Helper methods and all application logic should be put in {@link com.ese.ils.beta.model.impl.ModuleImpl}. * </p> * * @author edik * @see Module * @see com.ese.ils.beta.model.impl.ModuleImpl * @see com.ese.ils.beta.model.impl.ModuleModelImpl * @generated */ public interface ModuleModel extends BaseModel<Module> { /* * NOTE FOR DEVELOPERS: * * Never modify or reference this interface directly. All methods that expect a module model instance should use the {@link Module} interface instead. */ /** * Returns the primary key of this module. * * @return the primary key of this module */ public long getPrimaryKey(); /** * Sets the primary key of this module. * * @param primaryKey the primary key of this module */ public void setPrimaryKey(long primaryKey); /** * Returns the module ID of this module. * * @return the module ID of this module */ public long getModuleId(); /** * Sets the module ID of this module. * * @param moduleId the module ID of this module */ public void setModuleId(long moduleId); /** * Returns the lecturer user ID of this module. * * @return the lecturer user ID of this module */ public long getLecturerUserId(); /** * Sets the lecturer user ID of this module. * * @param lecturerUserId the lecturer user ID of this module */ public void setLecturerUserId(long lecturerUserId); /** * Returns the lecturer user uuid of this module. * * @return the lecturer user uuid of this module * @throws SystemException if a system exception occurred */ public String getLecturerUserUuid() throws SystemException; /** * Sets the lecturer user uuid of this module. * * @param lecturerUserUuid the lecturer user uuid of this module */ public void setLecturerUserUuid(String lecturerUserUuid); /** * Returns the create date of this module. * * @return the create date of this module */ public Date getCreateDate(); /** * Sets the create date of this module. * * @param createDate the create date of this module */ public void setCreateDate(Date createDate); /** * Returns the module title of this module. * * @return the module title of this module */ @AutoEscape public String getModuleTitle(); /** * Sets the module title of this module. * * @param moduleTitle the module title of this module */ public void setModuleTitle(String moduleTitle); /** * Returns the additional info of this module. * * @return the additional info of this module */ @AutoEscape public String getAdditionalInfo(); /** * Sets the additional info of this module. * * @param additionalInfo the additional info of this module */ public void setAdditionalInfo(String additionalInfo); public boolean isNew(); public void setNew(boolean n); public boolean isCachedModel(); public void setCachedModel(boolean cachedModel); public boolean isEscapedModel(); public Serializable getPrimaryKeyObj(); public void setPrimaryKeyObj(Serializable primaryKeyObj); public ExpandoBridge getExpandoBridge(); public void setExpandoBridgeAttributes(ServiceContext serviceContext); public Object clone(); public int compareTo(Module module); public int hashCode(); public CacheModel<Module> toCacheModel(); public Module toEscapedModel(); public String toString(); public String toXmlString(); }