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
This interface defines the service. The default implementation is
SCFrameworkVersionServiceImpl.
Modify methods in that class and rerun ServiceBuilder to populate this class
and all other generated classes.
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- 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)
|
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