com.liferay.portal.model
Interface PluginSettingModel

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

public interface PluginSettingModel
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 PluginSetting table in the database.

Author:
Brian Wing Shun Chan
See Also:
com.liferay.portal.service.model.PluginSetting, com.liferay.portal.service.model.impl.PluginSettingImpl, com.liferay.portal.service.model.impl.PluginSettingModelImpl

Method Summary
 boolean getActive()
           
 long getCompanyId()
           
 java.lang.String getPluginId()
           
 long getPluginSettingId()
           
 java.lang.String getPluginType()
           
 long getPrimaryKey()
           
 java.lang.String getRoles()
           
 boolean isActive()
           
 void setActive(boolean active)
           
 void setCompanyId(long companyId)
           
 void setPluginId(java.lang.String pluginId)
           
 void setPluginSettingId(long pluginSettingId)
           
 void setPluginType(java.lang.String pluginType)
           
 void setPrimaryKey(long pk)
           
 void setRoles(java.lang.String roles)
           
 
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)

getPluginSettingId

public long getPluginSettingId()

setPluginSettingId

public void setPluginSettingId(long pluginSettingId)

getCompanyId

public long getCompanyId()

setCompanyId

public void setCompanyId(long companyId)

getPluginId

public java.lang.String getPluginId()

setPluginId

public void setPluginId(java.lang.String pluginId)

getPluginType

public java.lang.String getPluginType()

setPluginType

public void setPluginType(java.lang.String pluginType)

getRoles

public java.lang.String getRoles()

setRoles

public void setRoles(java.lang.String roles)

getActive

public boolean getActive()

isActive

public boolean isActive()

setActive

public void setActive(boolean active)