Liferay 7.0-ce-b4

com.liferay.portlet.documentlibrary.service
Class DLFileEntryMetadataLocalServiceWrapper

java.lang.Object
  extended by com.liferay.portlet.documentlibrary.service.DLFileEntryMetadataLocalServiceWrapper
All Implemented Interfaces:
BaseLocalService, PersistedModelLocalService, ServiceWrapper<DLFileEntryMetadataLocalService>, DLFileEntryMetadataLocalService

@ProviderType
public class DLFileEntryMetadataLocalServiceWrapper
extends Object
implements DLFileEntryMetadataLocalService, ServiceWrapper<DLFileEntryMetadataLocalService>

Provides a wrapper for DLFileEntryMetadataLocalService.

See Also:
DLFileEntryMetadataLocalService
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time it is generated.

Constructor Summary
DLFileEntryMetadataLocalServiceWrapper(DLFileEntryMetadataLocalService dlFileEntryMetadataLocalService)
           
 
Method Summary
 DLFileEntryMetadata addDLFileEntryMetadata(DLFileEntryMetadata dlFileEntryMetadata)
          Adds the document library file entry metadata to the database.
 DLFileEntryMetadata createDLFileEntryMetadata(long fileEntryMetadataId)
          Creates a new document library file entry metadata with the primary key.
 DLFileEntryMetadata deleteDLFileEntryMetadata(DLFileEntryMetadata dlFileEntryMetadata)
          Deletes the document library file entry metadata from the database.
 DLFileEntryMetadata deleteDLFileEntryMetadata(long fileEntryMetadataId)
          Deletes the document library file entry metadata with the primary key from the database.
 void deleteFileEntryMetadata(DLFileEntryMetadata fileEntryMetadata)
           
 void deleteFileEntryMetadata(long fileEntryId)
           
 void deleteFileVersionFileEntryMetadata(long fileVersionId)
           
 PersistedModel deletePersistedModel(PersistedModel persistedModel)
           
 DynamicQuery dynamicQuery()
           
<T> List<T>
dynamicQuery(DynamicQuery dynamicQuery)
          Performs a dynamic query on the database and returns the matching rows.
<T> 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> 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.
 DLFileEntryMetadata fetchDLFileEntryMetadata(long fileEntryMetadataId)
           
 DLFileEntryMetadata fetchDLFileEntryMetadataByUuidAndCompanyId(String uuid, long companyId)
          Returns the document library file entry metadata with the matching UUID and company.
 DLFileEntryMetadata fetchFileEntryMetadata(long fileEntryMetadataId)
           
 DLFileEntryMetadata fetchFileEntryMetadata(long ddmStructureId, long fileVersionId)
           
 ActionableDynamicQuery getActionableDynamicQuery()
           
 DLFileEntryMetadata getDLFileEntryMetadata(long fileEntryMetadataId)
          Returns the document library file entry metadata with the primary key.
 DLFileEntryMetadata getDLFileEntryMetadataByUuidAndCompanyId(String uuid, long companyId)
          Returns the document library file entry metadata with the matching UUID and company.
 List<DLFileEntryMetadata> getDLFileEntryMetadatas(int start, int end)
          Returns a range of all the document library file entry metadatas.
 int getDLFileEntryMetadatasCount()
          Returns the number of document library file entry metadatas.
 DLFileEntryMetadata getFileEntryMetadata(long fileEntryMetadataId)
           
 DLFileEntryMetadata getFileEntryMetadata(long ddmStructureId, long fileVersionId)
           
 long getFileEntryMetadataCount(long fileEntryId, long fileVersionId)
          Deprecated. As of 6.2.0, replaced by getFileVersionFileEntryMetadatasCount(long)
 List<DLFileEntryMetadata> getFileVersionFileEntryMetadatas(long fileVersionId)
           
 long getFileVersionFileEntryMetadatasCount(long fileVersionId)
           
 IndexableActionableDynamicQuery getIndexableActionableDynamicQuery()
           
 List<DLFileEntryMetadata> getMismatchedCompanyIdFileEntryMetadatas()
           
 List<DLFileEntryMetadata> getNoStructuresFileEntryMetadatas()
           
 String getOSGiServiceIdentifier()
          Returns the OSGi service identifier.
 PersistedModel getPersistedModel(Serializable primaryKeyObj)
           
 DLFileEntryMetadataLocalService getWrappedService()
           
 void setWrappedService(DLFileEntryMetadataLocalService dlFileEntryMetadataLocalService)
           
 DLFileEntryMetadata updateDLFileEntryMetadata(DLFileEntryMetadata dlFileEntryMetadata)
          Updates the document library file entry metadata in the database or adds it if it does not yet exist.
 void updateFileEntryMetadata(long companyId, List<DDMStructure> ddmStructures, long fileEntryId, long fileVersionId, Map<String,DDMFormValues> ddmFormValuesMap, ServiceContext serviceContext)
           
 void updateFileEntryMetadata(long fileEntryTypeId, long fileEntryId, long fileVersionId, Map<String,DDMFormValues> ddmFormValuesMap, ServiceContext serviceContext)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DLFileEntryMetadataLocalServiceWrapper

public DLFileEntryMetadataLocalServiceWrapper(DLFileEntryMetadataLocalService dlFileEntryMetadataLocalService)
Method Detail

addDLFileEntryMetadata

public DLFileEntryMetadata addDLFileEntryMetadata(DLFileEntryMetadata dlFileEntryMetadata)
Adds the document library file entry metadata to the database. Also notifies the appropriate model listeners.

Specified by:
addDLFileEntryMetadata in interface DLFileEntryMetadataLocalService
Parameters:
dlFileEntryMetadata - the document library file entry metadata
Returns:
the document library file entry metadata that was added

createDLFileEntryMetadata

public DLFileEntryMetadata createDLFileEntryMetadata(long fileEntryMetadataId)
Creates a new document library file entry metadata with the primary key. Does not add the document library file entry metadata to the database.

Specified by:
createDLFileEntryMetadata in interface DLFileEntryMetadataLocalService
Parameters:
fileEntryMetadataId - the primary key for the new document library file entry metadata
Returns:
the new document library file entry metadata

deleteDLFileEntryMetadata

public DLFileEntryMetadata deleteDLFileEntryMetadata(DLFileEntryMetadata dlFileEntryMetadata)
Deletes the document library file entry metadata from the database. Also notifies the appropriate model listeners.

Specified by:
deleteDLFileEntryMetadata in interface DLFileEntryMetadataLocalService
Parameters:
dlFileEntryMetadata - the document library file entry metadata
Returns:
the document library file entry metadata that was removed

deleteDLFileEntryMetadata

public DLFileEntryMetadata deleteDLFileEntryMetadata(long fileEntryMetadataId)
                                              throws PortalException
Deletes the document library file entry metadata with the primary key from the database. Also notifies the appropriate model listeners.

Specified by:
deleteDLFileEntryMetadata in interface DLFileEntryMetadataLocalService
Parameters:
fileEntryMetadataId - the primary key of the document library file entry metadata
Returns:
the document library file entry metadata that was removed
Throws:
PortalException - if a document library file entry metadata with the primary key could not be found

deleteFileEntryMetadata

public void deleteFileEntryMetadata(long fileEntryId)
                             throws PortalException
Specified by:
deleteFileEntryMetadata in interface DLFileEntryMetadataLocalService
Throws:
PortalException

deleteFileEntryMetadata

public void deleteFileEntryMetadata(DLFileEntryMetadata fileEntryMetadata)
                             throws PortalException
Specified by:
deleteFileEntryMetadata in interface DLFileEntryMetadataLocalService
Throws:
PortalException

deleteFileVersionFileEntryMetadata

public void deleteFileVersionFileEntryMetadata(long fileVersionId)
                                        throws PortalException
Specified by:
deleteFileVersionFileEntryMetadata in interface DLFileEntryMetadataLocalService
Throws:
PortalException

deletePersistedModel

public PersistedModel deletePersistedModel(PersistedModel persistedModel)
                                    throws PortalException
Specified by:
deletePersistedModel in interface PersistedModelLocalService
Specified by:
deletePersistedModel in interface DLFileEntryMetadataLocalService
Throws:
PortalException

dynamicQuery

public DynamicQuery dynamicQuery()
Specified by:
dynamicQuery in interface DLFileEntryMetadataLocalService

dynamicQuery

public <T> List<T> dynamicQuery(DynamicQuery dynamicQuery)
Performs a dynamic query on the database and returns the matching rows.

Specified by:
dynamicQuery in interface DLFileEntryMetadataLocalService
Parameters:
dynamicQuery - the dynamic query
Returns:
the matching rows

dynamicQuery

public <T> List<T> dynamicQuery(DynamicQuery dynamicQuery,
                                int start,
                                int end)
Performs a dynamic query on the database and returns a range of the matching rows.

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. 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 QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from DLFileEntryMetadataModelImpl. 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.

Specified by:
dynamicQuery in interface DLFileEntryMetadataLocalService
Parameters:
dynamicQuery - the dynamic query
start - the lower bound of the range of model instances
end - the upper bound of the range of model instances (not inclusive)
Returns:
the range of matching rows

dynamicQuery

public <T> 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.

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. 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 QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from DLFileEntryMetadataModelImpl. 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.

Specified by:
dynamicQuery in interface DLFileEntryMetadataLocalService
Parameters:
dynamicQuery - the dynamic query
start - the lower bound of the range of model instances
end - the upper bound of the range of model instances (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching rows

dynamicQueryCount

public long dynamicQueryCount(DynamicQuery dynamicQuery)
Returns the number of rows matching the dynamic query.

Specified by:
dynamicQueryCount in interface DLFileEntryMetadataLocalService
Parameters:
dynamicQuery - the dynamic query
Returns:
the number of rows matching the dynamic query

dynamicQueryCount

public long dynamicQueryCount(DynamicQuery dynamicQuery,
                              Projection projection)
Returns the number of rows matching the dynamic query.

Specified by:
dynamicQueryCount in interface DLFileEntryMetadataLocalService
Parameters:
dynamicQuery - the dynamic query
projection - the projection to apply to the query
Returns:
the number of rows matching the dynamic query

fetchDLFileEntryMetadata

public DLFileEntryMetadata fetchDLFileEntryMetadata(long fileEntryMetadataId)
Specified by:
fetchDLFileEntryMetadata in interface DLFileEntryMetadataLocalService

fetchDLFileEntryMetadataByUuidAndCompanyId

public DLFileEntryMetadata fetchDLFileEntryMetadataByUuidAndCompanyId(String uuid,
                                                                      long companyId)
Returns the document library file entry metadata with the matching UUID and company.

Specified by:
fetchDLFileEntryMetadataByUuidAndCompanyId in interface DLFileEntryMetadataLocalService
Parameters:
uuid - the document library file entry metadata's UUID
companyId - the primary key of the company
Returns:
the matching document library file entry metadata, or null if a matching document library file entry metadata could not be found

fetchFileEntryMetadata

public DLFileEntryMetadata fetchFileEntryMetadata(long ddmStructureId,
                                                  long fileVersionId)
Specified by:
fetchFileEntryMetadata in interface DLFileEntryMetadataLocalService

fetchFileEntryMetadata

public DLFileEntryMetadata fetchFileEntryMetadata(long fileEntryMetadataId)
Specified by:
fetchFileEntryMetadata in interface DLFileEntryMetadataLocalService

getActionableDynamicQuery

public ActionableDynamicQuery getActionableDynamicQuery()
Specified by:
getActionableDynamicQuery in interface DLFileEntryMetadataLocalService

getDLFileEntryMetadata

public DLFileEntryMetadata getDLFileEntryMetadata(long fileEntryMetadataId)
                                           throws PortalException
Returns the document library file entry metadata with the primary key.

Specified by:
getDLFileEntryMetadata in interface DLFileEntryMetadataLocalService
Parameters:
fileEntryMetadataId - the primary key of the document library file entry metadata
Returns:
the document library file entry metadata
Throws:
PortalException - if a document library file entry metadata with the primary key could not be found

getDLFileEntryMetadataByUuidAndCompanyId

public DLFileEntryMetadata getDLFileEntryMetadataByUuidAndCompanyId(String uuid,
                                                                    long companyId)
                                                             throws PortalException
Returns the document library file entry metadata with the matching UUID and company.

Specified by:
getDLFileEntryMetadataByUuidAndCompanyId in interface DLFileEntryMetadataLocalService
Parameters:
uuid - the document library file entry metadata's UUID
companyId - the primary key of the company
Returns:
the matching document library file entry metadata
Throws:
PortalException - if a matching document library file entry metadata could not be found

getDLFileEntryMetadatas

public List<DLFileEntryMetadata> getDLFileEntryMetadatas(int start,
                                                         int end)
Returns a range of all the document library file entry metadatas.

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. 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 QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from DLFileEntryMetadataModelImpl. 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.

Specified by:
getDLFileEntryMetadatas in interface DLFileEntryMetadataLocalService
Parameters:
start - the lower bound of the range of document library file entry metadatas
end - the upper bound of the range of document library file entry metadatas (not inclusive)
Returns:
the range of document library file entry metadatas

getDLFileEntryMetadatasCount

public int getDLFileEntryMetadatasCount()
Returns the number of document library file entry metadatas.

Specified by:
getDLFileEntryMetadatasCount in interface DLFileEntryMetadataLocalService
Returns:
the number of document library file entry metadatas

getFileEntryMetadata

public DLFileEntryMetadata getFileEntryMetadata(long ddmStructureId,
                                                long fileVersionId)
                                         throws PortalException
Specified by:
getFileEntryMetadata in interface DLFileEntryMetadataLocalService
Throws:
PortalException

getFileEntryMetadata

public DLFileEntryMetadata getFileEntryMetadata(long fileEntryMetadataId)
                                         throws PortalException
Specified by:
getFileEntryMetadata in interface DLFileEntryMetadataLocalService
Throws:
PortalException

getFileEntryMetadataCount

@Deprecated
public long getFileEntryMetadataCount(long fileEntryId,
                                                 long fileVersionId)
Deprecated. As of 6.2.0, replaced by getFileVersionFileEntryMetadatasCount(long)

Specified by:
getFileEntryMetadataCount in interface DLFileEntryMetadataLocalService

getFileVersionFileEntryMetadatas

public List<DLFileEntryMetadata> getFileVersionFileEntryMetadatas(long fileVersionId)
Specified by:
getFileVersionFileEntryMetadatas in interface DLFileEntryMetadataLocalService

getFileVersionFileEntryMetadatasCount

public long getFileVersionFileEntryMetadatasCount(long fileVersionId)
Specified by:
getFileVersionFileEntryMetadatasCount in interface DLFileEntryMetadataLocalService

getIndexableActionableDynamicQuery

public IndexableActionableDynamicQuery getIndexableActionableDynamicQuery()
Specified by:
getIndexableActionableDynamicQuery in interface DLFileEntryMetadataLocalService

getMismatchedCompanyIdFileEntryMetadatas

public List<DLFileEntryMetadata> getMismatchedCompanyIdFileEntryMetadatas()
Specified by:
getMismatchedCompanyIdFileEntryMetadatas in interface DLFileEntryMetadataLocalService

getNoStructuresFileEntryMetadatas

public List<DLFileEntryMetadata> getNoStructuresFileEntryMetadatas()
Specified by:
getNoStructuresFileEntryMetadatas in interface DLFileEntryMetadataLocalService

getOSGiServiceIdentifier

public String getOSGiServiceIdentifier()
Returns the OSGi service identifier.

Specified by:
getOSGiServiceIdentifier in interface DLFileEntryMetadataLocalService
Returns:
the OSGi service identifier

getPersistedModel

public PersistedModel getPersistedModel(Serializable primaryKeyObj)
                                 throws PortalException
Specified by:
getPersistedModel in interface PersistedModelLocalService
Specified by:
getPersistedModel in interface DLFileEntryMetadataLocalService
Throws:
PortalException

updateDLFileEntryMetadata

public DLFileEntryMetadata updateDLFileEntryMetadata(DLFileEntryMetadata dlFileEntryMetadata)
Updates the document library file entry metadata in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.

Specified by:
updateDLFileEntryMetadata in interface DLFileEntryMetadataLocalService
Parameters:
dlFileEntryMetadata - the document library file entry metadata
Returns:
the document library file entry metadata that was updated

updateFileEntryMetadata

public void updateFileEntryMetadata(long companyId,
                                    List<DDMStructure> ddmStructures,
                                    long fileEntryId,
                                    long fileVersionId,
                                    Map<String,DDMFormValues> ddmFormValuesMap,
                                    ServiceContext serviceContext)
                             throws PortalException
Specified by:
updateFileEntryMetadata in interface DLFileEntryMetadataLocalService
Throws:
PortalException

updateFileEntryMetadata

public void updateFileEntryMetadata(long fileEntryTypeId,
                                    long fileEntryId,
                                    long fileVersionId,
                                    Map<String,DDMFormValues> ddmFormValuesMap,
                                    ServiceContext serviceContext)
                             throws PortalException
Specified by:
updateFileEntryMetadata in interface DLFileEntryMetadataLocalService
Throws:
PortalException

getWrappedService

public DLFileEntryMetadataLocalService getWrappedService()
Specified by:
getWrappedService in interface ServiceWrapper<DLFileEntryMetadataLocalService>

setWrappedService

public void setWrappedService(DLFileEntryMetadataLocalService dlFileEntryMetadataLocalService)
Specified by:
setWrappedService in interface ServiceWrapper<DLFileEntryMetadataLocalService>

Liferay 7.0-ce-b4