Liferay 6.2-ce-ga5

com.liferay.portlet.journal.model.impl
Class JournalContentSearchModelImpl

java.lang.Object
  extended by com.liferay.portal.model.impl.BaseModelImpl<JournalContentSearch>
      extended by com.liferay.portlet.journal.model.impl.JournalContentSearchModelImpl
All Implemented Interfaces:
BaseModel<JournalContentSearch>, ClassedModel, JournalContentSearchModel, Serializable, Cloneable, Comparable<JournalContentSearch>
Direct Known Subclasses:
JournalContentSearchBaseImpl

public class JournalContentSearchModelImpl
extends BaseModelImpl<JournalContentSearch>
implements JournalContentSearchModel

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

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

See Also:
JournalContentSearchImpl, JournalContentSearch, JournalContentSearchModel, Serialized Form
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time it is generated.

Field Summary
static long ARTICLEID_COLUMN_BITMASK
           
static boolean COLUMN_BITMASK_ENABLED
           
static long CONTENTSEARCHID_COLUMN_BITMASK
           
static String DATA_SOURCE
           
static boolean ENTITY_CACHE_ENABLED
           
static boolean FINDER_CACHE_ENABLED
           
static long GROUPID_COLUMN_BITMASK
           
static long LAYOUTID_COLUMN_BITMASK
           
static long LOCK_EXPIRATION_TIME
           
static String ORDER_BY_JPQL
           
static String ORDER_BY_SQL
           
static long PORTLETID_COLUMN_BITMASK
           
static long PRIVATELAYOUT_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
JournalContentSearchModelImpl()
           
 
Method Summary
 Object clone()
          Creates a shallow clone of this model instance.
 int compareTo(JournalContentSearch journalContentSearch)
           
 boolean equals(Object obj)
           
 String getArticleId()
          Returns the article ID of this journal content search.
 long getColumnBitmask()
           
 long getCompanyId()
          Returns the company ID of this journal content search.
 long getContentSearchId()
          Returns the content search ID of this journal content search.
 ExpandoBridge getExpandoBridge()
          Returns the expando bridge for this model instance.
 long getGroupId()
          Returns the group ID of this journal content search.
 long getLayoutId()
          Returns the layout ID of this journal content search.
 Map<String,Object> getModelAttributes()
           
 Class<?> getModelClass()
           
 String getModelClassName()
           
 String getOriginalArticleId()
           
 long getOriginalGroupId()
           
 long getOriginalLayoutId()
           
 String getOriginalPortletId()
           
 boolean getOriginalPrivateLayout()
           
 String getPortletId()
          Returns the portlet ID of this journal content search.
 long getPrimaryKey()
          Returns the primary key of this journal content search.
 Serializable getPrimaryKeyObj()
          Returns the primary key of this model instance.
 boolean getPrivateLayout()
          Returns the private layout of this journal content search.
 int hashCode()
           
 boolean isPrivateLayout()
          Returns true if this journal content search is private layout.
 void resetOriginalValues()
          Reset all original fields to current values.
 void setArticleId(String articleId)
          Sets the article ID of this journal content search.
 void setCompanyId(long companyId)
          Sets the company ID of this journal content search.
 void setContentSearchId(long contentSearchId)
          Sets the content search ID of this journal content search.
 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 journal content search.
 void setLayoutId(long layoutId)
          Sets the layout ID of this journal content search.
 void setModelAttributes(Map<String,Object> attributes)
           
 void setPortletId(String portletId)
          Sets the portlet ID of this journal content search.
 void setPrimaryKey(long primaryKey)
          Sets the primary key of this journal content search.
 void setPrimaryKeyObj(Serializable primaryKeyObj)
          Sets the primary key of this model instance.
 void setPrivateLayout(boolean privateLayout)
          Sets whether this journal content search is private layout.
 CacheModel<JournalContentSearch> toCacheModel()
          Returns a cache model object for this entity used by entity cache.
 JournalContentSearch toEscapedModel()
          Returns a copy of this entity as an escaped model instance by wrapping it with an AutoEscapeBeanHandler.
 String toString()
           
 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, setExpandoBridgeAttributes, setExpandoBridgeAttributes, setNew, toUnescapedModel
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface com.liferay.portlet.journal.model.JournalContentSearchModel
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_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

ARTICLEID_COLUMN_BITMASK

public static long ARTICLEID_COLUMN_BITMASK

GROUPID_COLUMN_BITMASK

public static long GROUPID_COLUMN_BITMASK

LAYOUTID_COLUMN_BITMASK

public static long LAYOUTID_COLUMN_BITMASK

PORTLETID_COLUMN_BITMASK

public static long PORTLETID_COLUMN_BITMASK

PRIVATELAYOUT_COLUMN_BITMASK

public static long PRIVATELAYOUT_COLUMN_BITMASK

CONTENTSEARCHID_COLUMN_BITMASK

public static long CONTENTSEARCHID_COLUMN_BITMASK

LOCK_EXPIRATION_TIME

public static final long LOCK_EXPIRATION_TIME
Constructor Detail

JournalContentSearchModelImpl

public JournalContentSearchModelImpl()
Method Detail

getPrimaryKey

public long getPrimaryKey()
Description copied from interface: JournalContentSearchModel
Returns the primary key of this journal content search.

Specified by:
getPrimaryKey in interface JournalContentSearchModel
Returns:
the primary key of this journal content search

setPrimaryKey

public void setPrimaryKey(long primaryKey)
Description copied from interface: JournalContentSearchModel
Sets the primary key of this journal content search.

Specified by:
setPrimaryKey in interface JournalContentSearchModel
Parameters:
primaryKey - the primary key of this journal content search

getPrimaryKeyObj

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

Specified by:
getPrimaryKeyObj in interface BaseModel<JournalContentSearch>
Specified by:
getPrimaryKeyObj in interface ClassedModel
Specified by:
getPrimaryKeyObj in interface JournalContentSearchModel
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<JournalContentSearch>
Specified by:
setPrimaryKeyObj in interface ClassedModel
Specified by:
setPrimaryKeyObj in interface JournalContentSearchModel
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<JournalContentSearch>
Overrides:
getModelAttributes in class BaseModelImpl<JournalContentSearch>

setModelAttributes

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

getContentSearchId

public long getContentSearchId()
Description copied from interface: JournalContentSearchModel
Returns the content search ID of this journal content search.

Specified by:
getContentSearchId in interface JournalContentSearchModel
Returns:
the content search ID of this journal content search

setContentSearchId

public void setContentSearchId(long contentSearchId)
Description copied from interface: JournalContentSearchModel
Sets the content search ID of this journal content search.

Specified by:
setContentSearchId in interface JournalContentSearchModel
Parameters:
contentSearchId - the content search ID of this journal content search

getGroupId

public long getGroupId()
Description copied from interface: JournalContentSearchModel
Returns the group ID of this journal content search.

Specified by:
getGroupId in interface JournalContentSearchModel
Returns:
the group ID of this journal content search

setGroupId

public void setGroupId(long groupId)
Description copied from interface: JournalContentSearchModel
Sets the group ID of this journal content search.

Specified by:
setGroupId in interface JournalContentSearchModel
Parameters:
groupId - the group ID of this journal content search

getOriginalGroupId

public long getOriginalGroupId()

getCompanyId

public long getCompanyId()
Description copied from interface: JournalContentSearchModel
Returns the company ID of this journal content search.

Specified by:
getCompanyId in interface JournalContentSearchModel
Returns:
the company ID of this journal content search

setCompanyId

public void setCompanyId(long companyId)
Description copied from interface: JournalContentSearchModel
Sets the company ID of this journal content search.

Specified by:
setCompanyId in interface JournalContentSearchModel
Parameters:
companyId - the company ID of this journal content search

getPrivateLayout

public boolean getPrivateLayout()
Description copied from interface: JournalContentSearchModel
Returns the private layout of this journal content search.

Specified by:
getPrivateLayout in interface JournalContentSearchModel
Returns:
the private layout of this journal content search

isPrivateLayout

public boolean isPrivateLayout()
Description copied from interface: JournalContentSearchModel
Returns true if this journal content search is private layout.

Specified by:
isPrivateLayout in interface JournalContentSearchModel
Returns:
true if this journal content search is private layout; false otherwise

setPrivateLayout

public void setPrivateLayout(boolean privateLayout)
Description copied from interface: JournalContentSearchModel
Sets whether this journal content search is private layout.

Specified by:
setPrivateLayout in interface JournalContentSearchModel
Parameters:
privateLayout - the private layout of this journal content search

getOriginalPrivateLayout

public boolean getOriginalPrivateLayout()

getLayoutId

public long getLayoutId()
Description copied from interface: JournalContentSearchModel
Returns the layout ID of this journal content search.

Specified by:
getLayoutId in interface JournalContentSearchModel
Returns:
the layout ID of this journal content search

setLayoutId

public void setLayoutId(long layoutId)
Description copied from interface: JournalContentSearchModel
Sets the layout ID of this journal content search.

Specified by:
setLayoutId in interface JournalContentSearchModel
Parameters:
layoutId - the layout ID of this journal content search

getOriginalLayoutId

public long getOriginalLayoutId()

getPortletId

public String getPortletId()
Description copied from interface: JournalContentSearchModel
Returns the portlet ID of this journal content search.

Specified by:
getPortletId in interface JournalContentSearchModel
Returns:
the portlet ID of this journal content search

setPortletId

public void setPortletId(String portletId)
Description copied from interface: JournalContentSearchModel
Sets the portlet ID of this journal content search.

Specified by:
setPortletId in interface JournalContentSearchModel
Parameters:
portletId - the portlet ID of this journal content search

getOriginalPortletId

public String getOriginalPortletId()

getArticleId

public String getArticleId()
Description copied from interface: JournalContentSearchModel
Returns the article ID of this journal content search.

Specified by:
getArticleId in interface JournalContentSearchModel
Returns:
the article ID of this journal content search

setArticleId

public void setArticleId(String articleId)
Description copied from interface: JournalContentSearchModel
Sets the article ID of this journal content search.

Specified by:
setArticleId in interface JournalContentSearchModel
Parameters:
articleId - the article ID of this journal content search

getOriginalArticleId

public String getOriginalArticleId()

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<JournalContentSearch>
Specified by:
getExpandoBridge in interface ClassedModel
Specified by:
getExpandoBridge in interface JournalContentSearchModel
Overrides:
getExpandoBridge in class BaseModelImpl<JournalContentSearch>
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<JournalContentSearch>
Specified by:
setExpandoBridgeAttributes in interface JournalContentSearchModel
Overrides:
setExpandoBridgeAttributes in class BaseModelImpl<JournalContentSearch>
Parameters:
serviceContext - the service context to be applied
See Also:
ServiceContext.getExpandoBridgeAttributes( )

toEscapedModel

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

clone

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

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

compareTo

public int compareTo(JournalContentSearch journalContentSearch)
Specified by:
compareTo in interface JournalContentSearchModel
Specified by:
compareTo in interface Comparable<JournalContentSearch>

equals

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

hashCode

public int hashCode()
Specified by:
hashCode in interface JournalContentSearchModel
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<JournalContentSearch>
Overrides:
resetOriginalValues in class BaseModelImpl<JournalContentSearch>

toCacheModel

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

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

toString

public String toString()
Specified by:
toString in interface JournalContentSearchModel
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<JournalContentSearch>
Specified by:
toXmlString in interface JournalContentSearchModel
Returns:
the XML representation of this model instance

Liferay 6.2-ce-ga5