Liferay 6.1.2-ce-ga3

com.liferay.portlet.dynamicdatamapping.service.persistence
Interface DDMStructureLinkPersistence

All Superinterfaces:
BasePersistence<DDMStructureLink>

public interface DDMStructureLinkPersistence
extends BasePersistence<DDMStructureLink>

The persistence interface for the d d m structure link service.

Caching information and settings can be found in portal.properties

See Also:
DDMStructureLinkPersistenceImpl, DDMStructureLinkUtil

Method Summary
 void cacheResult(DDMStructureLink ddmStructureLink)
          Caches the d d m structure link in the entity cache if it is enabled.
 void cacheResult(List<DDMStructureLink> ddmStructureLinks)
          Caches the d d m structure links in the entity cache if it is enabled.
 int countAll()
          Returns the number of d d m structure links.
 int countByClassNameId(long classNameId)
          Returns the number of d d m structure links where classNameId = ?.
 int countByClassPK(long classPK)
          Returns the number of d d m structure links where classPK = ?.
 int countByStructureId(long structureId)
          Returns the number of d d m structure links where structureId = ?.
 DDMStructureLink create(long structureLinkId)
          Creates a new d d m structure link with the primary key.
 DDMStructureLink fetchByClassNameId_First(long classNameId, OrderByComparator orderByComparator)
          Returns the first d d m structure link in the ordered set where classNameId = ?.
 DDMStructureLink fetchByClassNameId_Last(long classNameId, OrderByComparator orderByComparator)
          Returns the last d d m structure link in the ordered set where classNameId = ?.
 DDMStructureLink fetchByClassPK(long classPK)
          Returns the d d m structure link where classPK = ? or returns null if it could not be found.
 DDMStructureLink fetchByClassPK(long classPK, boolean retrieveFromCache)
          Returns the d d m structure link where classPK = ? or returns null if it could not be found, optionally using the finder cache.
 DDMStructureLink fetchByPrimaryKey(long structureLinkId)
          Returns the d d m structure link with the primary key or returns null if it could not be found.
 DDMStructureLink fetchByStructureId_First(long structureId, OrderByComparator orderByComparator)
          Returns the first d d m structure link in the ordered set where structureId = ?.
 DDMStructureLink fetchByStructureId_Last(long structureId, OrderByComparator orderByComparator)
          Returns the last d d m structure link in the ordered set where structureId = ?.
 List<DDMStructureLink> findAll()
          Returns all the d d m structure links.
 List<DDMStructureLink> findAll(int start, int end)
          Returns a range of all the d d m structure links.
 List<DDMStructureLink> findAll(int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the d d m structure links.
 DDMStructureLink findByClassNameId_First(long classNameId, OrderByComparator orderByComparator)
          Returns the first d d m structure link in the ordered set where classNameId = ?.
 DDMStructureLink findByClassNameId_Last(long classNameId, OrderByComparator orderByComparator)
          Returns the last d d m structure link in the ordered set where classNameId = ?.
 DDMStructureLink[] findByClassNameId_PrevAndNext(long structureLinkId, long classNameId, OrderByComparator orderByComparator)
          Returns the d d m structure links before and after the current d d m structure link in the ordered set where classNameId = ?.
 List<DDMStructureLink> findByClassNameId(long classNameId)
          Returns all the d d m structure links where classNameId = ?.
 List<DDMStructureLink> findByClassNameId(long classNameId, int start, int end)
          Returns a range of all the d d m structure links where classNameId = ?.
 List<DDMStructureLink> findByClassNameId(long classNameId, int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the d d m structure links where classNameId = ?.
 DDMStructureLink findByClassPK(long classPK)
          Returns the d d m structure link where classPK = ? or throws a NoSuchStructureLinkException if it could not be found.
 DDMStructureLink findByPrimaryKey(long structureLinkId)
          Returns the d d m structure link with the primary key or throws a NoSuchStructureLinkException if it could not be found.
 DDMStructureLink findByStructureId_First(long structureId, OrderByComparator orderByComparator)
          Returns the first d d m structure link in the ordered set where structureId = ?.
 DDMStructureLink findByStructureId_Last(long structureId, OrderByComparator orderByComparator)
          Returns the last d d m structure link in the ordered set where structureId = ?.
 DDMStructureLink[] findByStructureId_PrevAndNext(long structureLinkId, long structureId, OrderByComparator orderByComparator)
          Returns the d d m structure links before and after the current d d m structure link in the ordered set where structureId = ?.
 List<DDMStructureLink> findByStructureId(long structureId)
          Returns all the d d m structure links where structureId = ?.
 List<DDMStructureLink> findByStructureId(long structureId, int start, int end)
          Returns a range of all the d d m structure links where structureId = ?.
 List<DDMStructureLink> findByStructureId(long structureId, int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the d d m structure links where structureId = ?.
 DDMStructureLink remove(long structureLinkId)
          Removes the d d m structure link with the primary key from the database.
 void removeAll()
          Removes all the d d m structure links from the database.
 void removeByClassNameId(long classNameId)
          Removes all the d d m structure links where classNameId = ? from the database.
 DDMStructureLink removeByClassPK(long classPK)
          Removes the d d m structure link where classPK = ? from the database.
 void removeByStructureId(long structureId)
          Removes all the d d m structure links where structureId = ? from the database.
 DDMStructureLink updateImpl(DDMStructureLink ddmStructureLink, boolean merge)
           
 
Methods inherited from interface com.liferay.portal.service.persistence.BasePersistence
clearCache, clearCache, clearCache, closeSession, countWithDynamicQuery, fetchByPrimaryKey, findByPrimaryKey, findWithDynamicQuery, findWithDynamicQuery, findWithDynamicQuery, getDataSource, getListeners, openSession, processException, registerListener, remove, remove, setDataSource, unregisterListener, update, update
 

Method Detail

cacheResult

void cacheResult(DDMStructureLink ddmStructureLink)
Caches the d d m structure link in the entity cache if it is enabled.

Parameters:
ddmStructureLink - the d d m structure link

cacheResult

void cacheResult(List<DDMStructureLink> ddmStructureLinks)
Caches the d d m structure links in the entity cache if it is enabled.

Parameters:
ddmStructureLinks - the d d m structure links

create

DDMStructureLink create(long structureLinkId)
Creates a new d d m structure link with the primary key. Does not add the d d m structure link to the database.

Parameters:
structureLinkId - the primary key for the new d d m structure link
Returns:
the new d d m structure link

remove

DDMStructureLink remove(long structureLinkId)
                        throws SystemException,
                               NoSuchStructureLinkException
Removes the d d m structure link with the primary key from the database. Also notifies the appropriate model listeners.

Parameters:
structureLinkId - the primary key of the d d m structure link
Returns:
the d d m structure link that was removed
Throws:
NoSuchStructureLinkException - if a d d m structure link with the primary key could not be found
SystemException - if a system exception occurred

updateImpl

DDMStructureLink updateImpl(DDMStructureLink ddmStructureLink,
                            boolean merge)
                            throws SystemException
Throws:
SystemException

findByPrimaryKey

DDMStructureLink findByPrimaryKey(long structureLinkId)
                                  throws SystemException,
                                         NoSuchStructureLinkException
Returns the d d m structure link with the primary key or throws a NoSuchStructureLinkException if it could not be found.

Parameters:
structureLinkId - the primary key of the d d m structure link
Returns:
the d d m structure link
Throws:
NoSuchStructureLinkException - if a d d m structure link with the primary key could not be found
SystemException - if a system exception occurred

fetchByPrimaryKey

DDMStructureLink fetchByPrimaryKey(long structureLinkId)
                                   throws SystemException
Returns the d d m structure link with the primary key or returns null if it could not be found.

Parameters:
structureLinkId - the primary key of the d d m structure link
Returns:
the d d m structure link, or null if a d d m structure link with the primary key could not be found
Throws:
SystemException - if a system exception occurred

findByClassNameId

List<DDMStructureLink> findByClassNameId(long classNameId)
                                         throws SystemException
Returns all the d d m structure links where classNameId = ?.

Parameters:
classNameId - the class name ID
Returns:
the matching d d m structure links
Throws:
SystemException - if a system exception occurred

findByClassNameId

List<DDMStructureLink> findByClassNameId(long classNameId,
                                         int start,
                                         int end)
                                         throws SystemException
Returns a range of all the d d m structure links where classNameId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
classNameId - the class name ID
start - the lower bound of the range of d d m structure links
end - the upper bound of the range of d d m structure links (not inclusive)
Returns:
the range of matching d d m structure links
Throws:
SystemException - if a system exception occurred

findByClassNameId

List<DDMStructureLink> findByClassNameId(long classNameId,
                                         int start,
                                         int end,
                                         OrderByComparator orderByComparator)
                                         throws SystemException
Returns an ordered range of all the d d m structure links where classNameId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
classNameId - the class name ID
start - the lower bound of the range of d d m structure links
end - the upper bound of the range of d d m structure links (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching d d m structure links
Throws:
SystemException - if a system exception occurred

findByClassNameId_First

DDMStructureLink findByClassNameId_First(long classNameId,
                                         OrderByComparator orderByComparator)
                                         throws SystemException,
                                                NoSuchStructureLinkException
Returns the first d d m structure link in the ordered set where classNameId = ?.

Parameters:
classNameId - the class name ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching d d m structure link
Throws:
NoSuchStructureLinkException - if a matching d d m structure link could not be found
SystemException - if a system exception occurred

fetchByClassNameId_First

DDMStructureLink fetchByClassNameId_First(long classNameId,
                                          OrderByComparator orderByComparator)
                                          throws SystemException
Returns the first d d m structure link in the ordered set where classNameId = ?.

Parameters:
classNameId - the class name ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching d d m structure link, or null if a matching d d m structure link could not be found
Throws:
SystemException - if a system exception occurred

findByClassNameId_Last

DDMStructureLink findByClassNameId_Last(long classNameId,
                                        OrderByComparator orderByComparator)
                                        throws SystemException,
                                               NoSuchStructureLinkException
Returns the last d d m structure link in the ordered set where classNameId = ?.

Parameters:
classNameId - the class name ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching d d m structure link
Throws:
NoSuchStructureLinkException - if a matching d d m structure link could not be found
SystemException - if a system exception occurred

fetchByClassNameId_Last

DDMStructureLink fetchByClassNameId_Last(long classNameId,
                                         OrderByComparator orderByComparator)
                                         throws SystemException
Returns the last d d m structure link in the ordered set where classNameId = ?.

Parameters:
classNameId - the class name ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching d d m structure link, or null if a matching d d m structure link could not be found
Throws:
SystemException - if a system exception occurred

findByClassNameId_PrevAndNext

DDMStructureLink[] findByClassNameId_PrevAndNext(long structureLinkId,
                                                 long classNameId,
                                                 OrderByComparator orderByComparator)
                                                 throws SystemException,
                                                        NoSuchStructureLinkException
Returns the d d m structure links before and after the current d d m structure link in the ordered set where classNameId = ?.

Parameters:
structureLinkId - the primary key of the current d d m structure link
classNameId - the class name ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next d d m structure link
Throws:
NoSuchStructureLinkException - if a d d m structure link with the primary key could not be found
SystemException - if a system exception occurred

findByClassPK

DDMStructureLink findByClassPK(long classPK)
                               throws SystemException,
                                      NoSuchStructureLinkException
Returns the d d m structure link where classPK = ? or throws a NoSuchStructureLinkException if it could not be found.

Parameters:
classPK - the class p k
Returns:
the matching d d m structure link
Throws:
NoSuchStructureLinkException - if a matching d d m structure link could not be found
SystemException - if a system exception occurred

fetchByClassPK

DDMStructureLink fetchByClassPK(long classPK)
                                throws SystemException
Returns the d d m structure link where classPK = ? or returns null if it could not be found. Uses the finder cache.

Parameters:
classPK - the class p k
Returns:
the matching d d m structure link, or null if a matching d d m structure link could not be found
Throws:
SystemException - if a system exception occurred

fetchByClassPK

DDMStructureLink fetchByClassPK(long classPK,
                                boolean retrieveFromCache)
                                throws SystemException
Returns the d d m structure link where classPK = ? or returns null if it could not be found, optionally using the finder cache.

Parameters:
classPK - the class p k
retrieveFromCache - whether to use the finder cache
Returns:
the matching d d m structure link, or null if a matching d d m structure link could not be found
Throws:
SystemException - if a system exception occurred

findByStructureId

List<DDMStructureLink> findByStructureId(long structureId)
                                         throws SystemException
Returns all the d d m structure links where structureId = ?.

Parameters:
structureId - the structure ID
Returns:
the matching d d m structure links
Throws:
SystemException - if a system exception occurred

findByStructureId

List<DDMStructureLink> findByStructureId(long structureId,
                                         int start,
                                         int end)
                                         throws SystemException
Returns a range of all the d d m structure links where structureId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
structureId - the structure ID
start - the lower bound of the range of d d m structure links
end - the upper bound of the range of d d m structure links (not inclusive)
Returns:
the range of matching d d m structure links
Throws:
SystemException - if a system exception occurred

findByStructureId

List<DDMStructureLink> findByStructureId(long structureId,
                                         int start,
                                         int end,
                                         OrderByComparator orderByComparator)
                                         throws SystemException
Returns an ordered range of all the d d m structure links where structureId = ?.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
structureId - the structure ID
start - the lower bound of the range of d d m structure links
end - the upper bound of the range of d d m structure links (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching d d m structure links
Throws:
SystemException - if a system exception occurred

findByStructureId_First

DDMStructureLink findByStructureId_First(long structureId,
                                         OrderByComparator orderByComparator)
                                         throws SystemException,
                                                NoSuchStructureLinkException
Returns the first d d m structure link in the ordered set where structureId = ?.

Parameters:
structureId - the structure ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching d d m structure link
Throws:
NoSuchStructureLinkException - if a matching d d m structure link could not be found
SystemException - if a system exception occurred

fetchByStructureId_First

DDMStructureLink fetchByStructureId_First(long structureId,
                                          OrderByComparator orderByComparator)
                                          throws SystemException
Returns the first d d m structure link in the ordered set where structureId = ?.

Parameters:
structureId - the structure ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the first matching d d m structure link, or null if a matching d d m structure link could not be found
Throws:
SystemException - if a system exception occurred

findByStructureId_Last

DDMStructureLink findByStructureId_Last(long structureId,
                                        OrderByComparator orderByComparator)
                                        throws SystemException,
                                               NoSuchStructureLinkException
Returns the last d d m structure link in the ordered set where structureId = ?.

Parameters:
structureId - the structure ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching d d m structure link
Throws:
NoSuchStructureLinkException - if a matching d d m structure link could not be found
SystemException - if a system exception occurred

fetchByStructureId_Last

DDMStructureLink fetchByStructureId_Last(long structureId,
                                         OrderByComparator orderByComparator)
                                         throws SystemException
Returns the last d d m structure link in the ordered set where structureId = ?.

Parameters:
structureId - the structure ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the last matching d d m structure link, or null if a matching d d m structure link could not be found
Throws:
SystemException - if a system exception occurred

findByStructureId_PrevAndNext

DDMStructureLink[] findByStructureId_PrevAndNext(long structureLinkId,
                                                 long structureId,
                                                 OrderByComparator orderByComparator)
                                                 throws SystemException,
                                                        NoSuchStructureLinkException
Returns the d d m structure links before and after the current d d m structure link in the ordered set where structureId = ?.

Parameters:
structureLinkId - the primary key of the current d d m structure link
structureId - the structure ID
orderByComparator - the comparator to order the set by (optionally null)
Returns:
the previous, current, and next d d m structure link
Throws:
NoSuchStructureLinkException - if a d d m structure link with the primary key could not be found
SystemException - if a system exception occurred

findAll

List<DDMStructureLink> findAll()
                               throws SystemException
Returns all the d d m structure links.

Returns:
the d d m structure links
Throws:
SystemException - if a system exception occurred

findAll

List<DDMStructureLink> findAll(int start,
                               int end)
                               throws SystemException
Returns a range of all the d d m structure links.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
start - the lower bound of the range of d d m structure links
end - the upper bound of the range of d d m structure links (not inclusive)
Returns:
the range of d d m structure links
Throws:
SystemException - if a system exception occurred

findAll

List<DDMStructureLink> findAll(int start,
                               int end,
                               OrderByComparator orderByComparator)
                               throws SystemException
Returns an ordered range of all the d d m structure links.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Parameters:
start - the lower bound of the range of d d m structure links
end - the upper bound of the range of d d m structure links (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of d d m structure links
Throws:
SystemException - if a system exception occurred

removeByClassNameId

void removeByClassNameId(long classNameId)
                         throws SystemException
Removes all the d d m structure links where classNameId = ? from the database.

Parameters:
classNameId - the class name ID
Throws:
SystemException - if a system exception occurred

removeByClassPK

DDMStructureLink removeByClassPK(long classPK)
                                 throws SystemException,
                                        NoSuchStructureLinkException
Removes the d d m structure link where classPK = ? from the database.

Parameters:
classPK - the class p k
Returns:
the d d m structure link that was removed
Throws:
SystemException - if a system exception occurred
NoSuchStructureLinkException

removeByStructureId

void removeByStructureId(long structureId)
                         throws SystemException
Removes all the d d m structure links where structureId = ? from the database.

Parameters:
structureId - the structure ID
Throws:
SystemException - if a system exception occurred

removeAll

void removeAll()
               throws SystemException
Removes all the d d m structure links from the database.

Throws:
SystemException - if a system exception occurred

countByClassNameId

int countByClassNameId(long classNameId)
                       throws SystemException
Returns the number of d d m structure links where classNameId = ?.

Parameters:
classNameId - the class name ID
Returns:
the number of matching d d m structure links
Throws:
SystemException - if a system exception occurred

countByClassPK

int countByClassPK(long classPK)
                   throws SystemException
Returns the number of d d m structure links where classPK = ?.

Parameters:
classPK - the class p k
Returns:
the number of matching d d m structure links
Throws:
SystemException - if a system exception occurred

countByStructureId

int countByStructureId(long structureId)
                       throws SystemException
Returns the number of d d m structure links where structureId = ?.

Parameters:
structureId - the structure ID
Returns:
the number of matching d d m structure links
Throws:
SystemException - if a system exception occurred

countAll

int countAll()
             throws SystemException
Returns the number of d d m structure links.

Returns:
the number of d d m structure links
Throws:
SystemException - if a system exception occurred

Liferay 6.1.2-ce-ga3