Liferay 7.0-ga1 portal-impl

com.liferay.portal.model.impl
Class ResourceBlockModelImpl

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

@JSON(strict=true)
@ProviderType
public class ResourceBlockModelImpl
extends com.liferay.portal.kernel.model.impl.BaseModelImpl<com.liferay.portal.kernel.model.ResourceBlock>
implements com.liferay.portal.kernel.model.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
{$generated.description}

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 String ORDER_BY_JPQL
           
static String ORDER_BY_SQL
           
static long PERMISSIONSHASH_COLUMN_BITMASK
           
static long RESOURCEBLOCKID_COLUMN_BITMASK
           
static String SESSION_FACTORY
           
static Object[][] TABLE_COLUMNS
           
static Map<String,Integer> TABLE_COLUMNS_MAP
           
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()
           
 int compareTo(com.liferay.portal.kernel.model.ResourceBlock resourceBlock)
           
 boolean equals(Object obj)
           
 long getColumnBitmask()
           
 long getCompanyId()
           
 com.liferay.expando.kernel.model.ExpandoBridge getExpandoBridge()
           
 long getGroupId()
           
 Map<String,Object> getModelAttributes()
           
 Class<?> getModelClass()
           
 String getModelClassName()
           
 long getMvccVersion()
           
 String getName()
           
 long getOriginalCompanyId()
           
 long getOriginalGroupId()
           
 String getOriginalName()
           
 String getOriginalPermissionsHash()
           
 String getPermissionsHash()
           
 long getPrimaryKey()
           
 Serializable getPrimaryKeyObj()
           
 long getReferenceCount()
           
 long getResourceBlockId()
           
 int hashCode()
           
 boolean isEntityCacheEnabled()
           
 boolean isFinderCacheEnabled()
           
 void resetOriginalValues()
           
 void setCompanyId(long companyId)
           
 void setExpandoBridgeAttributes(com.liferay.portal.kernel.service.ServiceContext serviceContext)
           
 void setGroupId(long groupId)
           
 void setModelAttributes(Map<String,Object> attributes)
           
 void setMvccVersion(long mvccVersion)
           
 void setName(String name)
           
 void setPermissionsHash(String permissionsHash)
           
 void setPrimaryKey(long primaryKey)
           
 void setPrimaryKeyObj(Serializable primaryKeyObj)
           
 void setReferenceCount(long referenceCount)
           
 void setResourceBlockId(long resourceBlockId)
           
 com.liferay.portal.kernel.model.CacheModel<com.liferay.portal.kernel.model.ResourceBlock> toCacheModel()
           
 com.liferay.portal.kernel.model.ResourceBlock toEscapedModel()
           
static com.liferay.portal.kernel.model.ResourceBlock toModel(com.liferay.portal.kernel.model.ResourceBlockSoap soapModel)
          Converts the soap model instance into a normal model instance.
static List<com.liferay.portal.kernel.model.ResourceBlock> toModels(com.liferay.portal.kernel.model.ResourceBlockSoap[] soapModels)
          Converts the soap model instances into normal model instances.
 String toString()
           
 String toXmlString()
           
 
Methods inherited from class com.liferay.portal.kernel.model.impl.BaseModelImpl
getLocale, isCachedModel, isEscapedModel, isNew, setCachedModel, setExpandoBridgeAttributes, setExpandoBridgeAttributes, setNew, toUnescapedModel
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface com.liferay.portal.kernel.model.ResourceBlockModel
isCachedModel, isEscapedModel, isNew, setCachedModel, setExpandoBridgeAttributes, setExpandoBridgeAttributes, setNew, toUnescapedModel
 

Field Detail

TABLE_NAME

public static final String TABLE_NAME
See Also:
Constant Field Values

TABLE_COLUMNS

public static final Object[][] TABLE_COLUMNS

TABLE_COLUMNS_MAP

public static final Map<String,Integer> TABLE_COLUMNS_MAP

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

ORDER_BY_JPQL

public static final String ORDER_BY_JPQL
See Also:
Constant Field Values

ORDER_BY_SQL

public static final String ORDER_BY_SQL
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 final long COMPANYID_COLUMN_BITMASK
See Also:
Constant Field Values

GROUPID_COLUMN_BITMASK

public static final long GROUPID_COLUMN_BITMASK
See Also:
Constant Field Values

NAME_COLUMN_BITMASK

public static final long NAME_COLUMN_BITMASK
See Also:
Constant Field Values

PERMISSIONSHASH_COLUMN_BITMASK

public static final long PERMISSIONSHASH_COLUMN_BITMASK
See Also:
Constant Field Values

RESOURCEBLOCKID_COLUMN_BITMASK

public static final long RESOURCEBLOCKID_COLUMN_BITMASK
See Also:
Constant Field Values

LOCK_EXPIRATION_TIME

public static final long LOCK_EXPIRATION_TIME
Constructor Detail

ResourceBlockModelImpl

public ResourceBlockModelImpl()
Method Detail

toModel

public static com.liferay.portal.kernel.model.ResourceBlock toModel(com.liferay.portal.kernel.model.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<com.liferay.portal.kernel.model.ResourceBlock> toModels(com.liferay.portal.kernel.model.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()
Specified by:
getPrimaryKey in interface com.liferay.portal.kernel.model.ResourceBlockModel

setPrimaryKey

public void setPrimaryKey(long primaryKey)
Specified by:
setPrimaryKey in interface com.liferay.portal.kernel.model.ResourceBlockModel

getPrimaryKeyObj

public Serializable getPrimaryKeyObj()
Specified by:
getPrimaryKeyObj in interface com.liferay.portal.kernel.model.BaseModel<com.liferay.portal.kernel.model.ResourceBlock>
Specified by:
getPrimaryKeyObj in interface com.liferay.portal.kernel.model.ClassedModel
Specified by:
getPrimaryKeyObj in interface com.liferay.portal.kernel.model.ResourceBlockModel

setPrimaryKeyObj

public void setPrimaryKeyObj(Serializable primaryKeyObj)
Specified by:
setPrimaryKeyObj in interface com.liferay.portal.kernel.model.BaseModel<com.liferay.portal.kernel.model.ResourceBlock>
Specified by:
setPrimaryKeyObj in interface com.liferay.portal.kernel.model.ClassedModel
Specified by:
setPrimaryKeyObj in interface com.liferay.portal.kernel.model.ResourceBlockModel

getModelClass

public Class<?> getModelClass()
Specified by:
getModelClass in interface com.liferay.portal.kernel.model.ClassedModel

getModelClassName

public String getModelClassName()
Specified by:
getModelClassName in interface com.liferay.portal.kernel.model.ClassedModel

getModelAttributes

public Map<String,Object> getModelAttributes()
Specified by:
getModelAttributes in interface com.liferay.portal.kernel.model.BaseModel<com.liferay.portal.kernel.model.ResourceBlock>
Overrides:
getModelAttributes in class com.liferay.portal.kernel.model.impl.BaseModelImpl<com.liferay.portal.kernel.model.ResourceBlock>

setModelAttributes

public void setModelAttributes(Map<String,Object> attributes)
Specified by:
setModelAttributes in interface com.liferay.portal.kernel.model.BaseModel<com.liferay.portal.kernel.model.ResourceBlock>
Overrides:
setModelAttributes in class com.liferay.portal.kernel.model.impl.BaseModelImpl<com.liferay.portal.kernel.model.ResourceBlock>

getMvccVersion

@JSON
public long getMvccVersion()
Specified by:
getMvccVersion in interface com.liferay.portal.kernel.model.MVCCModel
Specified by:
getMvccVersion in interface com.liferay.portal.kernel.model.ResourceBlockModel

setMvccVersion

public void setMvccVersion(long mvccVersion)
Specified by:
setMvccVersion in interface com.liferay.portal.kernel.model.MVCCModel
Specified by:
setMvccVersion in interface com.liferay.portal.kernel.model.ResourceBlockModel

getResourceBlockId

@JSON
public long getResourceBlockId()
Specified by:
getResourceBlockId in interface com.liferay.portal.kernel.model.ResourceBlockModel

setResourceBlockId

public void setResourceBlockId(long resourceBlockId)
Specified by:
setResourceBlockId in interface com.liferay.portal.kernel.model.ResourceBlockModel

getCompanyId

@JSON
public long getCompanyId()
Specified by:
getCompanyId in interface com.liferay.portal.kernel.model.ResourceBlockModel
Specified by:
getCompanyId in interface com.liferay.portal.kernel.model.ShardedModel

setCompanyId

public void setCompanyId(long companyId)
Specified by:
setCompanyId in interface com.liferay.portal.kernel.model.ResourceBlockModel
Specified by:
setCompanyId in interface com.liferay.portal.kernel.model.ShardedModel

getOriginalCompanyId

public long getOriginalCompanyId()

getGroupId

@JSON
public long getGroupId()
Specified by:
getGroupId in interface com.liferay.portal.kernel.model.ResourceBlockModel

setGroupId

public void setGroupId(long groupId)
Specified by:
setGroupId in interface com.liferay.portal.kernel.model.ResourceBlockModel

getOriginalGroupId

public long getOriginalGroupId()

getName

@JSON
public String getName()
Specified by:
getName in interface com.liferay.portal.kernel.model.ResourceBlockModel

setName

public void setName(String name)
Specified by:
setName in interface com.liferay.portal.kernel.model.ResourceBlockModel

getOriginalName

public String getOriginalName()

getPermissionsHash

@JSON
public String getPermissionsHash()
Specified by:
getPermissionsHash in interface com.liferay.portal.kernel.model.ResourceBlockModel

setPermissionsHash

public void setPermissionsHash(String permissionsHash)
Specified by:
setPermissionsHash in interface com.liferay.portal.kernel.model.ResourceBlockModel

getOriginalPermissionsHash

public String getOriginalPermissionsHash()

getReferenceCount

@JSON
public long getReferenceCount()
Specified by:
getReferenceCount in interface com.liferay.portal.kernel.model.ResourceBlockModel

setReferenceCount

public void setReferenceCount(long referenceCount)
Specified by:
setReferenceCount in interface com.liferay.portal.kernel.model.ResourceBlockModel

getColumnBitmask

public long getColumnBitmask()

getExpandoBridge

public com.liferay.expando.kernel.model.ExpandoBridge getExpandoBridge()
Specified by:
getExpandoBridge in interface com.liferay.portal.kernel.model.BaseModel<com.liferay.portal.kernel.model.ResourceBlock>
Specified by:
getExpandoBridge in interface com.liferay.portal.kernel.model.ClassedModel
Specified by:
getExpandoBridge in interface com.liferay.portal.kernel.model.ResourceBlockModel
Overrides:
getExpandoBridge in class com.liferay.portal.kernel.model.impl.BaseModelImpl<com.liferay.portal.kernel.model.ResourceBlock>

setExpandoBridgeAttributes

public void setExpandoBridgeAttributes(com.liferay.portal.kernel.service.ServiceContext serviceContext)
Specified by:
setExpandoBridgeAttributes in interface com.liferay.portal.kernel.model.BaseModel<com.liferay.portal.kernel.model.ResourceBlock>
Specified by:
setExpandoBridgeAttributes in interface com.liferay.portal.kernel.model.ResourceBlockModel
Overrides:
setExpandoBridgeAttributes in class com.liferay.portal.kernel.model.impl.BaseModelImpl<com.liferay.portal.kernel.model.ResourceBlock>

toEscapedModel

public com.liferay.portal.kernel.model.ResourceBlock toEscapedModel()
Specified by:
toEscapedModel in interface com.liferay.portal.kernel.model.BaseModel<com.liferay.portal.kernel.model.ResourceBlock>
Specified by:
toEscapedModel in interface com.liferay.portal.kernel.model.ResourceBlockModel
Overrides:
toEscapedModel in class com.liferay.portal.kernel.model.impl.BaseModelImpl<com.liferay.portal.kernel.model.ResourceBlock>

clone

public Object clone()
Specified by:
clone in interface com.liferay.portal.kernel.model.BaseModel<com.liferay.portal.kernel.model.ResourceBlock>
Specified by:
clone in interface com.liferay.portal.kernel.model.ResourceBlockModel
Specified by:
clone in class com.liferay.portal.kernel.model.impl.BaseModelImpl<com.liferay.portal.kernel.model.ResourceBlock>

compareTo

public int compareTo(com.liferay.portal.kernel.model.ResourceBlock resourceBlock)
Specified by:
compareTo in interface com.liferay.portal.kernel.model.ResourceBlockModel
Specified by:
compareTo in interface Comparable<com.liferay.portal.kernel.model.ResourceBlock>

equals

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

hashCode

public int hashCode()
Specified by:
hashCode in interface com.liferay.portal.kernel.model.ResourceBlockModel
Overrides:
hashCode in class Object

isEntityCacheEnabled

public boolean isEntityCacheEnabled()
Specified by:
isEntityCacheEnabled in interface com.liferay.portal.kernel.model.BaseModel<com.liferay.portal.kernel.model.ResourceBlock>

isFinderCacheEnabled

public boolean isFinderCacheEnabled()
Specified by:
isFinderCacheEnabled in interface com.liferay.portal.kernel.model.BaseModel<com.liferay.portal.kernel.model.ResourceBlock>

resetOriginalValues

public void resetOriginalValues()
Specified by:
resetOriginalValues in interface com.liferay.portal.kernel.model.BaseModel<com.liferay.portal.kernel.model.ResourceBlock>
Overrides:
resetOriginalValues in class com.liferay.portal.kernel.model.impl.BaseModelImpl<com.liferay.portal.kernel.model.ResourceBlock>

toCacheModel

public com.liferay.portal.kernel.model.CacheModel<com.liferay.portal.kernel.model.ResourceBlock> toCacheModel()
Specified by:
toCacheModel in interface com.liferay.portal.kernel.model.BaseModel<com.liferay.portal.kernel.model.ResourceBlock>
Specified by:
toCacheModel in interface com.liferay.portal.kernel.model.ResourceBlockModel
Overrides:
toCacheModel in class com.liferay.portal.kernel.model.impl.BaseModelImpl<com.liferay.portal.kernel.model.ResourceBlock>

toString

public String toString()
Specified by:
toString in interface com.liferay.portal.kernel.model.ResourceBlockModel
Overrides:
toString in class Object

toXmlString

public String toXmlString()
Specified by:
toXmlString in interface com.liferay.portal.kernel.model.BaseModel<com.liferay.portal.kernel.model.ResourceBlock>
Specified by:
toXmlString in interface com.liferay.portal.kernel.model.ResourceBlockModel

Liferay 7.0-ga1 portal-impl