Liferay 6.1.2-ce-ga3

com.liferay.portal.model.impl
Class ResourceBlockModelImpl

java.lang.Object
  extended by com.liferay.portal.model.impl.BaseModelImpl<ResourceBlock>
      extended by com.liferay.portal.model.impl.ResourceBlockModelImpl
All Implemented Interfaces:
BaseModel<ResourceBlock>, ClassedModel, ResourceBlockModel, Serializable, Cloneable, Comparable<ResourceBlock>
Direct Known Subclasses:
ResourceBlockBaseImpl

@JSON(strict=true)
public class ResourceBlockModelImpl
extends BaseModelImpl<ResourceBlock>
implements ResourceBlockModel

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

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

See Also:
ResourceBlockImpl, ResourceBlock, ResourceBlockModel, Serialized Form
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time it is generated.

Field Summary
static boolean COLUMN_BITMASK_ENABLED
           
static long COMPANYID_COLUMN_BITMASK
           
static String DATA_SOURCE
           
static boolean ENTITY_CACHE_ENABLED
           
static boolean FINDER_CACHE_ENABLED
           
static long GROUPID_COLUMN_BITMASK
           
static long LOCK_EXPIRATION_TIME
           
static long NAME_COLUMN_BITMASK
           
static long PERMISSIONSHASH_COLUMN_BITMASK
           
static String SESSION_FACTORY
           
static Object[][] TABLE_COLUMNS
           
static String TABLE_NAME
           
static String TABLE_SQL_CREATE
           
static String TABLE_SQL_DROP
           
static String TX_MANAGER
           
 
Constructor Summary
ResourceBlockModelImpl()
           
 
Method Summary
 Object clone()
          Creates a shallow clone of this model instance.
 int compareTo(ResourceBlock resourceBlock)
           
 boolean equals(Object obj)
           
 long getColumnBitmask()
           
 long getCompanyId()
          Returns the company ID of this resource block.
 ExpandoBridge getExpandoBridge()
          Returns the expando bridge for this model instance.
 long getGroupId()
          Returns the group ID of this resource block.
 Map<String,Object> getModelAttributes()
           
 Class<?> getModelClass()
           
 String getModelClassName()
           
 String getName()
          Returns the name of this resource block.
 long getOriginalCompanyId()
           
 long getOriginalGroupId()
           
 String getOriginalName()
           
 String getOriginalPermissionsHash()
           
 String getPermissionsHash()
          Returns the permissions hash of this resource block.
 long getPrimaryKey()
          Returns the primary key of this resource block.
 Serializable getPrimaryKeyObj()
          Returns the primary key of this model instance.
 long getReferenceCount()
          Returns the reference count of this resource block.
 long getResourceBlockId()
          Returns the resource block ID of this resource block.
 int hashCode()
           
 void resetOriginalValues()
          Reset all original fields to current values.
 void setCompanyId(long companyId)
          Sets the company ID of this resource block.
 void setExpandoBridgeAttributes(ServiceContext serviceContext)
          Sets the expando bridge attributes for this model instance to the attributes stored in the service context.
 void setGroupId(long groupId)
          Sets the group ID of this resource block.
 void setModelAttributes(Map<String,Object> attributes)
           
 void setName(String name)
          Sets the name of this resource block.
 void setPermissionsHash(String permissionsHash)
          Sets the permissions hash of this resource block.
 void setPrimaryKey(long primaryKey)
          Sets the primary key of this resource block.
 void setPrimaryKeyObj(Serializable primaryKeyObj)
          Sets the primary key of this model instance.
 void setReferenceCount(long referenceCount)
          Sets the reference count of this resource block.
 void setResourceBlockId(long resourceBlockId)
          Sets the resource block ID of this resource block.
 CacheModel<ResourceBlock> toCacheModel()
          Returns a cache model object for this entity used by entity cache.
 ResourceBlock toEscapedModel()
          Returns a copy of this entity as an escaped model instance by wrapping it with an AutoEscapeBeanHandler.
static ResourceBlock toModel(ResourceBlockSoap soapModel)
          Converts the soap model instance into a normal model instance.
static List<ResourceBlock> toModels(ResourceBlockSoap[] soapModels)
          Converts the soap model instances into normal model instances.
 String toString()
           
 ResourceBlock toUnescapedModel()
           
 String toXmlString()
          Returns the XML representation of this model instance.
 
Methods inherited from class com.liferay.portal.model.impl.BaseModelImpl
getLocale, isCachedModel, isEscapedModel, isNew, setCachedModel, setNew
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface com.liferay.portal.model.ResourceBlockModel
isCachedModel, isEscapedModel, isNew, setCachedModel, setNew
 

Field Detail

TABLE_NAME

public static final String TABLE_NAME
See Also:
Constant Field Values

TABLE_COLUMNS

public static final Object[][] TABLE_COLUMNS

TABLE_SQL_CREATE

public static final String TABLE_SQL_CREATE
See Also:
Constant Field Values

TABLE_SQL_DROP

public static final String TABLE_SQL_DROP
See Also:
Constant Field Values

DATA_SOURCE

public static final String DATA_SOURCE
See Also:
Constant Field Values

SESSION_FACTORY

public static final String SESSION_FACTORY
See Also:
Constant Field Values

TX_MANAGER

public static final String TX_MANAGER
See Also:
Constant Field Values

ENTITY_CACHE_ENABLED

public static final boolean ENTITY_CACHE_ENABLED

FINDER_CACHE_ENABLED

public static final boolean FINDER_CACHE_ENABLED

COLUMN_BITMASK_ENABLED

public static final boolean COLUMN_BITMASK_ENABLED

COMPANYID_COLUMN_BITMASK

public static long COMPANYID_COLUMN_BITMASK

GROUPID_COLUMN_BITMASK

public static long GROUPID_COLUMN_BITMASK

NAME_COLUMN_BITMASK

public static long NAME_COLUMN_BITMASK

PERMISSIONSHASH_COLUMN_BITMASK

public static long PERMISSIONSHASH_COLUMN_BITMASK

LOCK_EXPIRATION_TIME

public static final long LOCK_EXPIRATION_TIME
Constructor Detail

ResourceBlockModelImpl

public ResourceBlockModelImpl()
Method Detail

toModel

public static ResourceBlock toModel(ResourceBlockSoap soapModel)
Converts the soap model instance into a normal model instance.

Parameters:
soapModel - the soap model instance to convert
Returns:
the normal model instance

toModels

public static List<ResourceBlock> toModels(ResourceBlockSoap[] soapModels)
Converts the soap model instances into normal model instances.

Parameters:
soapModels - the soap model instances to convert
Returns:
the normal model instances

getPrimaryKey

public long getPrimaryKey()
Description copied from interface: ResourceBlockModel
Returns the primary key of this resource block.

Specified by:
getPrimaryKey in interface ResourceBlockModel
Returns:
the primary key of this resource block

setPrimaryKey

public void setPrimaryKey(long primaryKey)
Description copied from interface: ResourceBlockModel
Sets the primary key of this resource block.

Specified by:
setPrimaryKey in interface ResourceBlockModel
Parameters:
primaryKey - the primary key of this resource block

getPrimaryKeyObj

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

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

setPrimaryKeyObj

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

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

getModelClass

public Class<?> getModelClass()
Specified by:
getModelClass in interface ClassedModel

getModelClassName

public String getModelClassName()
Specified by:
getModelClassName in interface ClassedModel

getModelAttributes

public Map<String,Object> getModelAttributes()
Specified by:
getModelAttributes in interface BaseModel<ResourceBlock>
Overrides:
getModelAttributes in class BaseModelImpl<ResourceBlock>

setModelAttributes

public void setModelAttributes(Map<String,Object> attributes)
Specified by:
setModelAttributes in interface BaseModel<ResourceBlock>
Overrides:
setModelAttributes in class BaseModelImpl<ResourceBlock>

getResourceBlockId

@JSON
public long getResourceBlockId()
Description copied from interface: ResourceBlockModel
Returns the resource block ID of this resource block.

Specified by:
getResourceBlockId in interface ResourceBlockModel
Returns:
the resource block ID of this resource block

setResourceBlockId

public void setResourceBlockId(long resourceBlockId)
Description copied from interface: ResourceBlockModel
Sets the resource block ID of this resource block.

Specified by:
setResourceBlockId in interface ResourceBlockModel
Parameters:
resourceBlockId - the resource block ID of this resource block

getCompanyId

@JSON
public long getCompanyId()
Description copied from interface: ResourceBlockModel
Returns the company ID of this resource block.

Specified by:
getCompanyId in interface ResourceBlockModel
Returns:
the company ID of this resource block

setCompanyId

public void setCompanyId(long companyId)
Description copied from interface: ResourceBlockModel
Sets the company ID of this resource block.

Specified by:
setCompanyId in interface ResourceBlockModel
Parameters:
companyId - the company ID of this resource block

getOriginalCompanyId

public long getOriginalCompanyId()

getGroupId

@JSON
public long getGroupId()
Description copied from interface: ResourceBlockModel
Returns the group ID of this resource block.

Specified by:
getGroupId in interface ResourceBlockModel
Returns:
the group ID of this resource block

setGroupId

public void setGroupId(long groupId)
Description copied from interface: ResourceBlockModel
Sets the group ID of this resource block.

Specified by:
setGroupId in interface ResourceBlockModel
Parameters:
groupId - the group ID of this resource block

getOriginalGroupId

public long getOriginalGroupId()

getName

@JSON
public String getName()
Description copied from interface: ResourceBlockModel
Returns the name of this resource block.

Specified by:
getName in interface ResourceBlockModel
Returns:
the name of this resource block

setName

public void setName(String name)
Description copied from interface: ResourceBlockModel
Sets the name of this resource block.

Specified by:
setName in interface ResourceBlockModel
Parameters:
name - the name of this resource block

getOriginalName

public String getOriginalName()

getPermissionsHash

@JSON
public String getPermissionsHash()
Description copied from interface: ResourceBlockModel
Returns the permissions hash of this resource block.

Specified by:
getPermissionsHash in interface ResourceBlockModel
Returns:
the permissions hash of this resource block

setPermissionsHash

public void setPermissionsHash(String permissionsHash)
Description copied from interface: ResourceBlockModel
Sets the permissions hash of this resource block.

Specified by:
setPermissionsHash in interface ResourceBlockModel
Parameters:
permissionsHash - the permissions hash of this resource block

getOriginalPermissionsHash

public String getOriginalPermissionsHash()

getReferenceCount

@JSON
public long getReferenceCount()
Description copied from interface: ResourceBlockModel
Returns the reference count of this resource block.

Specified by:
getReferenceCount in interface ResourceBlockModel
Returns:
the reference count of this resource block

setReferenceCount

public void setReferenceCount(long referenceCount)
Description copied from interface: ResourceBlockModel
Sets the reference count of this resource block.

Specified by:
setReferenceCount in interface ResourceBlockModel
Parameters:
referenceCount - the reference count of this resource block

getColumnBitmask

public long getColumnBitmask()

getExpandoBridge

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

Specified by:
getExpandoBridge in interface BaseModel<ResourceBlock>
Specified by:
getExpandoBridge in interface ClassedModel
Specified by:
getExpandoBridge in interface ResourceBlockModel
Overrides:
getExpandoBridge in class BaseModelImpl<ResourceBlock>
Returns:
the expando bridge for this model instance

setExpandoBridgeAttributes

public 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<ResourceBlock>
Specified by:
setExpandoBridgeAttributes in interface ResourceBlockModel
Overrides:
setExpandoBridgeAttributes in class BaseModelImpl<ResourceBlock>
Parameters:
serviceContext - the service context
See Also:
ServiceContext.getExpandoBridgeAttributes( )

toEscapedModel

public ResourceBlock 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<ResourceBlock>
Specified by:
toEscapedModel in interface ResourceBlockModel
Overrides:
toEscapedModel in class BaseModelImpl<ResourceBlock>
Returns:
the escaped model instance
See Also:
AutoEscapeBeanHandler

toUnescapedModel

public ResourceBlock toUnescapedModel()
Specified by:
toUnescapedModel in interface BaseModel<ResourceBlock>
Specified by:
toUnescapedModel in interface ResourceBlockModel
Overrides:
toUnescapedModel in class BaseModelImpl<ResourceBlock>

clone

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

Specified by:
clone in interface BaseModel<ResourceBlock>
Specified by:
clone in interface ResourceBlockModel
Specified by:
clone in class BaseModelImpl<ResourceBlock>
Returns:
the shallow clone of this model instance

compareTo

public int compareTo(ResourceBlock resourceBlock)
Specified by:
compareTo in interface ResourceBlockModel
Specified by:
compareTo in interface Comparable<ResourceBlock>

equals

public boolean equals(Object obj)
Overrides:
equals in class Object

hashCode

public int hashCode()
Specified by:
hashCode in interface ResourceBlockModel
Overrides:
hashCode in class Object

resetOriginalValues

public void resetOriginalValues()
Description copied from interface: BaseModel
Reset all original fields to current values.

Specified by:
resetOriginalValues in interface BaseModel<ResourceBlock>
Overrides:
resetOriginalValues in class BaseModelImpl<ResourceBlock>

toCacheModel

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

Specified by:
toCacheModel in interface BaseModel<ResourceBlock>
Specified by:
toCacheModel in interface ResourceBlockModel
Overrides:
toCacheModel in class BaseModelImpl<ResourceBlock>
Returns:
the cache model object

toString

public String toString()
Specified by:
toString in interface ResourceBlockModel
Overrides:
toString in class Object

toXmlString

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

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

Liferay 6.1.2-ce-ga3