public class DDLRecordSetVersionLocalServiceWrapper extends java.lang.Object implements DDLRecordSetVersionLocalService, ServiceWrapper<DDLRecordSetVersionLocalService>
DDLRecordSetVersionLocalService.DDLRecordSetVersionLocalService| Constructor and Description |
|---|
DDLRecordSetVersionLocalServiceWrapper(DDLRecordSetVersionLocalService ddlRecordSetVersionLocalService) |
| Modifier and Type | Method and Description |
|---|---|
DDLRecordSetVersion |
addDDLRecordSetVersion(DDLRecordSetVersion ddlRecordSetVersion)
Adds the ddl record set version to the database.
|
DDLRecordSetVersion |
createDDLRecordSetVersion(long recordSetVersionId)
Creates a new ddl record set version with the primary key.
|
PersistedModel |
createPersistedModel(java.io.Serializable primaryKeyObj) |
void |
deleteByRecordSetId(long recordSetId) |
DDLRecordSetVersion |
deleteDDLRecordSetVersion(DDLRecordSetVersion ddlRecordSetVersion)
Deletes the ddl record set version from the database.
|
DDLRecordSetVersion |
deleteDDLRecordSetVersion(long recordSetVersionId)
Deletes the ddl record set version with the primary key from the database.
|
PersistedModel |
deletePersistedModel(PersistedModel persistedModel) |
<T> T |
dslQuery(DSLQuery dslQuery) |
DynamicQuery |
dynamicQuery() |
<T> java.util.List<T> |
dynamicQuery(DynamicQuery dynamicQuery)
Performs a dynamic query on the database and returns the matching rows.
|
<T> java.util.List<T> |
dynamicQuery(DynamicQuery dynamicQuery,
int start,
int end)
Performs a dynamic query on the database and returns a range of the matching rows.
|
<T> java.util.List<T> |
dynamicQuery(DynamicQuery dynamicQuery,
int start,
int end,
OrderByComparator<T> orderByComparator)
Performs a dynamic query on the database and returns an ordered range of the matching rows.
|
long |
dynamicQueryCount(DynamicQuery dynamicQuery)
Returns the number of rows matching the dynamic query.
|
long |
dynamicQueryCount(DynamicQuery dynamicQuery,
Projection projection)
Returns the number of rows matching the dynamic query.
|
DDLRecordSetVersion |
fetchDDLRecordSetVersion(long recordSetVersionId) |
ActionableDynamicQuery |
getActionableDynamicQuery() |
DDLRecordSetVersion |
getDDLRecordSetVersion(long recordSetVersionId)
Returns the ddl record set version with the primary key.
|
java.util.List<DDLRecordSetVersion> |
getDDLRecordSetVersions(int start,
int end)
Returns a range of all the ddl record set versions.
|
int |
getDDLRecordSetVersionsCount()
Returns the number of ddl record set versions.
|
IndexableActionableDynamicQuery |
getIndexableActionableDynamicQuery() |
DDLRecordSetVersion |
getLatestRecordSetVersion(long recordSetId) |
java.lang.String |
getOSGiServiceIdentifier()
Returns the OSGi service identifier.
|
PersistedModel |
getPersistedModel(java.io.Serializable primaryKeyObj) |
DDLRecordSetVersion |
getRecordSetVersion(long recordSetVersionId) |
DDLRecordSetVersion |
getRecordSetVersion(long recordSetId,
java.lang.String version) |
java.util.List<DDLRecordSetVersion> |
getRecordSetVersions(long recordSetId) |
java.util.List<DDLRecordSetVersion> |
getRecordSetVersions(long recordSetId,
int start,
int end,
OrderByComparator<DDLRecordSetVersion> orderByComparator) |
int |
getRecordSetVersionsCount(long recordSetId) |
DDLRecordSetVersionLocalService |
getWrappedService() |
void |
setWrappedService(DDLRecordSetVersionLocalService ddlRecordSetVersionLocalService) |
DDLRecordSetVersion |
updateDDLRecordSetVersion(DDLRecordSetVersion ddlRecordSetVersion)
Updates the ddl record set version in the database or adds it if it does not yet exist.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitgetBasePersistencepublic DDLRecordSetVersionLocalServiceWrapper(DDLRecordSetVersionLocalService ddlRecordSetVersionLocalService)
public DDLRecordSetVersion addDDLRecordSetVersion(DDLRecordSetVersion ddlRecordSetVersion)
addDDLRecordSetVersion in interface DDLRecordSetVersionLocalServiceddlRecordSetVersion - the ddl record set versionpublic DDLRecordSetVersion createDDLRecordSetVersion(long recordSetVersionId)
createDDLRecordSetVersion in interface DDLRecordSetVersionLocalServicerecordSetVersionId - the primary key for the new ddl record set versionpublic PersistedModel createPersistedModel(java.io.Serializable primaryKeyObj) throws PortalException
createPersistedModel in interface DDLRecordSetVersionLocalServicecreatePersistedModel in interface PersistedModelLocalServicePortalExceptionpublic void deleteByRecordSetId(long recordSetId)
deleteByRecordSetId in interface DDLRecordSetVersionLocalServicepublic DDLRecordSetVersion deleteDDLRecordSetVersion(DDLRecordSetVersion ddlRecordSetVersion)
deleteDDLRecordSetVersion in interface DDLRecordSetVersionLocalServiceddlRecordSetVersion - the ddl record set versionpublic DDLRecordSetVersion deleteDDLRecordSetVersion(long recordSetVersionId) throws PortalException
deleteDDLRecordSetVersion in interface DDLRecordSetVersionLocalServicerecordSetVersionId - the primary key of the ddl record set versionPortalException - if a ddl record set version with the primary key could not be foundpublic PersistedModel deletePersistedModel(PersistedModel persistedModel) throws PortalException
deletePersistedModel in interface DDLRecordSetVersionLocalServicedeletePersistedModel in interface PersistedModelLocalServicePortalExceptionpublic <T> T dslQuery(DSLQuery dslQuery)
dslQuery in interface DDLRecordSetVersionLocalServicepublic DynamicQuery dynamicQuery()
dynamicQuery in interface DDLRecordSetVersionLocalServicepublic <T> java.util.List<T> dynamicQuery(DynamicQuery dynamicQuery)
dynamicQuery in interface DDLRecordSetVersionLocalServicedynamicQuery - the dynamic querypublic <T> java.util.List<T> dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
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 com.liferay.portal.kernel.dao.orm.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, then the query will include the default ORDER BY logic from com.liferay.dynamic.data.lists.model.impl.DDLRecordSetVersionModelImpl.
dynamicQuery in interface DDLRecordSetVersionLocalServicedynamicQuery - the dynamic querystart - the lower bound of the range of model instancesend - the upper bound of the range of model instances (not inclusive)public <T> java.util.List<T> dynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator<T> orderByComparator)
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 com.liferay.portal.kernel.dao.orm.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, then the query will include the default ORDER BY logic from com.liferay.dynamic.data.lists.model.impl.DDLRecordSetVersionModelImpl.
dynamicQuery in interface DDLRecordSetVersionLocalServicedynamicQuery - the dynamic querystart - the lower bound of the range of model instancesend - the upper bound of the range of model instances (not inclusive)orderByComparator - the comparator to order the results by (optionally null)public long dynamicQueryCount(DynamicQuery dynamicQuery)
dynamicQueryCount in interface DDLRecordSetVersionLocalServicedynamicQuery - the dynamic querypublic long dynamicQueryCount(DynamicQuery dynamicQuery, Projection projection)
dynamicQueryCount in interface DDLRecordSetVersionLocalServicedynamicQuery - the dynamic queryprojection - the projection to apply to the querypublic DDLRecordSetVersion fetchDDLRecordSetVersion(long recordSetVersionId)
fetchDDLRecordSetVersion in interface DDLRecordSetVersionLocalServicepublic ActionableDynamicQuery getActionableDynamicQuery()
getActionableDynamicQuery in interface DDLRecordSetVersionLocalServicepublic DDLRecordSetVersion getDDLRecordSetVersion(long recordSetVersionId) throws PortalException
getDDLRecordSetVersion in interface DDLRecordSetVersionLocalServicerecordSetVersionId - the primary key of the ddl record set versionPortalException - if a ddl record set version with the primary key could not be foundpublic java.util.List<DDLRecordSetVersion> getDDLRecordSetVersions(int start, int end)
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 com.liferay.portal.kernel.dao.orm.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, then the query will include the default ORDER BY logic from com.liferay.dynamic.data.lists.model.impl.DDLRecordSetVersionModelImpl.
getDDLRecordSetVersions in interface DDLRecordSetVersionLocalServicestart - the lower bound of the range of ddl record set versionsend - the upper bound of the range of ddl record set versions (not inclusive)public int getDDLRecordSetVersionsCount()
getDDLRecordSetVersionsCount in interface DDLRecordSetVersionLocalServicepublic IndexableActionableDynamicQuery getIndexableActionableDynamicQuery()
getIndexableActionableDynamicQuery in interface DDLRecordSetVersionLocalServicepublic DDLRecordSetVersion getLatestRecordSetVersion(long recordSetId) throws PortalException
getLatestRecordSetVersion in interface DDLRecordSetVersionLocalServicePortalExceptionpublic java.lang.String getOSGiServiceIdentifier()
getOSGiServiceIdentifier in interface DDLRecordSetVersionLocalServicepublic PersistedModel getPersistedModel(java.io.Serializable primaryKeyObj) throws PortalException
getPersistedModel in interface DDLRecordSetVersionLocalServicegetPersistedModel in interface PersistedModelLocalServicePortalExceptionpublic DDLRecordSetVersion getRecordSetVersion(long recordSetVersionId) throws PortalException
getRecordSetVersion in interface DDLRecordSetVersionLocalServicePortalExceptionpublic DDLRecordSetVersion getRecordSetVersion(long recordSetId, java.lang.String version) throws PortalException
getRecordSetVersion in interface DDLRecordSetVersionLocalServicePortalExceptionpublic java.util.List<DDLRecordSetVersion> getRecordSetVersions(long recordSetId)
getRecordSetVersions in interface DDLRecordSetVersionLocalServicepublic java.util.List<DDLRecordSetVersion> getRecordSetVersions(long recordSetId, int start, int end, OrderByComparator<DDLRecordSetVersion> orderByComparator)
getRecordSetVersions in interface DDLRecordSetVersionLocalServicepublic int getRecordSetVersionsCount(long recordSetId)
getRecordSetVersionsCount in interface DDLRecordSetVersionLocalServicepublic DDLRecordSetVersion updateDDLRecordSetVersion(DDLRecordSetVersion ddlRecordSetVersion)
updateDDLRecordSetVersion in interface DDLRecordSetVersionLocalServiceddlRecordSetVersion - the ddl record set versionpublic DDLRecordSetVersionLocalService getWrappedService()
getWrappedService in interface ServiceWrapper<DDLRecordSetVersionLocalService>public void setWrappedService(DDLRecordSetVersionLocalService ddlRecordSetVersionLocalService)
setWrappedService in interface ServiceWrapper<DDLRecordSetVersionLocalService>