/** * 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.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; /** * The base model interface for the Favorite service. Represents a row in the "ese_Favorite" 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.FavoriteModelImpl} 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.FavoriteImpl}. * </p> * * @author edik * @see Favorite * @see com.ese.ils.beta.model.impl.FavoriteImpl * @see com.ese.ils.beta.model.impl.FavoriteModelImpl * @generated */ public interface FavoriteModel extends BaseModel<Favorite> { /* * NOTE FOR DEVELOPERS: * * Never modify or reference this interface directly. All methods that expect a favorite model instance should use the {@link Favorite} interface instead. */ /** * Returns the primary key of this favorite. * * @return the primary key of this favorite */ public long getPrimaryKey(); /** * Sets the primary key of this favorite. * * @param primaryKey the primary key of this favorite */ public void setPrimaryKey(long primaryKey); /** * Returns the favorite ID of this favorite. * * @return the favorite ID of this favorite */ public long getFavoriteId(); /** * Sets the favorite ID of this favorite. * * @param favoriteId the favorite ID of this favorite */ public void setFavoriteId(long favoriteId); /** * Returns the user ID of this favorite. * * @return the user ID of this favorite */ public long getUserId(); /** * Sets the user ID of this favorite. * * @param userId the user ID of this favorite */ public void setUserId(long userId); /** * Returns the user uuid of this favorite. * * @return the user uuid of this favorite * @throws SystemException if a system exception occurred */ public String getUserUuid() throws SystemException; /** * Sets the user uuid of this favorite. * * @param userUuid the user uuid of this favorite */ public void setUserUuid(String userUuid); /** * Returns the module ID of this favorite. * * @return the module ID of this favorite */ public long getModuleId(); /** * Sets the module ID of this favorite. * * @param moduleId the module ID of this favorite */ public void setModuleId(long moduleId); /** * Returns the slide ID of this favorite. * * @return the slide ID of this favorite */ public long getSlideId(); /** * Sets the slide ID of this favorite. * * @param slideId the slide ID of this favorite */ public void setSlideId(long slideId); 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(Favorite favorite); public int hashCode(); public CacheModel<Favorite> toCacheModel(); public Favorite toEscapedModel(); public String toString(); public String toXmlString(); }