Liferay 6.2.0

com.liferay.portlet.softwarecatalog.service
Interface SCFrameworkVersionService

All Superinterfaces:
BaseService
All Known Implementing Classes:
SCFrameworkVersionServiceBaseImpl, SCFrameworkVersionServiceImpl, SCFrameworkVersionServiceWrapper

@ProviderType
@AccessControlled
@JSONWebService
@Transactional(isolation=PORTAL,
               rollbackFor={PortalException.class,SystemException.class})
public interface SCFrameworkVersionService
extends BaseService

Provides the remote service interface for SCFrameworkVersion. Methods of this service are expected to have security checks based on the propagated JAAS credentials because this service can be accessed remotely.

See Also:
SCFrameworkVersionServiceUtil, SCFrameworkVersionServiceBaseImpl, SCFrameworkVersionServiceImpl
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time it is generated.

Method Summary
abstract  SCFrameworkVersion addFrameworkVersion(String name, String url, boolean active, int priority, ServiceContext serviceContext)
           
abstract  void deleteFrameworkVersion(long frameworkVersionId)
           
abstract  String getBeanIdentifier()
          Returns the Spring bean ID for this bean.
abstract  SCFrameworkVersion getFrameworkVersion(long frameworkVersionId)
           
abstract  List<SCFrameworkVersion> getFrameworkVersions(long groupId, boolean active)
           
abstract  List<SCFrameworkVersion> getFrameworkVersions(long groupId, boolean active, int start, int end)
           
abstract  void setBeanIdentifier(String beanIdentifier)
          Sets the Spring bean ID for this bean.
abstract  SCFrameworkVersion updateFrameworkVersion(long frameworkVersionId, String name, String url, boolean active, int priority)
           
 

Method Detail

getBeanIdentifier

String getBeanIdentifier()
Returns the Spring bean ID for this bean.

Returns:
the Spring bean ID for this bean

setBeanIdentifier

void setBeanIdentifier(String beanIdentifier)
Sets the Spring bean ID for this bean.

Parameters:
beanIdentifier - the Spring bean ID for this bean

addFrameworkVersion

SCFrameworkVersion addFrameworkVersion(String name,
                                       String url,
                                       boolean active,
                                       int priority,
                                       ServiceContext serviceContext)
                                       throws PortalException,
                                              SystemException
Throws:
PortalException
SystemException

deleteFrameworkVersion

void deleteFrameworkVersion(long frameworkVersionId)
                            throws PortalException,
                                   SystemException
Throws:
PortalException
SystemException

getFrameworkVersion

@Transactional(propagation=SUPPORTS,
               readOnly=true)
SCFrameworkVersion getFrameworkVersion(long frameworkVersionId)
                                       throws PortalException,
                                              SystemException
Throws:
PortalException
SystemException

getFrameworkVersions

@Transactional(propagation=SUPPORTS,
               readOnly=true)
List<SCFrameworkVersion> getFrameworkVersions(long groupId,
                                                                                       boolean active)
                                              throws SystemException
Throws:
SystemException

getFrameworkVersions

@Transactional(propagation=SUPPORTS,
               readOnly=true)
List<SCFrameworkVersion> getFrameworkVersions(long groupId,
                                                                                       boolean active,
                                                                                       int start,
                                                                                       int end)
                                              throws SystemException
Throws:
SystemException

updateFrameworkVersion

SCFrameworkVersion updateFrameworkVersion(long frameworkVersionId,
                                          String name,
                                          String url,
                                          boolean active,
                                          int priority)
                                          throws PortalException,
                                                 SystemException
Throws:
PortalException
SystemException

Liferay 6.2.0