Liferay 6.2.0

com.liferay.portlet.softwarecatalog.model
Interface SCLicenseModel

All Superinterfaces:
BaseModel<SCLicense>, ClassedModel, Cloneable, Comparable<SCLicense>, Serializable
All Known Subinterfaces:
SCLicense
All Known Implementing Classes:
SCLicenseBaseImpl, SCLicenseImpl, SCLicenseModelImpl, SCLicenseWrapper

@ProviderType
public interface SCLicenseModel
extends BaseModel<SCLicense>

The base model interface for the SCLicense service. Represents a row in the "SCLicense" database table, with each column mapped to a property of this class.

This interface and its corresponding implementation SCLicenseModelImpl exist only as a container for the default property accessors generated by ServiceBuilder. Helper methods and all application logic should be put in SCLicenseImpl.

See Also:
SCLicense, SCLicenseImpl, SCLicenseModelImpl
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time it is generated.

Method Summary
abstract  Object clone()
          Creates a shallow clone of this model instance.
abstract  int compareTo(SCLicense scLicense)
           
abstract  boolean getActive()
          Returns the active of this s c license.
abstract  ExpandoBridge getExpandoBridge()
          Returns the expando bridge for this model instance.
abstract  long getLicenseId()
          Returns the license ID of this s c license.
abstract  String getName()
          Returns the name of this s c license.
abstract  boolean getOpenSource()
          Returns the open source of this s c license.
abstract  long getPrimaryKey()
          Returns the primary key of this s c license.
abstract  Serializable getPrimaryKeyObj()
          Returns the primary key of this model instance.
abstract  boolean getRecommended()
          Returns the recommended of this s c license.
abstract  String getUrl()
          Returns the url of this s c license.
abstract  int hashCode()
           
abstract  boolean isActive()
          Returns true if this s c license is active.
abstract  boolean isCachedModel()
          Returns true if this model instance was retrieved from the entity cache.
abstract  boolean isEscapedModel()
          Returns true if this model instance is escaped.
abstract  boolean isNew()
          Returns true if this model instance does not yet exist in the database.
abstract  boolean isOpenSource()
          Returns true if this s c license is open source.
abstract  boolean isRecommended()
          Returns true if this s c license is recommended.
abstract  void setActive(boolean active)
          Sets whether this s c license is active.
abstract  void setCachedModel(boolean cachedModel)
          Sets whether this model instance was retrieved from the entity cache.
abstract  void setExpandoBridgeAttributes(BaseModel<?> baseModel)
           
abstract  void setExpandoBridgeAttributes(ExpandoBridge expandoBridge)
           
abstract  void setExpandoBridgeAttributes(ServiceContext serviceContext)
          Sets the expando bridge attributes for this model instance to the attributes stored in the service context.
abstract  void setLicenseId(long licenseId)
          Sets the license ID of this s c license.
abstract  void setName(String name)
          Sets the name of this s c license.
abstract  void setNew(boolean n)
          Sets whether this model instance does not yet exist in the database.
abstract  void setOpenSource(boolean openSource)
          Sets whether this s c license is open source.
abstract  void setPrimaryKey(long primaryKey)
          Sets the primary key of this s c license.
abstract  void setPrimaryKeyObj(Serializable primaryKeyObj)
          Sets the primary key of this model instance.
abstract  void setRecommended(boolean recommended)
          Sets whether this s c license is recommended.
abstract  void setUrl(String url)
          Sets the url of this s c license.
abstract  CacheModel<SCLicense> toCacheModel()
          Returns a cache model object for this entity used by entity cache.
abstract  SCLicense toEscapedModel()
          Returns a copy of this entity as an escaped model instance by wrapping it with an AutoEscapeBeanHandler.
abstract  String toString()
           
abstract  SCLicense toUnescapedModel()
           
abstract  String toXmlString()
          Returns the XML representation of this model instance.
 
Methods inherited from interface com.liferay.portal.model.BaseModel
getModelAttributes, resetOriginalValues, setModelAttributes
 
Methods inherited from interface com.liferay.portal.model.ClassedModel
getModelClass, getModelClassName
 

Method Detail

getPrimaryKey

long getPrimaryKey()
Returns the primary key of this s c license.

Returns:
the primary key of this s c license

setPrimaryKey

void setPrimaryKey(long primaryKey)
Sets the primary key of this s c license.

Parameters:
primaryKey - the primary key of this s c license

getLicenseId

long getLicenseId()
Returns the license ID of this s c license.

Returns:
the license ID of this s c license

setLicenseId

void setLicenseId(long licenseId)
Sets the license ID of this s c license.

Parameters:
licenseId - the license ID of this s c license

getName

@AutoEscape
String getName()
Returns the name of this s c license.

Returns:
the name of this s c license

setName

void setName(String name)
Sets the name of this s c license.

Parameters:
name - the name of this s c license

getUrl

@AutoEscape
String getUrl()
Returns the url of this s c license.

Returns:
the url of this s c license

setUrl

void setUrl(String url)
Sets the url of this s c license.

Parameters:
url - the url of this s c license

getOpenSource

boolean getOpenSource()
Returns the open source of this s c license.

Returns:
the open source of this s c license

isOpenSource

boolean isOpenSource()
Returns true if this s c license is open source.

Returns:
true if this s c license is open source; false otherwise

setOpenSource

void setOpenSource(boolean openSource)
Sets whether this s c license is open source.

Parameters:
openSource - the open source of this s c license

getActive

boolean getActive()
Returns the active of this s c license.

Returns:
the active of this s c license

isActive

boolean isActive()
Returns true if this s c license is active.

Returns:
true if this s c license is active; false otherwise

setActive

void setActive(boolean active)
Sets whether this s c license is active.

Parameters:
active - the active of this s c license

getRecommended

boolean getRecommended()
Returns the recommended of this s c license.

Returns:
the recommended of this s c license

isRecommended

boolean isRecommended()
Returns true if this s c license is recommended.

Returns:
true if this s c license is recommended; false otherwise

setRecommended

void setRecommended(boolean recommended)
Sets whether this s c license is recommended.

Parameters:
recommended - the recommended of this s c license

isNew

boolean isNew()
Description copied from interface: BaseModel
Returns true if this model instance does not yet exist in the database.

Specified by:
isNew in interface BaseModel<SCLicense>
Returns:
true if this model instance does not yet exist in the database; false otherwise

setNew

void setNew(boolean n)
Description copied from interface: BaseModel
Sets whether this model instance does not yet exist in the database.

Specified by:
setNew in interface BaseModel<SCLicense>
Parameters:
n - whether this model instance does not yet exist in the database

isCachedModel

boolean isCachedModel()
Description copied from interface: BaseModel
Returns true if this model instance was retrieved from the entity cache.

Specified by:
isCachedModel in interface BaseModel<SCLicense>
Returns:
true if this model instance was retrieved from the entity cache; false otherwise
See Also:
BaseModel.setCachedModel(boolean)

setCachedModel

void setCachedModel(boolean cachedModel)
Description copied from interface: BaseModel
Sets whether this model instance was retrieved from the entity cache.

Specified by:
setCachedModel in interface BaseModel<SCLicense>
Parameters:
cachedModel - whether this model instance was retrieved from the entity cache
See Also:
EntityCache

isEscapedModel

boolean isEscapedModel()
Description copied from interface: BaseModel
Returns true if this model instance is escaped.

Specified by:
isEscapedModel in interface BaseModel<SCLicense>
Returns:
true if this model instance is escaped; false otherwise

getPrimaryKeyObj

Serializable getPrimaryKeyObj()
Description copied from interface: BaseModel
Returns the primary key of this model instance.

Specified by:
getPrimaryKeyObj in interface BaseModel<SCLicense>
Specified by:
getPrimaryKeyObj in interface ClassedModel
Returns:
the primary key of this model instance

setPrimaryKeyObj

void setPrimaryKeyObj(Serializable primaryKeyObj)
Description copied from interface: BaseModel
Sets the primary key of this model instance.

Specified by:
setPrimaryKeyObj in interface BaseModel<SCLicense>
Specified by:
setPrimaryKeyObj in interface ClassedModel
Parameters:
primaryKeyObj - the primary key of this model instance

getExpandoBridge

ExpandoBridge getExpandoBridge()
Description copied from interface: BaseModel
Returns the expando bridge for this model instance.

Specified by:
getExpandoBridge in interface BaseModel<SCLicense>
Specified by:
getExpandoBridge in interface ClassedModel
Returns:
the expando bridge for this model instance

setExpandoBridgeAttributes

void setExpandoBridgeAttributes(BaseModel<?> baseModel)
Specified by:
setExpandoBridgeAttributes in interface BaseModel<SCLicense>

setExpandoBridgeAttributes

void setExpandoBridgeAttributes(ExpandoBridge expandoBridge)
Specified by:
setExpandoBridgeAttributes in interface BaseModel<SCLicense>

setExpandoBridgeAttributes

void setExpandoBridgeAttributes(ServiceContext serviceContext)
Description copied from interface: BaseModel
Sets the expando bridge attributes for this model instance to the attributes stored in the service context.

Specified by:
setExpandoBridgeAttributes in interface BaseModel<SCLicense>
Parameters:
serviceContext - the service context to be applied
See Also:
ServiceContext.getExpandoBridgeAttributes( )

clone

Object clone()
Description copied from interface: BaseModel
Creates a shallow clone of this model instance.

Specified by:
clone in interface BaseModel<SCLicense>
Returns:
the shallow clone of this model instance

compareTo

int compareTo(SCLicense scLicense)
Specified by:
compareTo in interface Comparable<SCLicense>

hashCode

int hashCode()
Overrides:
hashCode in class Object

toCacheModel

CacheModel<SCLicense> toCacheModel()
Description copied from interface: BaseModel
Returns a cache model object for this entity used by entity cache.

Specified by:
toCacheModel in interface BaseModel<SCLicense>
Returns:
the cache model object

toEscapedModel

SCLicense toEscapedModel()
Description copied from interface: BaseModel
Returns a copy of this entity as an escaped model instance by wrapping it with an AutoEscapeBeanHandler.

Specified by:
toEscapedModel in interface BaseModel<SCLicense>
Returns:
the escaped model instance
See Also:
AutoEscapeBeanHandler

toUnescapedModel

SCLicense toUnescapedModel()
Specified by:
toUnescapedModel in interface BaseModel<SCLicense>

toString

String toString()
Overrides:
toString in class Object

toXmlString

String toXmlString()
Description copied from interface: BaseModel
Returns the XML representation of this model instance.

Specified by:
toXmlString in interface BaseModel<SCLicense>
Returns:
the XML representation of this model instance

Liferay 6.2.0