/** * 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.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 Slide service. Represents a row in the "ese_Slide" 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.SlideModelImpl} 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.SlideImpl}. * </p> * * @author edik * @see Slide * @see com.ese.ils.beta.model.impl.SlideImpl * @see com.ese.ils.beta.model.impl.SlideModelImpl * @generated */ public interface SlideModel extends BaseModel<Slide> { /* * NOTE FOR DEVELOPERS: * * Never modify or reference this interface directly. All methods that expect a slide model instance should use the {@link Slide} interface instead. */ /** * Returns the primary key of this slide. * * @return the primary key of this slide */ public long getPrimaryKey(); /** * Sets the primary key of this slide. * * @param primaryKey the primary key of this slide */ public void setPrimaryKey(long primaryKey); /** * Returns the slide ID of this slide. * * @return the slide ID of this slide */ public long getSlideId(); /** * Sets the slide ID of this slide. * * @param slideId the slide ID of this slide */ public void setSlideId(long slideId); /** * Returns the create date of this slide. * * @return the create date of this slide */ public Date getCreateDate(); /** * Sets the create date of this slide. * * @param createDate the create date of this slide */ public void setCreateDate(Date createDate); /** * Returns the modified date of this slide. * * @return the modified date of this slide */ public Date getModifiedDate(); /** * Sets the modified date of this slide. * * @param modifiedDate the modified date of this slide */ public void setModifiedDate(Date modifiedDate); /** * Returns the file entry ID of this slide. * * @return the file entry ID of this slide */ public long getFileEntryId(); /** * Sets the file entry ID of this slide. * * @param fileEntryId the file entry ID of this slide */ public void setFileEntryId(long fileEntryId); /** * Returns the module ID of this slide. * * @return the module ID of this slide */ public long getModuleId(); /** * Sets the module ID of this slide. * * @param moduleId the module ID of this slide */ public void setModuleId(long moduleId); /** * Returns the addtional info of this slide. * * @return the addtional info of this slide */ @AutoEscape public String getAddtionalInfo(); /** * Sets the addtional info of this slide. * * @param addtionalInfo the addtional info of this slide */ public void setAddtionalInfo(String addtionalInfo); /** * Returns the index of this slide. * * @return the index of this slide */ public int getIndex(); /** * Sets the index of this slide. * * @param index the index of this slide */ public void setIndex(int index); 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(Slide slide); public int hashCode(); public CacheModel<Slide> toCacheModel(); public Slide toEscapedModel(); public String toString(); public String toXmlString(); }