Class AMImageEntryLocalServiceWrapper
- All Implemented Interfaces:
AMImageEntryLocalService,com.liferay.portal.kernel.service.BaseLocalService,com.liferay.portal.kernel.service.change.tracking.CTService<AMImageEntry>,com.liferay.portal.kernel.service.PersistedModelLocalService,com.liferay.portal.kernel.service.ServiceWrapper<AMImageEntryLocalService>
AMImageEntryLocalService.- See Also:
- Generated:
-
Constructor Summary
ConstructorsConstructorDescriptionAMImageEntryLocalServiceWrapper(AMImageEntryLocalService amImageEntryLocalService) -
Method Summary
Modifier and TypeMethodDescriptionaddAMImageEntry(AMImageConfigurationEntry amImageConfigurationEntry, com.liferay.portal.kernel.repository.model.FileVersion fileVersion, int height, int width, InputStream inputStream, long size) Adds an adaptive media image entry in the database and stores the image bytes in the file store.addAMImageEntry(AMImageEntry amImageEntry) Adds the am image entry to the database.createAMImageEntry(long amImageEntryId) Creates a new am image entry with the primary key.com.liferay.portal.kernel.model.PersistedModelcreatePersistedModel(Serializable primaryKeyObj) voiddeleteAMImageEntries(long companyId, AMImageConfigurationEntry amImageConfigurationEntry) Deletes all the adaptive media images generated for the configuration in the company.deleteAMImageEntry(long amImageEntryId) Deletes the am image entry with the primary key from the database.deleteAMImageEntry(AMImageEntry amImageEntry) Deletes the am image entry from the database.voiddeleteAMImageEntryFileVersion(com.liferay.portal.kernel.repository.model.FileVersion fileVersion) Deletes all the adaptive media images generated for a file version.voiddeleteAMImageEntryFileVersion(String configurationUuid, long fileVersionId) Deletes adaptive media images generated for a file version under a given configuration.com.liferay.portal.kernel.model.PersistedModeldeletePersistedModel(com.liferay.portal.kernel.model.PersistedModel persistedModel) <T> TdslQuery(com.liferay.petra.sql.dsl.query.DSLQuery dslQuery) intdslQueryCount(com.liferay.petra.sql.dsl.query.DSLQuery dslQuery) com.liferay.portal.kernel.dao.orm.DynamicQuery<T> List<T>dynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) Performs a dynamic query on the database and returns the matching rows.<T> List<T>dynamicQuery(com.liferay.portal.kernel.dao.orm.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(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<T> orderByComparator) Performs a dynamic query on the database and returns an ordered range of the matching rows.longdynamicQueryCount(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) Returns the number of rows matching the dynamic query.longdynamicQueryCount(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, com.liferay.portal.kernel.dao.orm.Projection projection) Returns the number of rows matching the dynamic query.fetchAMImageEntry(long amImageEntryId) fetchAMImageEntry(String configurationUuid, long fileVersionId) Returns the adaptive media image entry generated for the configuration and file version.fetchAMImageEntryByUuidAndGroupId(String uuid, long groupId) Returns the am image entry matching the UUID and group.com.liferay.portal.kernel.dao.orm.ActionableDynamicQuerygetAMImageEntries(int start, int end) Returns a range of all the am image entries.getAMImageEntries(long fileVersionId) Returns the list of adaptive media image entries generated for the file version.getAMImageEntriesByUuidAndCompanyId(String uuid, long companyId) Returns all the am image entries matching the UUID and company.getAMImageEntriesByUuidAndCompanyId(String uuid, long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<AMImageEntry> orderByComparator) Returns a range of am image entries matching the UUID and company.intReturns the number of am image entries.intgetAMImageEntriesCount(long companyId, String configurationUuid) Returns the number of adaptive media image entries generated for the configuration in the company.getAMImageEntry(long amImageEntryId) Returns the am image entry with the primary key.getAMImageEntryByUuidAndGroupId(String uuid, long groupId) Returns the am image entry matching the UUID and group.getAMImageEntryContentStream(AMImageConfigurationEntry amImageConfigurationEntry, com.liferay.portal.kernel.repository.model.FileVersion fileVersion) Returns the input stream of the adaptive media image generated for a file version and configuration.com.liferay.portal.kernel.service.persistence.BasePersistence<?>com.liferay.portal.kernel.service.persistence.change.tracking.CTPersistence<AMImageEntry>intgetExpectedAMImageEntriesCount(long companyId) Returns the total number of adaptive media images that are expected to be in a company once they are generated.com.liferay.portal.kernel.dao.orm.IndexableActionableDynamicQueryReturns the OSGi service identifier.intgetPercentage(long companyId, String configurationUuid) Returns the percentage of images that have an adaptive media image generated based on the expected number of adaptive media images for a configuration in a company.intgetPercentage(long companyId, String configurationUuid, int expectedAMImageEntriesCount) com.liferay.portal.kernel.model.PersistedModelgetPersistedModel(Serializable primaryKeyObj) booleanhasAMImageEntryContent(String configurationUuid, com.liferay.portal.kernel.repository.model.FileVersion fileVersion) voidsetWrappedService(AMImageEntryLocalService amImageEntryLocalService) updateAMImageEntry(AMImageEntry amImageEntry) Updates the am image entry in the database or adds it if it does not yet exist.<R,E extends Throwable>
RupdateWithUnsafeFunction(com.liferay.petra.function.UnsafeFunction<com.liferay.portal.kernel.service.persistence.change.tracking.CTPersistence<AMImageEntry>, R, E> updateUnsafeFunction) Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.liferay.portal.kernel.service.PersistedModelLocalService
fetchPersistedModel
-
Constructor Details
-
AMImageEntryLocalServiceWrapper
public AMImageEntryLocalServiceWrapper() -
AMImageEntryLocalServiceWrapper
-
-
Method Details
-
addAMImageEntry
public AMImageEntry addAMImageEntry(AMImageConfigurationEntry amImageConfigurationEntry, com.liferay.portal.kernel.repository.model.FileVersion fileVersion, int height, int width, InputStream inputStream, long size) throws com.liferay.portal.kernel.exception.PortalException Adds an adaptive media image entry in the database and stores the image bytes in the file store.- Specified by:
addAMImageEntryin interfaceAMImageEntryLocalService- Parameters:
amImageConfigurationEntry- the configuration used to create the adaptive media imagefileVersion- the file version used to create the adaptive media imageheight- the adaptive media image's heightwidth- the adaptive media image's widthinputStream- the adaptive media image's input stream to store in the file storesize- the adaptive media image's size- Returns:
- the adaptive media image
- Throws:
PortalException- if an adaptive media image already exists for the file version and configurationcom.liferay.portal.kernel.exception.PortalException
-
addAMImageEntry
Adds the am image entry to the database. Also notifies the appropriate model listeners.Important: Inspect AMImageEntryLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.
- Specified by:
addAMImageEntryin interfaceAMImageEntryLocalService- Parameters:
amImageEntry- the am image entry- Returns:
- the am image entry that was added
-
createAMImageEntry
Creates a new am image entry with the primary key. Does not add the am image entry to the database.- Specified by:
createAMImageEntryin interfaceAMImageEntryLocalService- Parameters:
amImageEntryId- the primary key for the new am image entry- Returns:
- the new am image entry
-
createPersistedModel
public com.liferay.portal.kernel.model.PersistedModel createPersistedModel(Serializable primaryKeyObj) throws com.liferay.portal.kernel.exception.PortalException - Specified by:
createPersistedModelin interfaceAMImageEntryLocalService- Specified by:
createPersistedModelin interfacecom.liferay.portal.kernel.service.PersistedModelLocalService- Throws:
PortalExceptioncom.liferay.portal.kernel.exception.PortalException
-
deleteAMImageEntries
public void deleteAMImageEntries(long companyId, AMImageConfigurationEntry amImageConfigurationEntry) Deletes all the adaptive media images generated for the configuration in the company. This method deletes both the adaptive media image entry from the database and the bytes from the file store.- Specified by:
deleteAMImageEntriesin interfaceAMImageEntryLocalService- Parameters:
companyId- the primary key of the companyamImageConfigurationEntry- the configuration used to create the adaptive media image
-
deleteAMImageEntry
Deletes the am image entry from the database. Also notifies the appropriate model listeners.Important: Inspect AMImageEntryLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.
- Specified by:
deleteAMImageEntryin interfaceAMImageEntryLocalService- Parameters:
amImageEntry- the am image entry- Returns:
- the am image entry that was removed
-
deleteAMImageEntry
public AMImageEntry deleteAMImageEntry(long amImageEntryId) throws com.liferay.portal.kernel.exception.PortalException Deletes the am image entry with the primary key from the database. Also notifies the appropriate model listeners.Important: Inspect AMImageEntryLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.
- Specified by:
deleteAMImageEntryin interfaceAMImageEntryLocalService- Parameters:
amImageEntryId- the primary key of the am image entry- Returns:
- the am image entry that was removed
- Throws:
PortalException- if a am image entry with the primary key could not be foundcom.liferay.portal.kernel.exception.PortalException
-
deleteAMImageEntryFileVersion
public void deleteAMImageEntryFileVersion(com.liferay.portal.kernel.repository.model.FileVersion fileVersion) throws com.liferay.portal.kernel.exception.PortalException Deletes all the adaptive media images generated for a file version. This method deletes both the adaptive media image entry from the database and the bytes from the file store.- Specified by:
deleteAMImageEntryFileVersionin interfaceAMImageEntryLocalService- Parameters:
fileVersion- the file version- Throws:
PortalException- if the file version was not foundcom.liferay.portal.kernel.exception.PortalException
-
deleteAMImageEntryFileVersion
public void deleteAMImageEntryFileVersion(String configurationUuid, long fileVersionId) throws com.liferay.portal.kernel.exception.PortalException Deletes adaptive media images generated for a file version under a given configuration. This method deletes both the adaptive media image entry from the database and the bytes from the file store.- Specified by:
deleteAMImageEntryFileVersionin interfaceAMImageEntryLocalService- Parameters:
configurationUuid- the configuration UUIDfileVersionId- the primary key of the file version- Throws:
PortalException- if the file version was not foundcom.liferay.portal.kernel.exception.PortalException
-
deletePersistedModel
public com.liferay.portal.kernel.model.PersistedModel deletePersistedModel(com.liferay.portal.kernel.model.PersistedModel persistedModel) throws com.liferay.portal.kernel.exception.PortalException - Specified by:
deletePersistedModelin interfaceAMImageEntryLocalService- Specified by:
deletePersistedModelin interfacecom.liferay.portal.kernel.service.PersistedModelLocalService- Throws:
PortalExceptioncom.liferay.portal.kernel.exception.PortalException
-
dslQuery
public <T> T dslQuery(com.liferay.petra.sql.dsl.query.DSLQuery dslQuery) - Specified by:
dslQueryin interfaceAMImageEntryLocalService- Specified by:
dslQueryin interfacecom.liferay.portal.kernel.service.PersistedModelLocalService
-
dslQueryCount
public int dslQueryCount(com.liferay.petra.sql.dsl.query.DSLQuery dslQuery) - Specified by:
dslQueryCountin interfaceAMImageEntryLocalService- Specified by:
dslQueryCountin interfacecom.liferay.portal.kernel.service.PersistedModelLocalService
-
dynamicQuery
public com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery()- Specified by:
dynamicQueryin interfaceAMImageEntryLocalService
-
dynamicQuery
Performs a dynamic query on the database and returns the matching rows.- Specified by:
dynamicQueryin interfaceAMImageEntryLocalService- Parameters:
dynamicQuery- the dynamic query- Returns:
- the matching rows
-
dynamicQuery
public <T> List<T> dynamicQuery(com.liferay.portal.kernel.dao.orm.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 - startinstances.startandendare not primary keys, they are indexes in the result set. Thus,0refers to the first result in the set. Setting bothstartandendtocom.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POSwill return the full result set. IforderByComparatoris specified, then the query will include the given ORDER BY logic. IforderByComparatoris absent, then the query will include the default ORDER BY logic fromcom.liferay.adaptive.media.image.model.impl.AMImageEntryModelImpl.- Specified by:
dynamicQueryin interfaceAMImageEntryLocalService- Parameters:
dynamicQuery- the dynamic querystart- the lower bound of the range of model instancesend- the upper bound of the range of model instances (not inclusive)- Returns:
- the range of matching rows
-
dynamicQuery
public <T> List<T> dynamicQuery(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, int start, int end, com.liferay.portal.kernel.util.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 - startinstances.startandendare not primary keys, they are indexes in the result set. Thus,0refers to the first result in the set. Setting bothstartandendtocom.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POSwill return the full result set. IforderByComparatoris specified, then the query will include the given ORDER BY logic. IforderByComparatoris absent, then the query will include the default ORDER BY logic fromcom.liferay.adaptive.media.image.model.impl.AMImageEntryModelImpl.- Specified by:
dynamicQueryin interfaceAMImageEntryLocalService- Parameters:
dynamicQuery- 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 (optionallynull)- Returns:
- the ordered range of matching rows
-
dynamicQueryCount
public long dynamicQueryCount(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery) Returns the number of rows matching the dynamic query.- Specified by:
dynamicQueryCountin interfaceAMImageEntryLocalService- Parameters:
dynamicQuery- the dynamic query- Returns:
- the number of rows matching the dynamic query
-
dynamicQueryCount
public long dynamicQueryCount(com.liferay.portal.kernel.dao.orm.DynamicQuery dynamicQuery, com.liferay.portal.kernel.dao.orm.Projection projection) Returns the number of rows matching the dynamic query.- Specified by:
dynamicQueryCountin interfaceAMImageEntryLocalService- Parameters:
dynamicQuery- the dynamic queryprojection- the projection to apply to the query- Returns:
- the number of rows matching the dynamic query
-
fetchAMImageEntry
- Specified by:
fetchAMImageEntryin interfaceAMImageEntryLocalService
-
fetchAMImageEntry
Returns the adaptive media image entry generated for the configuration and file version.- Specified by:
fetchAMImageEntryin interfaceAMImageEntryLocalService- Parameters:
configurationUuid- the UUID of the configuration used to create the adaptive media imagefileVersionId- the primary key of the file version- Returns:
- the matching adaptive media image entry, or
nullif a matching adaptive media image entry could not be found
-
fetchAMImageEntryByUuidAndGroupId
Returns the am image entry matching the UUID and group.- Specified by:
fetchAMImageEntryByUuidAndGroupIdin interfaceAMImageEntryLocalService- Parameters:
uuid- the am image entry's UUIDgroupId- the primary key of the group- Returns:
- the matching am image entry, or
nullif a matching am image entry could not be found
-
getActionableDynamicQuery
public com.liferay.portal.kernel.dao.orm.ActionableDynamicQuery getActionableDynamicQuery()- Specified by:
getActionableDynamicQueryin interfaceAMImageEntryLocalService
-
getAMImageEntries
Returns a range of all the am image entries.Useful when paginating results. Returns a maximum of
end - startinstances.startandendare not primary keys, they are indexes in the result set. Thus,0refers to the first result in the set. Setting bothstartandendtocom.liferay.portal.kernel.dao.orm.QueryUtil#ALL_POSwill return the full result set. IforderByComparatoris specified, then the query will include the given ORDER BY logic. IforderByComparatoris absent, then the query will include the default ORDER BY logic fromcom.liferay.adaptive.media.image.model.impl.AMImageEntryModelImpl.- Specified by:
getAMImageEntriesin interfaceAMImageEntryLocalService- Parameters:
start- the lower bound of the range of am image entriesend- the upper bound of the range of am image entries (not inclusive)- Returns:
- the range of am image entries
-
getAMImageEntries
Returns the list of adaptive media image entries generated for the file version.- Specified by:
getAMImageEntriesin interfaceAMImageEntryLocalService- Parameters:
fileVersionId- the primary key of the file version- Returns:
- the list of adaptive media image entries in the file version
-
getAMImageEntriesByUuidAndCompanyId
Returns all the am image entries matching the UUID and company.- Specified by:
getAMImageEntriesByUuidAndCompanyIdin interfaceAMImageEntryLocalService- Parameters:
uuid- the UUID of the am image entriescompanyId- the primary key of the company- Returns:
- the matching am image entries, or an empty list if no matches were found
-
getAMImageEntriesByUuidAndCompanyId
public List<AMImageEntry> getAMImageEntriesByUuidAndCompanyId(String uuid, long companyId, int start, int end, com.liferay.portal.kernel.util.OrderByComparator<AMImageEntry> orderByComparator) Returns a range of am image entries matching the UUID and company.- Specified by:
getAMImageEntriesByUuidAndCompanyIdin interfaceAMImageEntryLocalService- Parameters:
uuid- the UUID of the am image entriescompanyId- the primary key of the companystart- the lower bound of the range of am image entriesend- the upper bound of the range of am image entries (not inclusive)orderByComparator- the comparator to order the results by (optionallynull)- Returns:
- the range of matching am image entries, or an empty list if no matches were found
-
getAMImageEntriesCount
public int getAMImageEntriesCount()Returns the number of am image entries.- Specified by:
getAMImageEntriesCountin interfaceAMImageEntryLocalService- Returns:
- the number of am image entries
-
getAMImageEntriesCount
Returns the number of adaptive media image entries generated for the configuration in the company.- Specified by:
getAMImageEntriesCountin interfaceAMImageEntryLocalService- Parameters:
companyId- the primary key of the companyconfigurationUuid- the UUID of the configuration used to create the adaptive media image- Returns:
- the number of adaptive media image entries in the company for the configuration
-
getAMImageEntry
public AMImageEntry getAMImageEntry(long amImageEntryId) throws com.liferay.portal.kernel.exception.PortalException Returns the am image entry with the primary key.- Specified by:
getAMImageEntryin interfaceAMImageEntryLocalService- Parameters:
amImageEntryId- the primary key of the am image entry- Returns:
- the am image entry
- Throws:
PortalException- if a am image entry with the primary key could not be foundcom.liferay.portal.kernel.exception.PortalException
-
getAMImageEntryByUuidAndGroupId
public AMImageEntry getAMImageEntryByUuidAndGroupId(String uuid, long groupId) throws com.liferay.portal.kernel.exception.PortalException Returns the am image entry matching the UUID and group.- Specified by:
getAMImageEntryByUuidAndGroupIdin interfaceAMImageEntryLocalService- Parameters:
uuid- the am image entry's UUIDgroupId- the primary key of the group- Returns:
- the matching am image entry
- Throws:
PortalException- if a matching am image entry could not be foundcom.liferay.portal.kernel.exception.PortalException
-
getAMImageEntryContentStream
public InputStream getAMImageEntryContentStream(AMImageConfigurationEntry amImageConfigurationEntry, com.liferay.portal.kernel.repository.model.FileVersion fileVersion) Returns the input stream of the adaptive media image generated for a file version and configuration.- Specified by:
getAMImageEntryContentStreamin interfaceAMImageEntryLocalService- Parameters:
amImageConfigurationEntry- the configuration used to create the adaptive media imagefileVersion- the file version used to create the adaptive media image- Returns:
- the input stream of the adaptive media image generated for a file version and configuration
-
getExpectedAMImageEntriesCount
public int getExpectedAMImageEntriesCount(long companyId) Returns the total number of adaptive media images that are expected to be in a company once they are generated. The number of adaptive media images could be less if there are images that haven't generated the adaptive media image yet.- Specified by:
getExpectedAMImageEntriesCountin interfaceAMImageEntryLocalService- Parameters:
companyId- the primary key of the company- Returns:
- the number of expected adaptive media images for a company
-
getIndexableActionableDynamicQuery
public com.liferay.portal.kernel.dao.orm.IndexableActionableDynamicQuery getIndexableActionableDynamicQuery()- Specified by:
getIndexableActionableDynamicQueryin interfaceAMImageEntryLocalService
-
getOSGiServiceIdentifier
Returns the OSGi service identifier.- Specified by:
getOSGiServiceIdentifierin interfaceAMImageEntryLocalService- Returns:
- the OSGi service identifier
-
getPercentage
Returns the percentage of images that have an adaptive media image generated based on the expected number of adaptive media images for a configuration in a company.- Specified by:
getPercentagein interfaceAMImageEntryLocalService- Parameters:
companyId- the primary key of the companyconfigurationUuid- the UUID of the configuration used to create the adaptive media image- Returns:
- the percentage of images that have an adaptive media image out of the expected adaptive media images
-
getPercentage
- Specified by:
getPercentagein interfaceAMImageEntryLocalService
-
getPersistedModel
public com.liferay.portal.kernel.model.PersistedModel getPersistedModel(Serializable primaryKeyObj) throws com.liferay.portal.kernel.exception.PortalException - Specified by:
getPersistedModelin interfaceAMImageEntryLocalService- Specified by:
getPersistedModelin interfacecom.liferay.portal.kernel.service.PersistedModelLocalService- Throws:
PortalExceptioncom.liferay.portal.kernel.exception.PortalException
-
hasAMImageEntryContent
public boolean hasAMImageEntryContent(String configurationUuid, com.liferay.portal.kernel.repository.model.FileVersion fileVersion) - Specified by:
hasAMImageEntryContentin interfaceAMImageEntryLocalService
-
updateAMImageEntry
Updates the am image entry in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.Important: Inspect AMImageEntryLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.
- Specified by:
updateAMImageEntryin interfaceAMImageEntryLocalService- Parameters:
amImageEntry- the am image entry- Returns:
- the am image entry that was updated
-
getBasePersistence
public com.liferay.portal.kernel.service.persistence.BasePersistence<?> getBasePersistence()- Specified by:
getBasePersistencein interfacecom.liferay.portal.kernel.service.PersistedModelLocalService
-
getCTPersistence
public com.liferay.portal.kernel.service.persistence.change.tracking.CTPersistence<AMImageEntry> getCTPersistence()- Specified by:
getCTPersistencein interfaceAMImageEntryLocalService- Specified by:
getCTPersistencein interfacecom.liferay.portal.kernel.service.change.tracking.CTService<AMImageEntry>
-
getModelClass
- Specified by:
getModelClassin interfaceAMImageEntryLocalService- Specified by:
getModelClassin interfacecom.liferay.portal.kernel.service.change.tracking.CTService<AMImageEntry>
-
updateWithUnsafeFunction
public <R,E extends Throwable> R updateWithUnsafeFunction(com.liferay.petra.function.UnsafeFunction<com.liferay.portal.kernel.service.persistence.change.tracking.CTPersistence<AMImageEntry>, R, throws EE> updateUnsafeFunction) - Specified by:
updateWithUnsafeFunctionin interfaceAMImageEntryLocalService- Specified by:
updateWithUnsafeFunctionin interfacecom.liferay.portal.kernel.service.change.tracking.CTService<AMImageEntry>- Throws:
E extends Throwable
-
getWrappedService
- Specified by:
getWrappedServicein interfacecom.liferay.portal.kernel.service.ServiceWrapper<AMImageEntryLocalService>
-
setWrappedService
- Specified by:
setWrappedServicein interfacecom.liferay.portal.kernel.service.ServiceWrapper<AMImageEntryLocalService>
-