Liferay 6.2-ce-ga5

Uses of Interface
com.liferay.portlet.documentlibrary.model.DLContent

Packages that use DLContent
com.liferay.portlet.documentlibrary.model   
com.liferay.portlet.documentlibrary.service This package defines the document library portlet service local and remote interfaces, utilities, and wrappers. 
com.liferay.portlet.documentlibrary.service.persistence   
 

Uses of DLContent in com.liferay.portlet.documentlibrary.model
 

Classes in com.liferay.portlet.documentlibrary.model that implement DLContent
 class DLContentWrapper
           This class is a wrapper for DLContent.
 

Methods in com.liferay.portlet.documentlibrary.model that return DLContent
 DLContent DLContentWrapper.getWrappedDLContent()
          Deprecated. As of 6.1.0, replaced by DLContentWrapper.getWrappedModel()
 DLContent DLContentWrapper.getWrappedModel()
           
 DLContent DLContentModel.toEscapedModel()
           
 DLContent DLContentWrapper.toEscapedModel()
           
 DLContent DLContentModel.toUnescapedModel()
           
 DLContent DLContentWrapper.toUnescapedModel()
           
 

Methods in com.liferay.portlet.documentlibrary.model that return types with arguments of type DLContent
 CacheModel<DLContent> DLContentModel.toCacheModel()
           
 CacheModel<DLContent> DLContentWrapper.toCacheModel()
           
 

Methods in com.liferay.portlet.documentlibrary.model with parameters of type DLContent
 int DLContentModel.compareTo(DLContent dlContent)
           
 int DLContentWrapper.compareTo(DLContent dlContent)
           
static DLContentSoap DLContentSoap.toSoapModel(DLContent model)
           
static DLContentSoap[] DLContentSoap.toSoapModels(DLContent[] models)
           
static DLContentSoap[][] DLContentSoap.toSoapModels(DLContent[][] models)
           
 

Method parameters in com.liferay.portlet.documentlibrary.model with type arguments of type DLContent
static DLContentSoap[] DLContentSoap.toSoapModels(List<DLContent> models)
           
 

Constructors in com.liferay.portlet.documentlibrary.model with parameters of type DLContent
DLContentWrapper(DLContent dlContent)
           
 

Uses of DLContent in com.liferay.portlet.documentlibrary.service
 

Methods in com.liferay.portlet.documentlibrary.service that return DLContent
 DLContent DLContentLocalServiceWrapper.addContent(long companyId, long repositoryId, String path, String version, byte[] bytes)
           
static DLContent DLContentLocalServiceUtil.addContent(long companyId, long repositoryId, String path, String version, byte[] bytes)
           
 DLContent DLContentLocalService.addContent(long companyId, long repositoryId, String path, String version, byte[] bytes)
           
 DLContent DLContentLocalServiceWrapper.addContent(long companyId, long repositoryId, String path, String version, InputStream inputStream, long size)
           
static DLContent DLContentLocalServiceUtil.addContent(long companyId, long repositoryId, String path, String version, InputStream inputStream, long size)
           
 DLContent DLContentLocalService.addContent(long companyId, long repositoryId, String path, String version, InputStream inputStream, long size)
           
 DLContent DLContentLocalServiceWrapper.addDLContent(DLContent dlContent)
          Adds the document library content to the database.
static DLContent DLContentLocalServiceUtil.addDLContent(DLContent dlContent)
          Adds the document library content to the database.
 DLContent DLContentLocalService.addDLContent(DLContent dlContent)
          Adds the document library content to the database.
 DLContent DLContentLocalServiceWrapper.createDLContent(long contentId)
          Creates a new document library content with the primary key.
static DLContent DLContentLocalServiceUtil.createDLContent(long contentId)
          Creates a new document library content with the primary key.
 DLContent DLContentLocalService.createDLContent(long contentId)
          Creates a new document library content with the primary key.
 DLContent DLContentLocalServiceWrapper.deleteDLContent(DLContent dlContent)
          Deletes the document library content from the database.
static DLContent DLContentLocalServiceUtil.deleteDLContent(DLContent dlContent)
          Deletes the document library content from the database.
 DLContent DLContentLocalService.deleteDLContent(DLContent dlContent)
          Deletes the document library content from the database.
 DLContent DLContentLocalServiceWrapper.deleteDLContent(long contentId)
          Deletes the document library content with the primary key from the database.
static DLContent DLContentLocalServiceUtil.deleteDLContent(long contentId)
          Deletes the document library content with the primary key from the database.
 DLContent DLContentLocalService.deleteDLContent(long contentId)
          Deletes the document library content with the primary key from the database.
 DLContent DLContentLocalServiceWrapper.fetchDLContent(long contentId)
           
static DLContent DLContentLocalServiceUtil.fetchDLContent(long contentId)
           
 DLContent DLContentLocalService.fetchDLContent(long contentId)
           
 DLContent DLContentLocalServiceWrapper.getContent(long companyId, long repositoryId, String path)
           
static DLContent DLContentLocalServiceUtil.getContent(long companyId, long repositoryId, String path)
           
 DLContent DLContentLocalService.getContent(long companyId, long repositoryId, String path)
           
 DLContent DLContentLocalServiceWrapper.getContent(long companyId, long repositoryId, String path, String version)
           
static DLContent DLContentLocalServiceUtil.getContent(long companyId, long repositoryId, String path, String version)
           
 DLContent DLContentLocalService.getContent(long companyId, long repositoryId, String path, String version)
           
 DLContent DLContentLocalServiceWrapper.getDLContent(long contentId)
          Returns the document library content with the primary key.
static DLContent DLContentLocalServiceUtil.getDLContent(long contentId)
          Returns the document library content with the primary key.
 DLContent DLContentLocalService.getDLContent(long contentId)
          Returns the document library content with the primary key.
 DLContent DLContentLocalServiceWrapper.updateDLContent(DLContent dlContent)
          Updates the document library content in the database or adds it if it does not yet exist.
static DLContent DLContentLocalServiceUtil.updateDLContent(DLContent dlContent)
          Updates the document library content in the database or adds it if it does not yet exist.
 DLContent DLContentLocalService.updateDLContent(DLContent dlContent)
          Updates the document library content in the database or adds it if it does not yet exist.
 

Methods in com.liferay.portlet.documentlibrary.service that return types with arguments of type DLContent
 List<DLContent> DLContentLocalServiceWrapper.getContents(long companyId, long repositoryId)
           
static List<DLContent> DLContentLocalServiceUtil.getContents(long companyId, long repositoryId)
           
 List<DLContent> DLContentLocalService.getContents(long companyId, long repositoryId)
           
 List<DLContent> DLContentLocalServiceWrapper.getContents(long companyId, long repositoryId, String path)
           
static List<DLContent> DLContentLocalServiceUtil.getContents(long companyId, long repositoryId, String path)
           
 List<DLContent> DLContentLocalService.getContents(long companyId, long repositoryId, String path)
           
 List<DLContent> DLContentLocalServiceWrapper.getContentsByDirectory(long companyId, long repositoryId, String dirName)
           
static List<DLContent> DLContentLocalServiceUtil.getContentsByDirectory(long companyId, long repositoryId, String dirName)
           
 List<DLContent> DLContentLocalService.getContentsByDirectory(long companyId, long repositoryId, String dirName)
           
 List<DLContent> DLContentLocalServiceWrapper.getDLContents(int start, int end)
          Returns a range of all the document library contents.
static List<DLContent> DLContentLocalServiceUtil.getDLContents(int start, int end)
          Returns a range of all the document library contents.
 List<DLContent> DLContentLocalService.getDLContents(int start, int end)
          Returns a range of all the document library contents.
 

Methods in com.liferay.portlet.documentlibrary.service with parameters of type DLContent
 DLContent DLContentLocalServiceWrapper.addDLContent(DLContent dlContent)
          Adds the document library content to the database.
static DLContent DLContentLocalServiceUtil.addDLContent(DLContent dlContent)
          Adds the document library content to the database.
 DLContent DLContentLocalService.addDLContent(DLContent dlContent)
          Adds the document library content to the database.
 DLContent DLContentLocalServiceWrapper.deleteDLContent(DLContent dlContent)
          Deletes the document library content from the database.
static DLContent DLContentLocalServiceUtil.deleteDLContent(DLContent dlContent)
          Deletes the document library content from the database.
 DLContent DLContentLocalService.deleteDLContent(DLContent dlContent)
          Deletes the document library content from the database.
 DLContent DLContentLocalServiceWrapper.updateDLContent(DLContent dlContent)
          Updates the document library content in the database or adds it if it does not yet exist.
static DLContent DLContentLocalServiceUtil.updateDLContent(DLContent dlContent)
          Updates the document library content in the database or adds it if it does not yet exist.
 DLContent DLContentLocalService.updateDLContent(DLContent dlContent)
          Updates the document library content in the database or adds it if it does not yet exist.
 

Uses of DLContent in com.liferay.portlet.documentlibrary.service.persistence
 

Methods in com.liferay.portlet.documentlibrary.service.persistence that return DLContent
static DLContent DLContentUtil.create(long contentId)
          Creates a new document library content with the primary key.
 DLContent DLContentPersistence.create(long contentId)
          Creates a new document library content with the primary key.
static DLContent DLContentUtil.fetchByC_R_First(long companyId, long repositoryId, OrderByComparator orderByComparator)
          Returns the first document library content in the ordered set where companyId = ? and repositoryId = ?.
 DLContent DLContentPersistence.fetchByC_R_First(long companyId, long repositoryId, OrderByComparator orderByComparator)
          Returns the first document library content in the ordered set where companyId = ? and repositoryId = ?.
static DLContent DLContentUtil.fetchByC_R_Last(long companyId, long repositoryId, OrderByComparator orderByComparator)
          Returns the last document library content in the ordered set where companyId = ? and repositoryId = ?.
 DLContent DLContentPersistence.fetchByC_R_Last(long companyId, long repositoryId, OrderByComparator orderByComparator)
          Returns the last document library content in the ordered set where companyId = ? and repositoryId = ?.
static DLContent DLContentUtil.fetchByC_R_LikeP_First(long companyId, long repositoryId, String path, OrderByComparator orderByComparator)
          Returns the first document library content in the ordered set where companyId = ? and repositoryId = ? and path LIKE ?.
 DLContent DLContentPersistence.fetchByC_R_LikeP_First(long companyId, long repositoryId, String path, OrderByComparator orderByComparator)
          Returns the first document library content in the ordered set where companyId = ? and repositoryId = ? and path LIKE ?.
static DLContent DLContentUtil.fetchByC_R_LikeP_Last(long companyId, long repositoryId, String path, OrderByComparator orderByComparator)
          Returns the last document library content in the ordered set where companyId = ? and repositoryId = ? and path LIKE ?.
 DLContent DLContentPersistence.fetchByC_R_LikeP_Last(long companyId, long repositoryId, String path, OrderByComparator orderByComparator)
          Returns the last document library content in the ordered set where companyId = ? and repositoryId = ? and path LIKE ?.
static DLContent DLContentUtil.fetchByC_R_P_First(long companyId, long repositoryId, String path, OrderByComparator orderByComparator)
          Returns the first document library content in the ordered set where companyId = ? and repositoryId = ? and path = ?.
 DLContent DLContentPersistence.fetchByC_R_P_First(long companyId, long repositoryId, String path, OrderByComparator orderByComparator)
          Returns the first document library content in the ordered set where companyId = ? and repositoryId = ? and path = ?.
static DLContent DLContentUtil.fetchByC_R_P_Last(long companyId, long repositoryId, String path, OrderByComparator orderByComparator)
          Returns the last document library content in the ordered set where companyId = ? and repositoryId = ? and path = ?.
 DLContent DLContentPersistence.fetchByC_R_P_Last(long companyId, long repositoryId, String path, OrderByComparator orderByComparator)
          Returns the last document library content in the ordered set where companyId = ? and repositoryId = ? and path = ?.
static DLContent DLContentUtil.fetchByC_R_P_V(long companyId, long repositoryId, String path, String version)
          Returns the document library content where companyId = ? and repositoryId = ? and path = ? and version = ? or returns null if it could not be found.
 DLContent DLContentPersistence.fetchByC_R_P_V(long companyId, long repositoryId, String path, String version)
          Returns the document library content where companyId = ? and repositoryId = ? and path = ? and version = ? or returns null if it could not be found.
static DLContent DLContentUtil.fetchByC_R_P_V(long companyId, long repositoryId, String path, String version, boolean retrieveFromCache)
          Returns the document library content where companyId = ? and repositoryId = ? and path = ? and version = ? or returns null if it could not be found, optionally using the finder cache.
 DLContent DLContentPersistence.fetchByC_R_P_V(long companyId, long repositoryId, String path, String version, boolean retrieveFromCache)
          Returns the document library content where companyId = ? and repositoryId = ? and path = ? and version = ? or returns null if it could not be found, optionally using the finder cache.
static DLContent DLContentUtil.fetchByPrimaryKey(long contentId)
          Returns the document library content with the primary key or returns null if it could not be found.
 DLContent DLContentPersistence.fetchByPrimaryKey(long contentId)
          Returns the document library content with the primary key or returns null if it could not be found.
static DLContent DLContentUtil.findByC_R_First(long companyId, long repositoryId, OrderByComparator orderByComparator)
          Returns the first document library content in the ordered set where companyId = ? and repositoryId = ?.
 DLContent DLContentPersistence.findByC_R_First(long companyId, long repositoryId, OrderByComparator orderByComparator)
          Returns the first document library content in the ordered set where companyId = ? and repositoryId = ?.
static DLContent DLContentUtil.findByC_R_Last(long companyId, long repositoryId, OrderByComparator orderByComparator)
          Returns the last document library content in the ordered set where companyId = ? and repositoryId = ?.
 DLContent DLContentPersistence.findByC_R_Last(long companyId, long repositoryId, OrderByComparator orderByComparator)
          Returns the last document library content in the ordered set where companyId = ? and repositoryId = ?.
static DLContent DLContentUtil.findByC_R_LikeP_First(long companyId, long repositoryId, String path, OrderByComparator orderByComparator)
          Returns the first document library content in the ordered set where companyId = ? and repositoryId = ? and path LIKE ?.
 DLContent DLContentPersistence.findByC_R_LikeP_First(long companyId, long repositoryId, String path, OrderByComparator orderByComparator)
          Returns the first document library content in the ordered set where companyId = ? and repositoryId = ? and path LIKE ?.
static DLContent DLContentUtil.findByC_R_LikeP_Last(long companyId, long repositoryId, String path, OrderByComparator orderByComparator)
          Returns the last document library content in the ordered set where companyId = ? and repositoryId = ? and path LIKE ?.
 DLContent DLContentPersistence.findByC_R_LikeP_Last(long companyId, long repositoryId, String path, OrderByComparator orderByComparator)
          Returns the last document library content in the ordered set where companyId = ? and repositoryId = ? and path LIKE ?.
static DLContent[] DLContentUtil.findByC_R_LikeP_PrevAndNext(long contentId, long companyId, long repositoryId, String path, OrderByComparator orderByComparator)
          Returns the document library contents before and after the current document library content in the ordered set where companyId = ? and repositoryId = ? and path LIKE ?.
 DLContent[] DLContentPersistence.findByC_R_LikeP_PrevAndNext(long contentId, long companyId, long repositoryId, String path, OrderByComparator orderByComparator)
          Returns the document library contents before and after the current document library content in the ordered set where companyId = ? and repositoryId = ? and path LIKE ?.
static DLContent DLContentUtil.findByC_R_P_First(long companyId, long repositoryId, String path, OrderByComparator orderByComparator)
          Returns the first document library content in the ordered set where companyId = ? and repositoryId = ? and path = ?.
 DLContent DLContentPersistence.findByC_R_P_First(long companyId, long repositoryId, String path, OrderByComparator orderByComparator)
          Returns the first document library content in the ordered set where companyId = ? and repositoryId = ? and path = ?.
static DLContent DLContentUtil.findByC_R_P_Last(long companyId, long repositoryId, String path, OrderByComparator orderByComparator)
          Returns the last document library content in the ordered set where companyId = ? and repositoryId = ? and path = ?.
 DLContent DLContentPersistence.findByC_R_P_Last(long companyId, long repositoryId, String path, OrderByComparator orderByComparator)
          Returns the last document library content in the ordered set where companyId = ? and repositoryId = ? and path = ?.
static DLContent[] DLContentUtil.findByC_R_P_PrevAndNext(long contentId, long companyId, long repositoryId, String path, OrderByComparator orderByComparator)
          Returns the document library contents before and after the current document library content in the ordered set where companyId = ? and repositoryId = ? and path = ?.
 DLContent[] DLContentPersistence.findByC_R_P_PrevAndNext(long contentId, long companyId, long repositoryId, String path, OrderByComparator orderByComparator)
          Returns the document library contents before and after the current document library content in the ordered set where companyId = ? and repositoryId = ? and path = ?.
static DLContent DLContentUtil.findByC_R_P_V(long companyId, long repositoryId, String path, String version)
          Returns the document library content where companyId = ? and repositoryId = ? and path = ? and version = ? or throws a NoSuchContentException if it could not be found.
 DLContent DLContentPersistence.findByC_R_P_V(long companyId, long repositoryId, String path, String version)
          Returns the document library content where companyId = ? and repositoryId = ? and path = ? and version = ? or throws a NoSuchContentException if it could not be found.
static DLContent[] DLContentUtil.findByC_R_PrevAndNext(long contentId, long companyId, long repositoryId, OrderByComparator orderByComparator)
          Returns the document library contents before and after the current document library content in the ordered set where companyId = ? and repositoryId = ?.
 DLContent[] DLContentPersistence.findByC_R_PrevAndNext(long contentId, long companyId, long repositoryId, OrderByComparator orderByComparator)
          Returns the document library contents before and after the current document library content in the ordered set where companyId = ? and repositoryId = ?.
static DLContent DLContentUtil.findByPrimaryKey(long contentId)
          Returns the document library content with the primary key or throws a NoSuchContentException if it could not be found.
 DLContent DLContentPersistence.findByPrimaryKey(long contentId)
          Returns the document library content with the primary key or throws a NoSuchContentException if it could not be found.
static DLContent DLContentUtil.remove(long contentId)
          Removes the document library content with the primary key from the database.
 DLContent DLContentPersistence.remove(long contentId)
          Removes the document library content with the primary key from the database.
static DLContent DLContentUtil.removeByC_R_P_V(long companyId, long repositoryId, String path, String version)
          Removes the document library content where companyId = ? and repositoryId = ? and path = ? and version = ? from the database.
 DLContent DLContentPersistence.removeByC_R_P_V(long companyId, long repositoryId, String path, String version)
          Removes the document library content where companyId = ? and repositoryId = ? and path = ? and version = ? from the database.
static DLContent DLContentUtil.update(DLContent dlContent)
           
static DLContent DLContentUtil.update(DLContent dlContent, ServiceContext serviceContext)
           
static DLContent DLContentUtil.updateImpl(DLContent dlContent)
           
 DLContent DLContentPersistence.updateImpl(DLContent dlContent)
           
 

Methods in com.liferay.portlet.documentlibrary.service.persistence that return types with arguments of type DLContent
static List<DLContent> DLContentUtil.findAll()
          Returns all the document library contents.
 List<DLContent> DLContentPersistence.findAll()
          Returns all the document library contents.
static List<DLContent> DLContentUtil.findAll(int start, int end)
          Returns a range of all the document library contents.
 List<DLContent> DLContentPersistence.findAll(int start, int end)
          Returns a range of all the document library contents.
static List<DLContent> DLContentUtil.findAll(int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the document library contents.
 List<DLContent> DLContentPersistence.findAll(int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the document library contents.
static List<DLContent> DLContentUtil.findByC_R_LikeP(long companyId, long repositoryId, String path)
          Returns all the document library contents where companyId = ? and repositoryId = ? and path LIKE ?.
 List<DLContent> DLContentPersistence.findByC_R_LikeP(long companyId, long repositoryId, String path)
          Returns all the document library contents where companyId = ? and repositoryId = ? and path LIKE ?.
static List<DLContent> DLContentUtil.findByC_R_LikeP(long companyId, long repositoryId, String path, int start, int end)
          Returns a range of all the document library contents where companyId = ? and repositoryId = ? and path LIKE ?.
 List<DLContent> DLContentPersistence.findByC_R_LikeP(long companyId, long repositoryId, String path, int start, int end)
          Returns a range of all the document library contents where companyId = ? and repositoryId = ? and path LIKE ?.
static List<DLContent> DLContentUtil.findByC_R_LikeP(long companyId, long repositoryId, String path, int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the document library contents where companyId = ? and repositoryId = ? and path LIKE ?.
 List<DLContent> DLContentPersistence.findByC_R_LikeP(long companyId, long repositoryId, String path, int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the document library contents where companyId = ? and repositoryId = ? and path LIKE ?.
static List<DLContent> DLContentUtil.findByC_R_P(long companyId, long repositoryId, String path)
          Returns all the document library contents where companyId = ? and repositoryId = ? and path = ?.
 List<DLContent> DLContentPersistence.findByC_R_P(long companyId, long repositoryId, String path)
          Returns all the document library contents where companyId = ? and repositoryId = ? and path = ?.
static List<DLContent> DLContentUtil.findByC_R_P(long companyId, long repositoryId, String path, int start, int end)
          Returns a range of all the document library contents where companyId = ? and repositoryId = ? and path = ?.
 List<DLContent> DLContentPersistence.findByC_R_P(long companyId, long repositoryId, String path, int start, int end)
          Returns a range of all the document library contents where companyId = ? and repositoryId = ? and path = ?.
static List<DLContent> DLContentUtil.findByC_R_P(long companyId, long repositoryId, String path, int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the document library contents where companyId = ? and repositoryId = ? and path = ?.
 List<DLContent> DLContentPersistence.findByC_R_P(long companyId, long repositoryId, String path, int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the document library contents where companyId = ? and repositoryId = ? and path = ?.
static List<DLContent> DLContentUtil.findByC_R(long companyId, long repositoryId)
          Returns all the document library contents where companyId = ? and repositoryId = ?.
 List<DLContent> DLContentPersistence.findByC_R(long companyId, long repositoryId)
          Returns all the document library contents where companyId = ? and repositoryId = ?.
static List<DLContent> DLContentUtil.findByC_R(long companyId, long repositoryId, int start, int end)
          Returns a range of all the document library contents where companyId = ? and repositoryId = ?.
 List<DLContent> DLContentPersistence.findByC_R(long companyId, long repositoryId, int start, int end)
          Returns a range of all the document library contents where companyId = ? and repositoryId = ?.
static List<DLContent> DLContentUtil.findByC_R(long companyId, long repositoryId, int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the document library contents where companyId = ? and repositoryId = ?.
 List<DLContent> DLContentPersistence.findByC_R(long companyId, long repositoryId, int start, int end, OrderByComparator orderByComparator)
          Returns an ordered range of all the document library contents where companyId = ? and repositoryId = ?.
static List<DLContent> DLContentUtil.findWithDynamicQuery(DynamicQuery dynamicQuery)
           
static List<DLContent> DLContentUtil.findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end)
           
static List<DLContent> DLContentUtil.findWithDynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator)
           
 

Methods in com.liferay.portlet.documentlibrary.service.persistence with parameters of type DLContent
static void DLContentUtil.cacheResult(DLContent dlContent)
          Caches the document library content in the entity cache if it is enabled.
 void DLContentPersistence.cacheResult(DLContent dlContent)
          Caches the document library content in the entity cache if it is enabled.
static void DLContentUtil.clearCache(DLContent dlContent)
           
static DLContent DLContentUtil.update(DLContent dlContent)
           
static DLContent DLContentUtil.update(DLContent dlContent, ServiceContext serviceContext)
           
static DLContent DLContentUtil.updateImpl(DLContent dlContent)
           
 DLContent DLContentPersistence.updateImpl(DLContent dlContent)
           
 

Method parameters in com.liferay.portlet.documentlibrary.service.persistence with type arguments of type DLContent
static void DLContentUtil.cacheResult(List<DLContent> dlContents)
          Caches the document library contents in the entity cache if it is enabled.
 void DLContentPersistence.cacheResult(List<DLContent> dlContents)
          Caches the document library contents in the entity cache if it is enabled.
 


Liferay 6.2-ce-ga5