001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portal.model;
016    
017    import com.liferay.portal.kernel.annotation.AutoEscape;
018    import com.liferay.portal.service.ServiceContext;
019    
020    import com.liferay.portlet.expando.model.ExpandoBridge;
021    
022    import java.io.Serializable;
023    
024    import java.util.Date;
025    
026    /**
027     * <p>
028     * This interface is a model that represents the Release_ table in the
029     * database.
030     * </p>
031     *
032     * @author    Brian Wing Shun Chan
033     * @see       Release
034     * @see       com.liferay.portal.model.impl.ReleaseImpl
035     * @see       com.liferay.portal.model.impl.ReleaseModelImpl
036     * @generated
037     */
038    public interface ReleaseModel extends BaseModel<Release> {
039            public long getPrimaryKey();
040    
041            public void setPrimaryKey(long pk);
042    
043            public long getReleaseId();
044    
045            public void setReleaseId(long releaseId);
046    
047            public Date getCreateDate();
048    
049            public void setCreateDate(Date createDate);
050    
051            public Date getModifiedDate();
052    
053            public void setModifiedDate(Date modifiedDate);
054    
055            @AutoEscape
056            public String getServletContextName();
057    
058            public void setServletContextName(String servletContextName);
059    
060            public int getBuildNumber();
061    
062            public void setBuildNumber(int buildNumber);
063    
064            public Date getBuildDate();
065    
066            public void setBuildDate(Date buildDate);
067    
068            public boolean getVerified();
069    
070            public boolean isVerified();
071    
072            public void setVerified(boolean verified);
073    
074            @AutoEscape
075            public String getTestString();
076    
077            public void setTestString(String testString);
078    
079            public Release toEscapedModel();
080    
081            public boolean isNew();
082    
083            public void setNew(boolean n);
084    
085            public boolean isCachedModel();
086    
087            public void setCachedModel(boolean cachedModel);
088    
089            public boolean isEscapedModel();
090    
091            public void setEscapedModel(boolean escapedModel);
092    
093            public Serializable getPrimaryKeyObj();
094    
095            public ExpandoBridge getExpandoBridge();
096    
097            public void setExpandoBridgeAttributes(ServiceContext serviceContext);
098    
099            public Object clone();
100    
101            public int compareTo(Release release);
102    
103            public int hashCode();
104    
105            public String toString();
106    
107            public String toXmlString();
108    }