com.liferay.portlet.expando.service.persistence
Interface ExpandoTablePersistence

All Superinterfaces:
BasePersistence

@Transactional(rollbackFor={com.liferay.portal.PortalException.class,com.liferay.portal.SystemException.class})
public interface ExpandoTablePersistence
extends BasePersistence

View Source

Author:
Brian Wing Shun Chan

Method Summary
 int countAll()
           
 int countByC_N(long classNameId, java.lang.String name)
           
 int countByClassNameId(long classNameId)
           
 ExpandoTable create(long tableId)
           
 ExpandoTable fetchByC_N(long classNameId, java.lang.String name)
           
 ExpandoTable fetchByPrimaryKey(long tableId)
           
 java.util.List<ExpandoTable> findAll()
           
 java.util.List<ExpandoTable> findAll(int start, int end)
           
 java.util.List<ExpandoTable> findAll(int start, int end, com.liferay.portal.kernel.util.OrderByComparator obc)
           
 ExpandoTable findByC_N(long classNameId, java.lang.String name)
           
 ExpandoTable findByClassNameId_First(long classNameId, com.liferay.portal.kernel.util.OrderByComparator obc)
           
 ExpandoTable findByClassNameId_Last(long classNameId, com.liferay.portal.kernel.util.OrderByComparator obc)
           
 ExpandoTable[] findByClassNameId_PrevAndNext(long tableId, long classNameId, com.liferay.portal.kernel.util.OrderByComparator obc)
           
 java.util.List<ExpandoTable> findByClassNameId(long classNameId)
           
 java.util.List<ExpandoTable> findByClassNameId(long classNameId, int start, int end)
           
 java.util.List<ExpandoTable> findByClassNameId(long classNameId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator obc)
           
 ExpandoTable findByPrimaryKey(long tableId)
           
 java.util.List<java.lang.Object> findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
           
 java.util.List<java.lang.Object> findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, int end)
           
 ExpandoTable remove(ExpandoTable expandoTable)
           
 ExpandoTable remove(long tableId)
           
 void removeAll()
           
 void removeByC_N(long classNameId, java.lang.String name)
           
 void removeByClassNameId(long classNameId)
           
 ExpandoTable update(ExpandoTable expandoTable)
          Deprecated. Use update(ExpandoTable expandoTable, boolean merge).
 ExpandoTable update(ExpandoTable expandoTable, boolean merge)
          Add, update, or merge, the entity.
 ExpandoTable updateImpl(ExpandoTable expandoTable, boolean merge)
           
 
Methods inherited from interface com.liferay.portal.service.persistence.BasePersistence
getListeners, registerListener, unregisterListener
 

Method Detail

create

ExpandoTable create(long tableId)

remove

ExpandoTable remove(long tableId)
                    throws com.liferay.portal.SystemException,
                           NoSuchTableException
Throws:
com.liferay.portal.SystemException
NoSuchTableException

remove

ExpandoTable remove(ExpandoTable expandoTable)
                    throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

update

ExpandoTable update(ExpandoTable expandoTable)
                    throws com.liferay.portal.SystemException
Deprecated. Use update(ExpandoTable expandoTable, boolean merge).

Throws:
com.liferay.portal.SystemException

update

ExpandoTable update(ExpandoTable expandoTable,
                    boolean merge)
                    throws com.liferay.portal.SystemException
Add, update, or merge, the entity. This method also calls the model listeners to trigger the proper events associated with adding, deleting, or updating an entity.

Parameters:
expandoTable - the entity to add, update, or merge
merge - boolean value for whether to merge the entity. The default value is false. Setting merge to true is more expensive and should only be true when expandoTable is transient. See LEP-5473 for a detailed discussion of this method.
Returns:
true if the portlet can be displayed via Ajax
Throws:
com.liferay.portal.SystemException

updateImpl

ExpandoTable updateImpl(ExpandoTable expandoTable,
                        boolean merge)
                        throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

findByPrimaryKey

@Transactional(propagation=SUPPORTS,
               readOnly=true)
ExpandoTable findByPrimaryKey(long tableId)
                              throws com.liferay.portal.SystemException,
                                     NoSuchTableException
Throws:
com.liferay.portal.SystemException
NoSuchTableException

fetchByPrimaryKey

ExpandoTable fetchByPrimaryKey(long tableId)
                               throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

findByClassNameId

@Transactional(propagation=SUPPORTS,
               readOnly=true)
java.util.List<ExpandoTable> findByClassNameId(long classNameId)
                                               throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

findByClassNameId

@Transactional(propagation=SUPPORTS,
               readOnly=true)
java.util.List<ExpandoTable> findByClassNameId(long classNameId,
                                                             int start,
                                                             int end)
                                               throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

findByClassNameId

@Transactional(propagation=SUPPORTS,
               readOnly=true)
java.util.List<ExpandoTable> findByClassNameId(long classNameId,
                                                             int start,
                                                             int end,
                                                             com.liferay.portal.kernel.util.OrderByComparator obc)
                                               throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

findByClassNameId_First

@Transactional(propagation=SUPPORTS,
               readOnly=true)
ExpandoTable findByClassNameId_First(long classNameId,
                                                   com.liferay.portal.kernel.util.OrderByComparator obc)
                                     throws com.liferay.portal.SystemException,
                                            NoSuchTableException
Throws:
com.liferay.portal.SystemException
NoSuchTableException

findByClassNameId_Last

@Transactional(propagation=SUPPORTS,
               readOnly=true)
ExpandoTable findByClassNameId_Last(long classNameId,
                                                  com.liferay.portal.kernel.util.OrderByComparator obc)
                                    throws com.liferay.portal.SystemException,
                                           NoSuchTableException
Throws:
com.liferay.portal.SystemException
NoSuchTableException

findByClassNameId_PrevAndNext

@Transactional(propagation=SUPPORTS,
               readOnly=true)
ExpandoTable[] findByClassNameId_PrevAndNext(long tableId,
                                                           long classNameId,
                                                           com.liferay.portal.kernel.util.OrderByComparator obc)
                                             throws com.liferay.portal.SystemException,
                                                    NoSuchTableException
Throws:
com.liferay.portal.SystemException
NoSuchTableException

findByC_N

@Transactional(propagation=SUPPORTS,
               readOnly=true)
ExpandoTable findByC_N(long classNameId,
                                     java.lang.String name)
                       throws com.liferay.portal.SystemException,
                              NoSuchTableException
Throws:
com.liferay.portal.SystemException
NoSuchTableException

fetchByC_N

ExpandoTable fetchByC_N(long classNameId,
                        java.lang.String name)
                        throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

findWithDynamicQuery

@Transactional(propagation=SUPPORTS,
               readOnly=true)
java.util.List<java.lang.Object> findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery)
                                                      throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

findWithDynamicQuery

@Transactional(propagation=SUPPORTS,
               readOnly=true)
java.util.List<java.lang.Object> findWithDynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery,
                                                                    int start,
                                                                    int end)
                                                      throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

findAll

@Transactional(propagation=SUPPORTS,
               readOnly=true)
java.util.List<ExpandoTable> findAll()
                                     throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

findAll

@Transactional(propagation=SUPPORTS,
               readOnly=true)
java.util.List<ExpandoTable> findAll(int start,
                                                   int end)
                                     throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

findAll

@Transactional(propagation=SUPPORTS,
               readOnly=true)
java.util.List<ExpandoTable> findAll(int start,
                                                   int end,
                                                   com.liferay.portal.kernel.util.OrderByComparator obc)
                                     throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

removeByClassNameId

void removeByClassNameId(long classNameId)
                         throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

removeByC_N

void removeByC_N(long classNameId,
                 java.lang.String name)
                 throws com.liferay.portal.SystemException,
                        NoSuchTableException
Throws:
com.liferay.portal.SystemException
NoSuchTableException

removeAll

void removeAll()
               throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

countByClassNameId

@Transactional(propagation=SUPPORTS,
               readOnly=true)
int countByClassNameId(long classNameId)
                       throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

countByC_N

@Transactional(propagation=SUPPORTS,
               readOnly=true)
int countByC_N(long classNameId,
                             java.lang.String name)
               throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

countAll

@Transactional(propagation=SUPPORTS,
               readOnly=true)
int countAll()
             throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException