/** * 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 PanicButton service. Represents a row in the "ese_PanicButton" 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.PanicButtonModelImpl} 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.PanicButtonImpl}. * </p> * * @author edik * @see PanicButton * @see com.ese.ils.beta.model.impl.PanicButtonImpl * @see com.ese.ils.beta.model.impl.PanicButtonModelImpl * @generated */ public interface PanicButtonModel extends BaseModel<PanicButton> { /* * NOTE FOR DEVELOPERS: * * Never modify or reference this interface directly. All methods that expect a panic button model instance should use the {@link PanicButton} interface instead. */ /** * Returns the primary key of this panic button. * * @return the primary key of this panic button */ public long getPrimaryKey(); /** * Sets the primary key of this panic button. * * @param primaryKey the primary key of this panic button */ public void setPrimaryKey(long primaryKey); /** * Returns the panic button ID of this panic button. * * @return the panic button ID of this panic button */ public long getPanicButtonId(); /** * Sets the panic button ID of this panic button. * * @param panicButtonId the panic button ID of this panic button */ public void setPanicButtonId(long panicButtonId); /** * Returns the user ID of this panic button. * * @return the user ID of this panic button */ public long getUserId(); /** * Sets the user ID of this panic button. * * @param userId the user ID of this panic button */ public void setUserId(long userId); /** * Returns the user uuid of this panic button. * * @return the user uuid of this panic button * @throws SystemException if a system exception occurred */ public String getUserUuid() throws SystemException; /** * Sets the user uuid of this panic button. * * @param userUuid the user uuid of this panic button */ public void setUserUuid(String userUuid); /** * Returns the create date of this panic button. * * @return the create date of this panic button */ public Date getCreateDate(); /** * Sets the create date of this panic button. * * @param createDate the create date of this panic button */ public void setCreateDate(Date createDate); /** * Returns the module ID of this panic button. * * @return the module ID of this panic button */ public long getModuleId(); /** * Sets the module ID of this panic button. * * @param moduleId the module ID of this panic button */ public void setModuleId(long moduleId); /** * Returns the slide ID of this panic button. * * @return the slide ID of this panic button */ public long getSlideId(); /** * Sets the slide ID of this panic button. * * @param slideId the slide ID of this panic button */ public void setSlideId(long slideId); /** * Returns the reason of this panic button. * * @return the reason of this panic button */ @AutoEscape public String getReason(); /** * Sets the reason of this panic button. * * @param reason the reason of this panic button */ public void setReason(String reason); 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(PanicButton panicButton); public int hashCode(); public CacheModel<PanicButton> toCacheModel(); public PanicButton toEscapedModel(); public String toString(); public String toXmlString(); }