Liferay 6.1.2-ce-ga3

com.liferay.portlet.softwarecatalog.service
Class SCFrameworkVersionLocalServiceWrapper

java.lang.Object
  extended by com.liferay.portlet.softwarecatalog.service.SCFrameworkVersionLocalServiceWrapper
All Implemented Interfaces:
BaseLocalService, PersistedModelLocalService, ServiceWrapper<SCFrameworkVersionLocalService>, SCFrameworkVersionLocalService

public class SCFrameworkVersionLocalServiceWrapper
extends Object
implements SCFrameworkVersionLocalService, ServiceWrapper<SCFrameworkVersionLocalService>

This class is a wrapper for SCFrameworkVersionLocalService.

See Also:
SCFrameworkVersionLocalService

Constructor Summary
SCFrameworkVersionLocalServiceWrapper(SCFrameworkVersionLocalService scFrameworkVersionLocalService)
           
 
Method Summary
 SCFrameworkVersion addFrameworkVersion(long userId, String name, String url, boolean active, int priority, ServiceContext serviceContext)
           
 void addFrameworkVersionResources(long frameworkVersionId, boolean addGroupPermissions, boolean addGuestPermissions)
           
 void addFrameworkVersionResources(long frameworkVersionId, String[] groupPermissions, String[] guestPermissions)
           
 void addFrameworkVersionResources(SCFrameworkVersion frameworkVersion, boolean addGroupPermissions, boolean addGuestPermissions)
           
 void addFrameworkVersionResources(SCFrameworkVersion frameworkVersion, String[] groupPermissions, String[] guestPermissions)
           
 SCFrameworkVersion addSCFrameworkVersion(SCFrameworkVersion scFrameworkVersion)
          Adds the s c framework version to the database.
 void addSCProductVersionSCFrameworkVersion(long productVersionId, long frameworkVersionId)
           
 void addSCProductVersionSCFrameworkVersion(long productVersionId, SCFrameworkVersion scFrameworkVersion)
           
 void addSCProductVersionSCFrameworkVersions(long productVersionId, List<SCFrameworkVersion> SCFrameworkVersions)
           
 void addSCProductVersionSCFrameworkVersions(long productVersionId, long[] frameworkVersionIds)
           
 void clearSCProductVersionSCFrameworkVersions(long productVersionId)
           
 SCFrameworkVersion createSCFrameworkVersion(long frameworkVersionId)
          Creates a new s c framework version with the primary key.
 void deleteFrameworkVersion(long frameworkVersionId)
           
 void deleteFrameworkVersion(SCFrameworkVersion frameworkVersion)
           
 void deleteFrameworkVersions(long groupId)
           
 SCFrameworkVersion deleteSCFrameworkVersion(long frameworkVersionId)
          Deletes the s c framework version with the primary key from the database.
 SCFrameworkVersion deleteSCFrameworkVersion(SCFrameworkVersion scFrameworkVersion)
          Deletes the s c framework version from the database.
 void deleteSCProductVersionSCFrameworkVersion(long productVersionId, long frameworkVersionId)
           
 void deleteSCProductVersionSCFrameworkVersion(long productVersionId, SCFrameworkVersion scFrameworkVersion)
           
 void deleteSCProductVersionSCFrameworkVersions(long productVersionId, List<SCFrameworkVersion> SCFrameworkVersions)
           
 void deleteSCProductVersionSCFrameworkVersions(long productVersionId, long[] frameworkVersionIds)
           
 DynamicQuery dynamicQuery()
           
 List dynamicQuery(DynamicQuery dynamicQuery)
          Performs a dynamic query on the database and returns the matching rows.
 List dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
          Performs a dynamic query on the database and returns a range of the matching rows.
 List dynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator)
          Performs a dynamic query on the database and returns an ordered range of the matching rows.
 long dynamicQueryCount(DynamicQuery dynamicQuery)
          Returns the number of rows that match the dynamic query.
 SCFrameworkVersion fetchSCFrameworkVersion(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)
           
 List<SCFrameworkVersion> getFrameworkVersions(long groupId, int start, int end)
           
 int getFrameworkVersionsCount(long groupId)
           
 int getFrameworkVersionsCount(long groupId, boolean active)
           
 PersistedModel getPersistedModel(Serializable primaryKeyObj)
           
 List<SCFrameworkVersion> getProductVersionFrameworkVersions(long productVersionId)
           
 SCFrameworkVersion getSCFrameworkVersion(long frameworkVersionId)
          Returns the s c framework version with the primary key.
 List<SCFrameworkVersion> getSCFrameworkVersions(int start, int end)
          Returns a range of all the s c framework versions.
 int getSCFrameworkVersionsCount()
          Returns the number of s c framework versions.
 List<SCFrameworkVersion> getSCProductVersionSCFrameworkVersions(long productVersionId)
           
 List<SCFrameworkVersion> getSCProductVersionSCFrameworkVersions(long productVersionId, int start, int end)
           
 List<SCFrameworkVersion> getSCProductVersionSCFrameworkVersions(long productVersionId, int start, int end, OrderByComparator orderByComparator)
           
 int getSCProductVersionSCFrameworkVersionsCount(long productVersionId)
           
 SCFrameworkVersionLocalService getWrappedSCFrameworkVersionLocalService()
          Deprecated. Renamed to getWrappedService()
 SCFrameworkVersionLocalService getWrappedService()
           
 boolean hasSCProductVersionSCFrameworkVersion(long productVersionId, long frameworkVersionId)
           
 boolean hasSCProductVersionSCFrameworkVersions(long productVersionId)
           
 void setBeanIdentifier(String beanIdentifier)
          Sets the Spring bean ID for this bean.
 void setSCProductVersionSCFrameworkVersions(long productVersionId, long[] frameworkVersionIds)
           
 void setWrappedSCFrameworkVersionLocalService(SCFrameworkVersionLocalService scFrameworkVersionLocalService)
          Deprecated. Renamed to setWrappedService(com.liferay.portlet.softwarecatalog.service.SCFrameworkVersionLocalService)
 void setWrappedService(SCFrameworkVersionLocalService scFrameworkVersionLocalService)
           
 SCFrameworkVersion updateFrameworkVersion(long frameworkVersionId, String name, String url, boolean active, int priority)
           
 SCFrameworkVersion updateSCFrameworkVersion(SCFrameworkVersion scFrameworkVersion)
          Updates the s c framework version in the database or adds it if it does not yet exist.
 SCFrameworkVersion updateSCFrameworkVersion(SCFrameworkVersion scFrameworkVersion, boolean merge)
          Updates the s c framework version in the database or adds it if it does not yet exist.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SCFrameworkVersionLocalServiceWrapper

public SCFrameworkVersionLocalServiceWrapper(SCFrameworkVersionLocalService scFrameworkVersionLocalService)
Method Detail

addSCFrameworkVersion

public SCFrameworkVersion addSCFrameworkVersion(SCFrameworkVersion scFrameworkVersion)
                                         throws SystemException
Adds the s c framework version to the database. Also notifies the appropriate model listeners.

Specified by:
addSCFrameworkVersion in interface SCFrameworkVersionLocalService
Parameters:
scFrameworkVersion - the s c framework version
Returns:
the s c framework version that was added
Throws:
SystemException - if a system exception occurred

createSCFrameworkVersion

public SCFrameworkVersion createSCFrameworkVersion(long frameworkVersionId)
Creates a new s c framework version with the primary key. Does not add the s c framework version to the database.

Specified by:
createSCFrameworkVersion in interface SCFrameworkVersionLocalService
Parameters:
frameworkVersionId - the primary key for the new s c framework version
Returns:
the new s c framework version

deleteSCFrameworkVersion

public SCFrameworkVersion deleteSCFrameworkVersion(long frameworkVersionId)
                                            throws PortalException,
                                                   SystemException
Deletes the s c framework version with the primary key from the database. Also notifies the appropriate model listeners.

Specified by:
deleteSCFrameworkVersion in interface SCFrameworkVersionLocalService
Parameters:
frameworkVersionId - the primary key of the s c framework version
Returns:
the s c framework version that was removed
Throws:
PortalException - if a s c framework version with the primary key could not be found
SystemException - if a system exception occurred

deleteSCFrameworkVersion

public SCFrameworkVersion deleteSCFrameworkVersion(SCFrameworkVersion scFrameworkVersion)
                                            throws SystemException
Deletes the s c framework version from the database. Also notifies the appropriate model listeners.

Specified by:
deleteSCFrameworkVersion in interface SCFrameworkVersionLocalService
Parameters:
scFrameworkVersion - the s c framework version
Returns:
the s c framework version that was removed
Throws:
SystemException - if a system exception occurred

dynamicQuery

public DynamicQuery dynamicQuery()
Specified by:
dynamicQuery in interface SCFrameworkVersionLocalService

dynamicQuery

public List dynamicQuery(DynamicQuery dynamicQuery)
                  throws SystemException
Performs a dynamic query on the database and returns the matching rows.

Specified by:
dynamicQuery in interface SCFrameworkVersionLocalService
Parameters:
dynamicQuery - the dynamic query
Returns:
the matching rows
Throws:
SystemException - if a system exception occurred

dynamicQuery

public List dynamicQuery(DynamicQuery dynamicQuery,
                         int start,
                         int end)
                  throws SystemException
Performs a dynamic query on the database and returns a range of the matching rows.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Specified by:
dynamicQuery in interface SCFrameworkVersionLocalService
Parameters:
dynamicQuery - the dynamic query
start - the lower bound of the range of model instances
end - the upper bound of the range of model instances (not inclusive)
Returns:
the range of matching rows
Throws:
SystemException - if a system exception occurred

dynamicQuery

public List dynamicQuery(DynamicQuery dynamicQuery,
                         int start,
                         int end,
                         OrderByComparator orderByComparator)
                  throws SystemException
Performs a dynamic query on the database and returns an ordered range of the matching rows.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Specified by:
dynamicQuery in interface SCFrameworkVersionLocalService
Parameters:
dynamicQuery - the dynamic query
start - the lower bound of the range of model instances
end - the upper bound of the range of model instances (not inclusive)
orderByComparator - the comparator to order the results by (optionally null)
Returns:
the ordered range of matching rows
Throws:
SystemException - if a system exception occurred

dynamicQueryCount

public long dynamicQueryCount(DynamicQuery dynamicQuery)
                       throws SystemException
Returns the number of rows that match the dynamic query.

Specified by:
dynamicQueryCount in interface SCFrameworkVersionLocalService
Parameters:
dynamicQuery - the dynamic query
Returns:
the number of rows that match the dynamic query
Throws:
SystemException - if a system exception occurred

fetchSCFrameworkVersion

public SCFrameworkVersion fetchSCFrameworkVersion(long frameworkVersionId)
                                           throws SystemException
Specified by:
fetchSCFrameworkVersion in interface SCFrameworkVersionLocalService
Throws:
SystemException

getSCFrameworkVersion

public SCFrameworkVersion getSCFrameworkVersion(long frameworkVersionId)
                                         throws PortalException,
                                                SystemException
Returns the s c framework version with the primary key.

Specified by:
getSCFrameworkVersion in interface SCFrameworkVersionLocalService
Parameters:
frameworkVersionId - the primary key of the s c framework version
Returns:
the s c framework version
Throws:
PortalException - if a s c framework version with the primary key could not be found
SystemException - if a system exception occurred

getPersistedModel

public PersistedModel getPersistedModel(Serializable primaryKeyObj)
                                 throws PortalException,
                                        SystemException
Specified by:
getPersistedModel in interface PersistedModelLocalService
Specified by:
getPersistedModel in interface SCFrameworkVersionLocalService
Throws:
PortalException
SystemException

getSCFrameworkVersions

public List<SCFrameworkVersion> getSCFrameworkVersions(int start,
                                                       int end)
                                                throws SystemException
Returns a range of all the s c framework versions.

Useful when paginating results. Returns a maximum of end - start instances. start and end are not primary keys, they are indexes in the result set. Thus, 0 refers to the first result in the set. Setting both start and end to QueryUtil.ALL_POS will return the full result set.

Specified by:
getSCFrameworkVersions in interface SCFrameworkVersionLocalService
Parameters:
start - the lower bound of the range of s c framework versions
end - the upper bound of the range of s c framework versions (not inclusive)
Returns:
the range of s c framework versions
Throws:
SystemException - if a system exception occurred

getSCFrameworkVersionsCount

public int getSCFrameworkVersionsCount()
                                throws SystemException
Returns the number of s c framework versions.

Specified by:
getSCFrameworkVersionsCount in interface SCFrameworkVersionLocalService
Returns:
the number of s c framework versions
Throws:
SystemException - if a system exception occurred

updateSCFrameworkVersion

public SCFrameworkVersion updateSCFrameworkVersion(SCFrameworkVersion scFrameworkVersion)
                                            throws SystemException
Updates the s c framework version in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.

Specified by:
updateSCFrameworkVersion in interface SCFrameworkVersionLocalService
Parameters:
scFrameworkVersion - the s c framework version
Returns:
the s c framework version that was updated
Throws:
SystemException - if a system exception occurred

updateSCFrameworkVersion

public SCFrameworkVersion updateSCFrameworkVersion(SCFrameworkVersion scFrameworkVersion,
                                                   boolean merge)
                                            throws SystemException
Updates the s c framework version in the database or adds it if it does not yet exist. Also notifies the appropriate model listeners.

Specified by:
updateSCFrameworkVersion in interface SCFrameworkVersionLocalService
Parameters:
scFrameworkVersion - the s c framework version
merge - whether to merge the s c framework version with the current session. See BatchSession.update(com.liferay.portal.kernel.dao.orm.Session, com.liferay.portal.model.BaseModel, boolean) for an explanation.
Returns:
the s c framework version that was updated
Throws:
SystemException - if a system exception occurred

addSCProductVersionSCFrameworkVersion

public void addSCProductVersionSCFrameworkVersion(long productVersionId,
                                                  long frameworkVersionId)
                                           throws SystemException
Specified by:
addSCProductVersionSCFrameworkVersion in interface SCFrameworkVersionLocalService
Throws:
SystemException - if a system exception occurred

addSCProductVersionSCFrameworkVersion

public void addSCProductVersionSCFrameworkVersion(long productVersionId,
                                                  SCFrameworkVersion scFrameworkVersion)
                                           throws SystemException
Specified by:
addSCProductVersionSCFrameworkVersion in interface SCFrameworkVersionLocalService
Throws:
SystemException - if a system exception occurred

addSCProductVersionSCFrameworkVersions

public void addSCProductVersionSCFrameworkVersions(long productVersionId,
                                                   long[] frameworkVersionIds)
                                            throws SystemException
Specified by:
addSCProductVersionSCFrameworkVersions in interface SCFrameworkVersionLocalService
Throws:
SystemException - if a system exception occurred

addSCProductVersionSCFrameworkVersions

public void addSCProductVersionSCFrameworkVersions(long productVersionId,
                                                   List<SCFrameworkVersion> SCFrameworkVersions)
                                            throws SystemException
Specified by:
addSCProductVersionSCFrameworkVersions in interface SCFrameworkVersionLocalService
Throws:
SystemException - if a system exception occurred

clearSCProductVersionSCFrameworkVersions

public void clearSCProductVersionSCFrameworkVersions(long productVersionId)
                                              throws SystemException
Specified by:
clearSCProductVersionSCFrameworkVersions in interface SCFrameworkVersionLocalService
Throws:
SystemException - if a system exception occurred

deleteSCProductVersionSCFrameworkVersion

public void deleteSCProductVersionSCFrameworkVersion(long productVersionId,
                                                     long frameworkVersionId)
                                              throws SystemException
Specified by:
deleteSCProductVersionSCFrameworkVersion in interface SCFrameworkVersionLocalService
Throws:
SystemException - if a system exception occurred

deleteSCProductVersionSCFrameworkVersion

public void deleteSCProductVersionSCFrameworkVersion(long productVersionId,
                                                     SCFrameworkVersion scFrameworkVersion)
                                              throws SystemException
Specified by:
deleteSCProductVersionSCFrameworkVersion in interface SCFrameworkVersionLocalService
Throws:
SystemException - if a system exception occurred

deleteSCProductVersionSCFrameworkVersions

public void deleteSCProductVersionSCFrameworkVersions(long productVersionId,
                                                      long[] frameworkVersionIds)
                                               throws SystemException
Specified by:
deleteSCProductVersionSCFrameworkVersions in interface SCFrameworkVersionLocalService
Throws:
SystemException - if a system exception occurred

deleteSCProductVersionSCFrameworkVersions

public void deleteSCProductVersionSCFrameworkVersions(long productVersionId,
                                                      List<SCFrameworkVersion> SCFrameworkVersions)
                                               throws SystemException
Specified by:
deleteSCProductVersionSCFrameworkVersions in interface SCFrameworkVersionLocalService
Throws:
SystemException - if a system exception occurred

getSCProductVersionSCFrameworkVersions

public List<SCFrameworkVersion> getSCProductVersionSCFrameworkVersions(long productVersionId)
                                                                throws SystemException
Specified by:
getSCProductVersionSCFrameworkVersions in interface SCFrameworkVersionLocalService
Throws:
SystemException - if a system exception occurred

getSCProductVersionSCFrameworkVersions

public List<SCFrameworkVersion> getSCProductVersionSCFrameworkVersions(long productVersionId,
                                                                       int start,
                                                                       int end)
                                                                throws SystemException
Specified by:
getSCProductVersionSCFrameworkVersions in interface SCFrameworkVersionLocalService
Throws:
SystemException - if a system exception occurred

getSCProductVersionSCFrameworkVersions

public List<SCFrameworkVersion> getSCProductVersionSCFrameworkVersions(long productVersionId,
                                                                       int start,
                                                                       int end,
                                                                       OrderByComparator orderByComparator)
                                                                throws SystemException
Specified by:
getSCProductVersionSCFrameworkVersions in interface SCFrameworkVersionLocalService
Throws:
SystemException - if a system exception occurred

getSCProductVersionSCFrameworkVersionsCount

public int getSCProductVersionSCFrameworkVersionsCount(long productVersionId)
                                                throws SystemException
Specified by:
getSCProductVersionSCFrameworkVersionsCount in interface SCFrameworkVersionLocalService
Throws:
SystemException - if a system exception occurred

hasSCProductVersionSCFrameworkVersion

public boolean hasSCProductVersionSCFrameworkVersion(long productVersionId,
                                                     long frameworkVersionId)
                                              throws SystemException
Specified by:
hasSCProductVersionSCFrameworkVersion in interface SCFrameworkVersionLocalService
Throws:
SystemException - if a system exception occurred

hasSCProductVersionSCFrameworkVersions

public boolean hasSCProductVersionSCFrameworkVersions(long productVersionId)
                                               throws SystemException
Specified by:
hasSCProductVersionSCFrameworkVersions in interface SCFrameworkVersionLocalService
Throws:
SystemException - if a system exception occurred

setSCProductVersionSCFrameworkVersions

public void setSCProductVersionSCFrameworkVersions(long productVersionId,
                                                   long[] frameworkVersionIds)
                                            throws SystemException
Specified by:
setSCProductVersionSCFrameworkVersions in interface SCFrameworkVersionLocalService
Throws:
SystemException - if a system exception occurred

getBeanIdentifier

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

Specified by:
getBeanIdentifier in interface SCFrameworkVersionLocalService
Returns:
the Spring bean ID for this bean

setBeanIdentifier

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

Specified by:
setBeanIdentifier in interface SCFrameworkVersionLocalService
Parameters:
beanIdentifier - the Spring bean ID for this bean

addFrameworkVersion

public SCFrameworkVersion addFrameworkVersion(long userId,
                                              String name,
                                              String url,
                                              boolean active,
                                              int priority,
                                              ServiceContext serviceContext)
                                       throws PortalException,
                                              SystemException
Specified by:
addFrameworkVersion in interface SCFrameworkVersionLocalService
Throws:
PortalException
SystemException

addFrameworkVersionResources

public void addFrameworkVersionResources(long frameworkVersionId,
                                         boolean addGroupPermissions,
                                         boolean addGuestPermissions)
                                  throws PortalException,
                                         SystemException
Specified by:
addFrameworkVersionResources in interface SCFrameworkVersionLocalService
Throws:
PortalException
SystemException

addFrameworkVersionResources

public void addFrameworkVersionResources(long frameworkVersionId,
                                         String[] groupPermissions,
                                         String[] guestPermissions)
                                  throws PortalException,
                                         SystemException
Specified by:
addFrameworkVersionResources in interface SCFrameworkVersionLocalService
Throws:
PortalException
SystemException

addFrameworkVersionResources

public void addFrameworkVersionResources(SCFrameworkVersion frameworkVersion,
                                         boolean addGroupPermissions,
                                         boolean addGuestPermissions)
                                  throws PortalException,
                                         SystemException
Specified by:
addFrameworkVersionResources in interface SCFrameworkVersionLocalService
Throws:
PortalException
SystemException

addFrameworkVersionResources

public void addFrameworkVersionResources(SCFrameworkVersion frameworkVersion,
                                         String[] groupPermissions,
                                         String[] guestPermissions)
                                  throws PortalException,
                                         SystemException
Specified by:
addFrameworkVersionResources in interface SCFrameworkVersionLocalService
Throws:
PortalException
SystemException

deleteFrameworkVersion

public void deleteFrameworkVersion(long frameworkVersionId)
                            throws PortalException,
                                   SystemException
Specified by:
deleteFrameworkVersion in interface SCFrameworkVersionLocalService
Throws:
PortalException
SystemException

deleteFrameworkVersion

public void deleteFrameworkVersion(SCFrameworkVersion frameworkVersion)
                            throws SystemException
Specified by:
deleteFrameworkVersion in interface SCFrameworkVersionLocalService
Throws:
SystemException

deleteFrameworkVersions

public void deleteFrameworkVersions(long groupId)
                             throws SystemException
Specified by:
deleteFrameworkVersions in interface SCFrameworkVersionLocalService
Throws:
SystemException

getFrameworkVersion

public SCFrameworkVersion getFrameworkVersion(long frameworkVersionId)
                                       throws PortalException,
                                              SystemException
Specified by:
getFrameworkVersion in interface SCFrameworkVersionLocalService
Throws:
PortalException
SystemException

getFrameworkVersions

public List<SCFrameworkVersion> getFrameworkVersions(long groupId,
                                                     boolean active)
                                              throws SystemException
Specified by:
getFrameworkVersions in interface SCFrameworkVersionLocalService
Throws:
SystemException

getFrameworkVersions

public List<SCFrameworkVersion> getFrameworkVersions(long groupId,
                                                     boolean active,
                                                     int start,
                                                     int end)
                                              throws SystemException
Specified by:
getFrameworkVersions in interface SCFrameworkVersionLocalService
Throws:
SystemException

getFrameworkVersions

public List<SCFrameworkVersion> getFrameworkVersions(long groupId,
                                                     int start,
                                                     int end)
                                              throws SystemException
Specified by:
getFrameworkVersions in interface SCFrameworkVersionLocalService
Throws:
SystemException

getFrameworkVersionsCount

public int getFrameworkVersionsCount(long groupId)
                              throws SystemException
Specified by:
getFrameworkVersionsCount in interface SCFrameworkVersionLocalService
Throws:
SystemException

getFrameworkVersionsCount

public int getFrameworkVersionsCount(long groupId,
                                     boolean active)
                              throws SystemException
Specified by:
getFrameworkVersionsCount in interface SCFrameworkVersionLocalService
Throws:
SystemException

getProductVersionFrameworkVersions

public List<SCFrameworkVersion> getProductVersionFrameworkVersions(long productVersionId)
                                                            throws SystemException
Specified by:
getProductVersionFrameworkVersions in interface SCFrameworkVersionLocalService
Throws:
SystemException

updateFrameworkVersion

public SCFrameworkVersion updateFrameworkVersion(long frameworkVersionId,
                                                 String name,
                                                 String url,
                                                 boolean active,
                                                 int priority)
                                          throws PortalException,
                                                 SystemException
Specified by:
updateFrameworkVersion in interface SCFrameworkVersionLocalService
Throws:
PortalException
SystemException

getWrappedSCFrameworkVersionLocalService

public SCFrameworkVersionLocalService getWrappedSCFrameworkVersionLocalService()
Deprecated. Renamed to getWrappedService()


setWrappedSCFrameworkVersionLocalService

public void setWrappedSCFrameworkVersionLocalService(SCFrameworkVersionLocalService scFrameworkVersionLocalService)
Deprecated. Renamed to setWrappedService(com.liferay.portlet.softwarecatalog.service.SCFrameworkVersionLocalService)


getWrappedService

public SCFrameworkVersionLocalService getWrappedService()
Specified by:
getWrappedService in interface ServiceWrapper<SCFrameworkVersionLocalService>

setWrappedService

public void setWrappedService(SCFrameworkVersionLocalService scFrameworkVersionLocalService)
Specified by:
setWrappedService in interface ServiceWrapper<SCFrameworkVersionLocalService>

Liferay 6.1.2-ce-ga3