com.liferay.portal.model
Interface ReleaseModel

All Superinterfaces:
BaseModel, java.lang.Cloneable, java.lang.Comparable, java.io.Serializable
All Known Subinterfaces:
Release

public interface ReleaseModel
extends BaseModel

View Source

ServiceBuilder generated this class. Modifications in this class will be overwritten the next time is generated.

This interface is a model that represents the Release_ table in the database.

Author:
Brian Wing Shun Chan
See Also:
com.liferay.portal.service.model.Release, com.liferay.portal.service.model.impl.ReleaseImpl, com.liferay.portal.service.model.impl.ReleaseModelImpl

Method Summary
 java.util.Date getBuildDate()
           
 int getBuildNumber()
           
 java.util.Date getCreateDate()
           
 java.util.Date getModifiedDate()
           
 long getPrimaryKey()
           
 long getReleaseId()
           
 boolean getVerified()
           
 boolean isVerified()
           
 void setBuildDate(java.util.Date buildDate)
           
 void setBuildNumber(int buildNumber)
           
 void setCreateDate(java.util.Date createDate)
           
 void setModifiedDate(java.util.Date modifiedDate)
           
 void setPrimaryKey(long pk)
           
 void setReleaseId(long releaseId)
           
 void setVerified(boolean verified)
           
 
Methods inherited from interface com.liferay.portal.model.BaseModel
clone, getPrimaryKeyObj, isNew, setNew
 
Methods inherited from interface java.lang.Comparable
compareTo
 

Method Detail

getPrimaryKey

public long getPrimaryKey()

setPrimaryKey

public void setPrimaryKey(long pk)

getReleaseId

public long getReleaseId()

setReleaseId

public void setReleaseId(long releaseId)

getCreateDate

public java.util.Date getCreateDate()

setCreateDate

public void setCreateDate(java.util.Date createDate)

getModifiedDate

public java.util.Date getModifiedDate()

setModifiedDate

public void setModifiedDate(java.util.Date modifiedDate)

getBuildNumber

public int getBuildNumber()

setBuildNumber

public void setBuildNumber(int buildNumber)

getBuildDate

public java.util.Date getBuildDate()

setBuildDate

public void setBuildDate(java.util.Date buildDate)

getVerified

public boolean getVerified()

isVerified

public boolean isVerified()

setVerified

public void setVerified(boolean verified)