com.liferay.portlet.softwarecatalog.service
Interface SCFrameworkVersionLocalService


public interface SCFrameworkVersionLocalService

View Source

ServiceBuilder generated this class. Modifications in this class will be overwritten the next time is generated.

This interface defines the service. The default implementation is com.liferay.portlet.softwarecatalog.service.impl.SCFrameworkVersionLocalServiceImpl. Modify methods in that class and rerun ServiceBuilder to populate this class and all other generated classes.

This is a local service. Methods of this service will not have security checks based on the propagated JAAS credentials because this service can only be accessed from within the same VM.

Author:
Brian Wing Shun Chan
See Also:
SCFrameworkVersionLocalServiceFactory, SCFrameworkVersionLocalServiceUtil

Method Summary
 SCFrameworkVersion addFrameworkVersion(long userId, long plid, java.lang.String name, java.lang.String url, boolean active, int priority, boolean addCommunityPermissions, boolean addGuestPermissions)
           
 SCFrameworkVersion addFrameworkVersion(long userId, long plid, java.lang.String name, java.lang.String url, boolean active, int priority, java.lang.Boolean addCommunityPermissions, java.lang.Boolean addGuestPermissions, java.lang.String[] communityPermissions, java.lang.String[] guestPermissions)
           
 SCFrameworkVersion addFrameworkVersion(long userId, long plid, java.lang.String name, java.lang.String url, boolean active, int priority, java.lang.String[] communityPermissions, java.lang.String[] guestPermissions)
           
 void addFrameworkVersionResources(long frameworkVersionId, boolean addCommunityPermissions, boolean addGuestPermissions)
           
 void addFrameworkVersionResources(long frameworkVersionId, java.lang.String[] communityPermissions, java.lang.String[] guestPermissions)
           
 void addFrameworkVersionResources(SCFrameworkVersion frameworkVersion, boolean addCommunityPermissions, boolean addGuestPermissions)
           
 void addFrameworkVersionResources(SCFrameworkVersion frameworkVersion, java.lang.String[] communityPermissions, java.lang.String[] guestPermissions)
           
 SCFrameworkVersion addSCFrameworkVersion(SCFrameworkVersion model)
           
 void afterPropertiesSet()
           
 void deleteFrameworkVersion(long frameworkVersionId)
           
 void deleteFrameworkVersion(SCFrameworkVersion frameworkVersion)
           
 void deleteFrameworkVersions(long groupId)
           
 java.util.List dynamicQuery(com.liferay.portal.kernel.dao.DynamicQueryInitializer queryInitializer)
           
 java.util.List dynamicQuery(com.liferay.portal.kernel.dao.DynamicQueryInitializer queryInitializer, int begin, int end)
           
 SCFrameworkVersion getFrameworkVersion(long frameworkVersionId)
           
 java.util.List getFrameworkVersions(long groupId, boolean active)
           
 java.util.List getFrameworkVersions(long groupId, boolean active, int begin, int end)
           
 java.util.List getFrameworkVersions(long groupId, int begin, int end)
           
 int getFrameworkVersionsCount(long groupId)
           
 int getFrameworkVersionsCount(long groupId, boolean active)
           
 java.util.List getProductVersionFrameworkVersions(long productVersionId)
           
 ResourceFinder getResourceFinder()
           
 ResourcePersistence getResourcePersistence()
           
 SCFrameworkVersionPersistence getSCFrameworkVersionPersistence()
           
 SCLicensePersistence getSCLicensePersistence()
           
 SCProductEntryPersistence getSCProductEntryPersistence()
           
 SCProductScreenshotPersistence getSCProductScreenshotPersistence()
           
 SCProductVersionPersistence getSCProductVersionPersistence()
           
 UserFinder getUserFinder()
           
 UserPersistence getUserPersistence()
           
 void setResourceFinder(ResourceFinder resourceFinder)
           
 void setResourcePersistence(ResourcePersistence resourcePersistence)
           
 void setSCFrameworkVersionPersistence(SCFrameworkVersionPersistence scFrameworkVersionPersistence)
           
 void setSCLicensePersistence(SCLicensePersistence scLicensePersistence)
           
 void setSCProductEntryPersistence(SCProductEntryPersistence scProductEntryPersistence)
           
 void setSCProductScreenshotPersistence(SCProductScreenshotPersistence scProductScreenshotPersistence)
           
 void setSCProductVersionPersistence(SCProductVersionPersistence scProductVersionPersistence)
           
 void setUserFinder(UserFinder userFinder)
           
 void setUserPersistence(UserPersistence userPersistence)
           
 SCFrameworkVersion updateFrameworkVersion(long frameworkVersionId, java.lang.String name, java.lang.String url, boolean active, int priority)
           
 SCFrameworkVersion updateSCFrameworkVersion(SCFrameworkVersion model)
           
 

Method Detail

addSCFrameworkVersion

public SCFrameworkVersion addSCFrameworkVersion(SCFrameworkVersion model)
                                         throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

dynamicQuery

public java.util.List dynamicQuery(com.liferay.portal.kernel.dao.DynamicQueryInitializer queryInitializer)
                            throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

dynamicQuery

public java.util.List dynamicQuery(com.liferay.portal.kernel.dao.DynamicQueryInitializer queryInitializer,
                                   int begin,
                                   int end)
                            throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

updateSCFrameworkVersion

public SCFrameworkVersion updateSCFrameworkVersion(SCFrameworkVersion model)
                                            throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

getSCLicensePersistence

public SCLicensePersistence getSCLicensePersistence()

setSCLicensePersistence

public void setSCLicensePersistence(SCLicensePersistence scLicensePersistence)

getSCFrameworkVersionPersistence

public SCFrameworkVersionPersistence getSCFrameworkVersionPersistence()

setSCFrameworkVersionPersistence

public void setSCFrameworkVersionPersistence(SCFrameworkVersionPersistence scFrameworkVersionPersistence)

getSCProductEntryPersistence

public SCProductEntryPersistence getSCProductEntryPersistence()

setSCProductEntryPersistence

public void setSCProductEntryPersistence(SCProductEntryPersistence scProductEntryPersistence)

getSCProductScreenshotPersistence

public SCProductScreenshotPersistence getSCProductScreenshotPersistence()

setSCProductScreenshotPersistence

public void setSCProductScreenshotPersistence(SCProductScreenshotPersistence scProductScreenshotPersistence)

getSCProductVersionPersistence

public SCProductVersionPersistence getSCProductVersionPersistence()

setSCProductVersionPersistence

public void setSCProductVersionPersistence(SCProductVersionPersistence scProductVersionPersistence)

getResourcePersistence

public ResourcePersistence getResourcePersistence()

setResourcePersistence

public void setResourcePersistence(ResourcePersistence resourcePersistence)

getResourceFinder

public ResourceFinder getResourceFinder()

setResourceFinder

public void setResourceFinder(ResourceFinder resourceFinder)

getUserPersistence

public UserPersistence getUserPersistence()

setUserPersistence

public void setUserPersistence(UserPersistence userPersistence)

getUserFinder

public UserFinder getUserFinder()

setUserFinder

public void setUserFinder(UserFinder userFinder)

afterPropertiesSet

public void afterPropertiesSet()

addFrameworkVersion

public SCFrameworkVersion addFrameworkVersion(long userId,
                                              long plid,
                                              java.lang.String name,
                                              java.lang.String url,
                                              boolean active,
                                              int priority,
                                              boolean addCommunityPermissions,
                                              boolean addGuestPermissions)
                                       throws com.liferay.portal.SystemException,
                                              com.liferay.portal.PortalException
Throws:
com.liferay.portal.SystemException
com.liferay.portal.PortalException

addFrameworkVersion

public SCFrameworkVersion addFrameworkVersion(long userId,
                                              long plid,
                                              java.lang.String name,
                                              java.lang.String url,
                                              boolean active,
                                              int priority,
                                              java.lang.String[] communityPermissions,
                                              java.lang.String[] guestPermissions)
                                       throws com.liferay.portal.SystemException,
                                              com.liferay.portal.PortalException
Throws:
com.liferay.portal.SystemException
com.liferay.portal.PortalException

addFrameworkVersion

public SCFrameworkVersion addFrameworkVersion(long userId,
                                              long plid,
                                              java.lang.String name,
                                              java.lang.String url,
                                              boolean active,
                                              int priority,
                                              java.lang.Boolean addCommunityPermissions,
                                              java.lang.Boolean addGuestPermissions,
                                              java.lang.String[] communityPermissions,
                                              java.lang.String[] guestPermissions)
                                       throws com.liferay.portal.SystemException,
                                              com.liferay.portal.PortalException
Throws:
com.liferay.portal.SystemException
com.liferay.portal.PortalException

addFrameworkVersionResources

public void addFrameworkVersionResources(long frameworkVersionId,
                                         boolean addCommunityPermissions,
                                         boolean addGuestPermissions)
                                  throws com.liferay.portal.SystemException,
                                         com.liferay.portal.PortalException
Throws:
com.liferay.portal.SystemException
com.liferay.portal.PortalException

addFrameworkVersionResources

public void addFrameworkVersionResources(SCFrameworkVersion frameworkVersion,
                                         boolean addCommunityPermissions,
                                         boolean addGuestPermissions)
                                  throws com.liferay.portal.SystemException,
                                         com.liferay.portal.PortalException
Throws:
com.liferay.portal.SystemException
com.liferay.portal.PortalException

addFrameworkVersionResources

public void addFrameworkVersionResources(long frameworkVersionId,
                                         java.lang.String[] communityPermissions,
                                         java.lang.String[] guestPermissions)
                                  throws com.liferay.portal.SystemException,
                                         com.liferay.portal.PortalException
Throws:
com.liferay.portal.SystemException
com.liferay.portal.PortalException

addFrameworkVersionResources

public void addFrameworkVersionResources(SCFrameworkVersion frameworkVersion,
                                         java.lang.String[] communityPermissions,
                                         java.lang.String[] guestPermissions)
                                  throws com.liferay.portal.SystemException,
                                         com.liferay.portal.PortalException
Throws:
com.liferay.portal.SystemException
com.liferay.portal.PortalException

deleteFrameworkVersion

public void deleteFrameworkVersion(long frameworkVersionId)
                            throws com.liferay.portal.SystemException,
                                   com.liferay.portal.PortalException
Throws:
com.liferay.portal.SystemException
com.liferay.portal.PortalException

deleteFrameworkVersion

public void deleteFrameworkVersion(SCFrameworkVersion frameworkVersion)
                            throws com.liferay.portal.SystemException,
                                   com.liferay.portal.PortalException
Throws:
com.liferay.portal.SystemException
com.liferay.portal.PortalException

deleteFrameworkVersions

public void deleteFrameworkVersions(long groupId)
                             throws com.liferay.portal.SystemException,
                                    com.liferay.portal.PortalException
Throws:
com.liferay.portal.SystemException
com.liferay.portal.PortalException

getFrameworkVersion

public SCFrameworkVersion getFrameworkVersion(long frameworkVersionId)
                                       throws com.liferay.portal.SystemException,
                                              com.liferay.portal.PortalException
Throws:
com.liferay.portal.SystemException
com.liferay.portal.PortalException

getFrameworkVersions

public java.util.List getFrameworkVersions(long groupId,
                                           int begin,
                                           int end)
                                    throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

getFrameworkVersions

public java.util.List getFrameworkVersions(long groupId,
                                           boolean active)
                                    throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

getFrameworkVersions

public java.util.List getFrameworkVersions(long groupId,
                                           boolean active,
                                           int begin,
                                           int end)
                                    throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

getFrameworkVersionsCount

public int getFrameworkVersionsCount(long groupId)
                              throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

getFrameworkVersionsCount

public int getFrameworkVersionsCount(long groupId,
                                     boolean active)
                              throws com.liferay.portal.SystemException
Throws:
com.liferay.portal.SystemException

getProductVersionFrameworkVersions

public java.util.List getProductVersionFrameworkVersions(long productVersionId)
                                                  throws com.liferay.portal.SystemException,
                                                         com.liferay.portal.PortalException
Throws:
com.liferay.portal.SystemException
com.liferay.portal.PortalException

updateFrameworkVersion

public SCFrameworkVersion updateFrameworkVersion(long frameworkVersionId,
                                                 java.lang.String name,
                                                 java.lang.String url,
                                                 boolean active,
                                                 int priority)
                                          throws com.liferay.portal.SystemException,
                                                 com.liferay.portal.PortalException
Throws:
com.liferay.portal.SystemException
com.liferay.portal.PortalException