All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.liferay.dynamic.data.mapping.service.persistence.DDMStructureVersionUtil Maven / Gradle / Ivy

There is a newer version: 33.1.0
Show newest version
/**
 * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
 *
 * This library is free software; you can redistribute it and/or modify it under
 * the terms of the GNU Lesser General Public License as published by the Free
 * Software Foundation; either version 2.1 of the License, or (at your option)
 * any later version.
 *
 * This library is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
 * details.
 */

package com.liferay.dynamic.data.mapping.service.persistence;

import aQute.bnd.annotation.ProviderType;

import com.liferay.dynamic.data.mapping.model.DDMStructureVersion;

import com.liferay.osgi.util.ServiceTrackerFactory;

import com.liferay.portal.kernel.dao.orm.DynamicQuery;
import com.liferay.portal.kernel.service.ServiceContext;
import com.liferay.portal.kernel.util.OrderByComparator;

import org.osgi.util.tracker.ServiceTracker;

import java.util.List;

/**
 * The persistence utility for the d d m structure version service. This utility wraps {@link com.liferay.dynamic.data.mapping.service.persistence.impl.DDMStructureVersionPersistenceImpl} and provides direct access to the database for CRUD operations. This utility should only be used by the service layer, as it must operate within a transaction. Never access this utility in a JSP, controller, model, or other front-end class.
 *
 * 

* Caching information and settings can be found in portal.properties *

* * @author Brian Wing Shun Chan * @see DDMStructureVersionPersistence * @see com.liferay.dynamic.data.mapping.service.persistence.impl.DDMStructureVersionPersistenceImpl * @generated */ @ProviderType public class DDMStructureVersionUtil { /* * NOTE FOR DEVELOPERS: * * Never modify this class directly. Modify service.xml and rerun ServiceBuilder to regenerate this class. */ /** * @see com.liferay.portal.kernel.service.persistence.BasePersistence#clearCache() */ public static void clearCache() { getPersistence().clearCache(); } /** * @see com.liferay.portal.kernel.service.persistence.BasePersistence#clearCache(com.liferay.portal.kernel.model.BaseModel) */ public static void clearCache(DDMStructureVersion ddmStructureVersion) { getPersistence().clearCache(ddmStructureVersion); } /** * @see com.liferay.portal.kernel.service.persistence.BasePersistence#countWithDynamicQuery(DynamicQuery) */ public static long countWithDynamicQuery(DynamicQuery dynamicQuery) { return getPersistence().countWithDynamicQuery(dynamicQuery); } /** * @see com.liferay.portal.kernel.service.persistence.BasePersistence#findWithDynamicQuery(DynamicQuery) */ public static List findWithDynamicQuery( DynamicQuery dynamicQuery) { return getPersistence().findWithDynamicQuery(dynamicQuery); } /** * @see com.liferay.portal.kernel.service.persistence.BasePersistence#findWithDynamicQuery(DynamicQuery, int, int) */ public static List findWithDynamicQuery( DynamicQuery dynamicQuery, int start, int end) { return getPersistence().findWithDynamicQuery(dynamicQuery, start, end); } /** * @see com.liferay.portal.kernel.service.persistence.BasePersistence#findWithDynamicQuery(DynamicQuery, int, int, OrderByComparator) */ public static List findWithDynamicQuery( DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator) { return getPersistence() .findWithDynamicQuery(dynamicQuery, start, end, orderByComparator); } /** * @see com.liferay.portal.kernel.service.persistence.BasePersistence#update(com.liferay.portal.kernel.model.BaseModel) */ public static DDMStructureVersion update( DDMStructureVersion ddmStructureVersion) { return getPersistence().update(ddmStructureVersion); } /** * @see com.liferay.portal.kernel.service.persistence.BasePersistence#update(com.liferay.portal.kernel.model.BaseModel, ServiceContext) */ public static DDMStructureVersion update( DDMStructureVersion ddmStructureVersion, ServiceContext serviceContext) { return getPersistence().update(ddmStructureVersion, serviceContext); } /** * Returns all the d d m structure versions where structureId = ?. * * @param structureId the structure ID * @return the matching d d m structure versions */ public static List findByStructureId(long structureId) { return getPersistence().findByStructureId(structureId); } /** * Returns a range of all the d d m structure versions 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 {@link QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link DDMStructureVersionModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param structureId the structure ID * @param start the lower bound of the range of d d m structure versions * @param end the upper bound of the range of d d m structure versions (not inclusive) * @return the range of matching d d m structure versions */ public static List findByStructureId( long structureId, int start, int end) { return getPersistence().findByStructureId(structureId, start, end); } /** * Returns an ordered range of all the d d m structure versions 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 {@link QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link DDMStructureVersionModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param structureId the structure ID * @param start the lower bound of the range of d d m structure versions * @param end the upper bound of the range of d d m structure versions (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of matching d d m structure versions */ public static List findByStructureId( long structureId, int start, int end, OrderByComparator orderByComparator) { return getPersistence() .findByStructureId(structureId, start, end, orderByComparator); } /** * Returns an ordered range of all the d d m structure versions 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 {@link QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link DDMStructureVersionModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param structureId the structure ID * @param start the lower bound of the range of d d m structure versions * @param end the upper bound of the range of d d m structure versions (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @param retrieveFromCache whether to retrieve from the finder cache * @return the ordered range of matching d d m structure versions */ public static List findByStructureId( long structureId, int start, int end, OrderByComparator orderByComparator, boolean retrieveFromCache) { return getPersistence() .findByStructureId(structureId, start, end, orderByComparator, retrieveFromCache); } /** * Returns the first d d m structure version in the ordered set where structureId = ?. * * @param structureId the structure ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching d d m structure version * @throws NoSuchStructureVersionException if a matching d d m structure version could not be found */ public static DDMStructureVersion findByStructureId_First( long structureId, OrderByComparator orderByComparator) throws com.liferay.dynamic.data.mapping.exception.NoSuchStructureVersionException { return getPersistence() .findByStructureId_First(structureId, orderByComparator); } /** * Returns the first d d m structure version in the ordered set where structureId = ?. * * @param structureId the structure ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching d d m structure version, or null if a matching d d m structure version could not be found */ public static DDMStructureVersion fetchByStructureId_First( long structureId, OrderByComparator orderByComparator) { return getPersistence() .fetchByStructureId_First(structureId, orderByComparator); } /** * Returns the last d d m structure version in the ordered set where structureId = ?. * * @param structureId the structure ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching d d m structure version * @throws NoSuchStructureVersionException if a matching d d m structure version could not be found */ public static DDMStructureVersion findByStructureId_Last(long structureId, OrderByComparator orderByComparator) throws com.liferay.dynamic.data.mapping.exception.NoSuchStructureVersionException { return getPersistence() .findByStructureId_Last(structureId, orderByComparator); } /** * Returns the last d d m structure version in the ordered set where structureId = ?. * * @param structureId the structure ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching d d m structure version, or null if a matching d d m structure version could not be found */ public static DDMStructureVersion fetchByStructureId_Last( long structureId, OrderByComparator orderByComparator) { return getPersistence() .fetchByStructureId_Last(structureId, orderByComparator); } /** * Returns the d d m structure versions before and after the current d d m structure version in the ordered set where structureId = ?. * * @param structureVersionId the primary key of the current d d m structure version * @param structureId the structure ID * @param orderByComparator the comparator to order the set by (optionally null) * @return the previous, current, and next d d m structure version * @throws NoSuchStructureVersionException if a d d m structure version with the primary key could not be found */ public static DDMStructureVersion[] findByStructureId_PrevAndNext( long structureVersionId, long structureId, OrderByComparator orderByComparator) throws com.liferay.dynamic.data.mapping.exception.NoSuchStructureVersionException { return getPersistence() .findByStructureId_PrevAndNext(structureVersionId, structureId, orderByComparator); } /** * Removes all the d d m structure versions where structureId = ? from the database. * * @param structureId the structure ID */ public static void removeByStructureId(long structureId) { getPersistence().removeByStructureId(structureId); } /** * Returns the number of d d m structure versions where structureId = ?. * * @param structureId the structure ID * @return the number of matching d d m structure versions */ public static int countByStructureId(long structureId) { return getPersistence().countByStructureId(structureId); } /** * Returns the d d m structure version where structureId = ? and version = ? or throws a {@link NoSuchStructureVersionException} if it could not be found. * * @param structureId the structure ID * @param version the version * @return the matching d d m structure version * @throws NoSuchStructureVersionException if a matching d d m structure version could not be found */ public static DDMStructureVersion findByS_V(long structureId, java.lang.String version) throws com.liferay.dynamic.data.mapping.exception.NoSuchStructureVersionException { return getPersistence().findByS_V(structureId, version); } /** * Returns the d d m structure version where structureId = ? and version = ? or returns null if it could not be found. Uses the finder cache. * * @param structureId the structure ID * @param version the version * @return the matching d d m structure version, or null if a matching d d m structure version could not be found */ public static DDMStructureVersion fetchByS_V(long structureId, java.lang.String version) { return getPersistence().fetchByS_V(structureId, version); } /** * Returns the d d m structure version where structureId = ? and version = ? or returns null if it could not be found, optionally using the finder cache. * * @param structureId the structure ID * @param version the version * @param retrieveFromCache whether to retrieve from the finder cache * @return the matching d d m structure version, or null if a matching d d m structure version could not be found */ public static DDMStructureVersion fetchByS_V(long structureId, java.lang.String version, boolean retrieveFromCache) { return getPersistence() .fetchByS_V(structureId, version, retrieveFromCache); } /** * Removes the d d m structure version where structureId = ? and version = ? from the database. * * @param structureId the structure ID * @param version the version * @return the d d m structure version that was removed */ public static DDMStructureVersion removeByS_V(long structureId, java.lang.String version) throws com.liferay.dynamic.data.mapping.exception.NoSuchStructureVersionException { return getPersistence().removeByS_V(structureId, version); } /** * Returns the number of d d m structure versions where structureId = ? and version = ?. * * @param structureId the structure ID * @param version the version * @return the number of matching d d m structure versions */ public static int countByS_V(long structureId, java.lang.String version) { return getPersistence().countByS_V(structureId, version); } /** * Returns all the d d m structure versions where structureId = ? and status = ?. * * @param structureId the structure ID * @param status the status * @return the matching d d m structure versions */ public static List findByS_S(long structureId, int status) { return getPersistence().findByS_S(structureId, status); } /** * Returns a range of all the d d m structure versions where structureId = ? and status = ?. * *

* 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 {@link QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link DDMStructureVersionModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param structureId the structure ID * @param status the status * @param start the lower bound of the range of d d m structure versions * @param end the upper bound of the range of d d m structure versions (not inclusive) * @return the range of matching d d m structure versions */ public static List findByS_S(long structureId, int status, int start, int end) { return getPersistence().findByS_S(structureId, status, start, end); } /** * Returns an ordered range of all the d d m structure versions where structureId = ? and status = ?. * *

* 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 {@link QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link DDMStructureVersionModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param structureId the structure ID * @param status the status * @param start the lower bound of the range of d d m structure versions * @param end the upper bound of the range of d d m structure versions (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of matching d d m structure versions */ public static List findByS_S(long structureId, int status, int start, int end, OrderByComparator orderByComparator) { return getPersistence() .findByS_S(structureId, status, start, end, orderByComparator); } /** * Returns an ordered range of all the d d m structure versions where structureId = ? and status = ?. * *

* 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 {@link QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link DDMStructureVersionModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param structureId the structure ID * @param status the status * @param start the lower bound of the range of d d m structure versions * @param end the upper bound of the range of d d m structure versions (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @param retrieveFromCache whether to retrieve from the finder cache * @return the ordered range of matching d d m structure versions */ public static List findByS_S(long structureId, int status, int start, int end, OrderByComparator orderByComparator, boolean retrieveFromCache) { return getPersistence() .findByS_S(structureId, status, start, end, orderByComparator, retrieveFromCache); } /** * Returns the first d d m structure version in the ordered set where structureId = ? and status = ?. * * @param structureId the structure ID * @param status the status * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching d d m structure version * @throws NoSuchStructureVersionException if a matching d d m structure version could not be found */ public static DDMStructureVersion findByS_S_First(long structureId, int status, OrderByComparator orderByComparator) throws com.liferay.dynamic.data.mapping.exception.NoSuchStructureVersionException { return getPersistence() .findByS_S_First(structureId, status, orderByComparator); } /** * Returns the first d d m structure version in the ordered set where structureId = ? and status = ?. * * @param structureId the structure ID * @param status the status * @param orderByComparator the comparator to order the set by (optionally null) * @return the first matching d d m structure version, or null if a matching d d m structure version could not be found */ public static DDMStructureVersion fetchByS_S_First(long structureId, int status, OrderByComparator orderByComparator) { return getPersistence() .fetchByS_S_First(structureId, status, orderByComparator); } /** * Returns the last d d m structure version in the ordered set where structureId = ? and status = ?. * * @param structureId the structure ID * @param status the status * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching d d m structure version * @throws NoSuchStructureVersionException if a matching d d m structure version could not be found */ public static DDMStructureVersion findByS_S_Last(long structureId, int status, OrderByComparator orderByComparator) throws com.liferay.dynamic.data.mapping.exception.NoSuchStructureVersionException { return getPersistence() .findByS_S_Last(structureId, status, orderByComparator); } /** * Returns the last d d m structure version in the ordered set where structureId = ? and status = ?. * * @param structureId the structure ID * @param status the status * @param orderByComparator the comparator to order the set by (optionally null) * @return the last matching d d m structure version, or null if a matching d d m structure version could not be found */ public static DDMStructureVersion fetchByS_S_Last(long structureId, int status, OrderByComparator orderByComparator) { return getPersistence() .fetchByS_S_Last(structureId, status, orderByComparator); } /** * Returns the d d m structure versions before and after the current d d m structure version in the ordered set where structureId = ? and status = ?. * * @param structureVersionId the primary key of the current d d m structure version * @param structureId the structure ID * @param status the status * @param orderByComparator the comparator to order the set by (optionally null) * @return the previous, current, and next d d m structure version * @throws NoSuchStructureVersionException if a d d m structure version with the primary key could not be found */ public static DDMStructureVersion[] findByS_S_PrevAndNext( long structureVersionId, long structureId, int status, OrderByComparator orderByComparator) throws com.liferay.dynamic.data.mapping.exception.NoSuchStructureVersionException { return getPersistence() .findByS_S_PrevAndNext(structureVersionId, structureId, status, orderByComparator); } /** * Removes all the d d m structure versions where structureId = ? and status = ? from the database. * * @param structureId the structure ID * @param status the status */ public static void removeByS_S(long structureId, int status) { getPersistence().removeByS_S(structureId, status); } /** * Returns the number of d d m structure versions where structureId = ? and status = ?. * * @param structureId the structure ID * @param status the status * @return the number of matching d d m structure versions */ public static int countByS_S(long structureId, int status) { return getPersistence().countByS_S(structureId, status); } /** * Caches the d d m structure version in the entity cache if it is enabled. * * @param ddmStructureVersion the d d m structure version */ public static void cacheResult(DDMStructureVersion ddmStructureVersion) { getPersistence().cacheResult(ddmStructureVersion); } /** * Caches the d d m structure versions in the entity cache if it is enabled. * * @param ddmStructureVersions the d d m structure versions */ public static void cacheResult( List ddmStructureVersions) { getPersistence().cacheResult(ddmStructureVersions); } /** * Creates a new d d m structure version with the primary key. Does not add the d d m structure version to the database. * * @param structureVersionId the primary key for the new d d m structure version * @return the new d d m structure version */ public static DDMStructureVersion create(long structureVersionId) { return getPersistence().create(structureVersionId); } /** * Removes the d d m structure version with the primary key from the database. Also notifies the appropriate model listeners. * * @param structureVersionId the primary key of the d d m structure version * @return the d d m structure version that was removed * @throws NoSuchStructureVersionException if a d d m structure version with the primary key could not be found */ public static DDMStructureVersion remove(long structureVersionId) throws com.liferay.dynamic.data.mapping.exception.NoSuchStructureVersionException { return getPersistence().remove(structureVersionId); } public static DDMStructureVersion updateImpl( DDMStructureVersion ddmStructureVersion) { return getPersistence().updateImpl(ddmStructureVersion); } /** * Returns the d d m structure version with the primary key or throws a {@link NoSuchStructureVersionException} if it could not be found. * * @param structureVersionId the primary key of the d d m structure version * @return the d d m structure version * @throws NoSuchStructureVersionException if a d d m structure version with the primary key could not be found */ public static DDMStructureVersion findByPrimaryKey(long structureVersionId) throws com.liferay.dynamic.data.mapping.exception.NoSuchStructureVersionException { return getPersistence().findByPrimaryKey(structureVersionId); } /** * Returns the d d m structure version with the primary key or returns null if it could not be found. * * @param structureVersionId the primary key of the d d m structure version * @return the d d m structure version, or null if a d d m structure version with the primary key could not be found */ public static DDMStructureVersion fetchByPrimaryKey(long structureVersionId) { return getPersistence().fetchByPrimaryKey(structureVersionId); } public static java.util.Map fetchByPrimaryKeys( java.util.Set primaryKeys) { return getPersistence().fetchByPrimaryKeys(primaryKeys); } /** * Returns all the d d m structure versions. * * @return the d d m structure versions */ public static List findAll() { return getPersistence().findAll(); } /** * Returns a range of all the d d m structure versions. * *

* 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 {@link QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link DDMStructureVersionModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param start the lower bound of the range of d d m structure versions * @param end the upper bound of the range of d d m structure versions (not inclusive) * @return the range of d d m structure versions */ public static List findAll(int start, int end) { return getPersistence().findAll(start, end); } /** * Returns an ordered range of all the d d m structure versions. * *

* 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 {@link QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link DDMStructureVersionModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param start the lower bound of the range of d d m structure versions * @param end the upper bound of the range of d d m structure versions (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @return the ordered range of d d m structure versions */ public static List findAll(int start, int end, OrderByComparator orderByComparator) { return getPersistence().findAll(start, end, orderByComparator); } /** * Returns an ordered range of all the d d m structure versions. * *

* 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 {@link QueryUtil#ALL_POS} will return the full result set. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not {@link QueryUtil#ALL_POS}), then the query will include the default ORDER BY logic from {@link DDMStructureVersionModelImpl}. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order. *

* * @param start the lower bound of the range of d d m structure versions * @param end the upper bound of the range of d d m structure versions (not inclusive) * @param orderByComparator the comparator to order the results by (optionally null) * @param retrieveFromCache whether to retrieve from the finder cache * @return the ordered range of d d m structure versions */ public static List findAll(int start, int end, OrderByComparator orderByComparator, boolean retrieveFromCache) { return getPersistence() .findAll(start, end, orderByComparator, retrieveFromCache); } /** * Removes all the d d m structure versions from the database. */ public static void removeAll() { getPersistence().removeAll(); } /** * Returns the number of d d m structure versions. * * @return the number of d d m structure versions */ public static int countAll() { return getPersistence().countAll(); } public static java.util.Set getBadColumnNames() { return getPersistence().getBadColumnNames(); } public static DDMStructureVersionPersistence getPersistence() { return _serviceTracker.getService(); } private static ServiceTracker _serviceTracker = ServiceTrackerFactory.open(DDMStructureVersionPersistence.class); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy