Liferay 6.0.5

com.liferay.portlet.softwarecatalog.service
Interface SCFrameworkVersionService

All Known Implementing Classes:
SCFrameworkVersionServiceBaseImpl, SCFrameworkVersionServiceImpl, SCFrameworkVersionServiceWrapper

@Transactional(isolation=PORTAL,
               rollbackFor={PortalException.class,SystemException.class})
public interface SCFrameworkVersionService

The interface for the s c framework version remote service.

Never modify or reference this interface directly. Always use SCFrameworkVersionServiceUtil to access the s c framework version remote service. Add custom service methods to SCFrameworkVersionServiceImpl and rerun ServiceBuilder to automatically copy the method declarations to this interface.

This is a remote service. 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 is generated.

Method Summary
 SCFrameworkVersion addFrameworkVersion(String name, String url, boolean active, int priority, ServiceContext serviceContext)
           
 void deleteFrameworkVersion(long frameworkVersionId)
           
 SCFrameworkVersion getFrameworkVersion(long frameworkVersionId)
           
 List<SCFrameworkVersion> getFrameworkVersions(long groupId, boolean active)
           
 List<SCFrameworkVersion> getFrameworkVersions(long groupId, boolean active, int start, int end)
           
 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,
                                              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.0.5