Liferay 7.0-ce-m3

com.liferay.portlet.softwarecatalog.service
Interface SCFrameworkVersionService

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

@AccessControlled
@JSONWebService
@ProviderType
@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
 SCFrameworkVersion addFrameworkVersion(String name, String url, boolean active, int priority, ServiceContext serviceContext)
           
 void deleteFrameworkVersion(long frameworkVersionId)
           
 String getBeanIdentifier()
          Returns the Spring bean ID for this bean.
 SCFrameworkVersion getFrameworkVersion(long frameworkVersionId)
           
 List<SCFrameworkVersion> getFrameworkVersions(long groupId, boolean active)
           
 List<SCFrameworkVersion> getFrameworkVersions(long groupId, boolean active, int start, int end)
           
 void setBeanIdentifier(String beanIdentifier)
          Sets the Spring bean ID for this bean.
 SCFrameworkVersion updateFrameworkVersion(long frameworkVersionId, String name, String url, boolean active, int priority)
           
 

Method Detail

addFrameworkVersion

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

deleteFrameworkVersion

void deleteFrameworkVersion(long frameworkVersionId)
                            throws PortalException
Throws:
PortalException

getBeanIdentifier

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

Returns:
the Spring bean ID for this bean

getFrameworkVersion

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

getFrameworkVersions

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

getFrameworkVersions

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

setBeanIdentifier

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

Parameters:
beanIdentifier - the Spring bean ID for this bean

updateFrameworkVersion

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

Liferay 7.0-ce-m3