Liferay 7.0-ce-a2

com.liferay.portlet.softwarecatalog.service
Class SCFrameworkVersionLocalServiceUtil

java.lang.Object
  extended by com.liferay.portlet.softwarecatalog.service.SCFrameworkVersionLocalServiceUtil

@ProviderType
public class SCFrameworkVersionLocalServiceUtil
extends Object

Provides the local service utility for SCFrameworkVersion. This utility wraps SCFrameworkVersionLocalServiceImpl and is the primary access point for service operations in application layer code running on the local server. Methods of this service will not have security checks based on the propagated JAAS credentials because this service can only be accessed from within the same VM.

See Also:
SCFrameworkVersionLocalService, SCFrameworkVersionLocalServiceBaseImpl, SCFrameworkVersionLocalServiceImpl
ServiceBuilder generated this class. Modifications in this class will be overwritten the next time it is generated.

Constructor Summary
SCFrameworkVersionLocalServiceUtil()
           
 
Method Summary
static SCFrameworkVersion addFrameworkVersion(long userId, String name, String url, boolean active, int priority, ServiceContext serviceContext)
           
static void addFrameworkVersionResources(long frameworkVersionId, boolean addGroupPermissions, boolean addGuestPermissions)
           
static void addFrameworkVersionResources(long frameworkVersionId, ModelPermissions modelPermissions)
           
static void addFrameworkVersionResources(SCFrameworkVersion frameworkVersion, boolean addGroupPermissions, boolean addGuestPermissions)
           
static void addFrameworkVersionResources(SCFrameworkVersion frameworkVersion, ModelPermissions modelPermissions)
           
static SCFrameworkVersion addSCFrameworkVersion(SCFrameworkVersion scFrameworkVersion)
          Adds the s c framework version to the database.
static void addSCProductVersionSCFrameworkVersion(long productVersionId, long frameworkVersionId)
           
static void addSCProductVersionSCFrameworkVersion(long productVersionId, SCFrameworkVersion scFrameworkVersion)
           
static void addSCProductVersionSCFrameworkVersions(long productVersionId, List<SCFrameworkVersion> SCFrameworkVersions)
           
static void addSCProductVersionSCFrameworkVersions(long productVersionId, long[] frameworkVersionIds)
           
static void clearSCProductVersionSCFrameworkVersions(long productVersionId)
           
static SCFrameworkVersion createSCFrameworkVersion(long frameworkVersionId)
          Creates a new s c framework version with the primary key.
static void deleteFrameworkVersion(long frameworkVersionId)
           
static void deleteFrameworkVersion(SCFrameworkVersion frameworkVersion)
           
static void deleteFrameworkVersions(long groupId)
           
static PersistedModel deletePersistedModel(PersistedModel persistedModel)
           
static SCFrameworkVersion deleteSCFrameworkVersion(long frameworkVersionId)
          Deletes the s c framework version with the primary key from the database.
static SCFrameworkVersion deleteSCFrameworkVersion(SCFrameworkVersion scFrameworkVersion)
          Deletes the s c framework version from the database.
static void deleteSCProductVersionSCFrameworkVersion(long productVersionId, long frameworkVersionId)
           
static void deleteSCProductVersionSCFrameworkVersion(long productVersionId, SCFrameworkVersion scFrameworkVersion)
           
static void deleteSCProductVersionSCFrameworkVersions(long productVersionId, List<SCFrameworkVersion> SCFrameworkVersions)
           
static void deleteSCProductVersionSCFrameworkVersions(long productVersionId, long[] frameworkVersionIds)
           
static DynamicQuery dynamicQuery()
           
static
<T> List<T>
dynamicQuery(DynamicQuery dynamicQuery)
          Performs a dynamic query on the database and returns the matching rows.
static
<T> List<T>
dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
          Performs a dynamic query on the database and returns a range of the matching rows.
static
<T> List<T>
dynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator<T> orderByComparator)
          Performs a dynamic query on the database and returns an ordered range of the matching rows.
static long dynamicQueryCount(DynamicQuery dynamicQuery)
          Returns the number of rows matching the dynamic query.
static long dynamicQueryCount(DynamicQuery dynamicQuery, Projection projection)
          Returns the number of rows matching the dynamic query.
static SCFrameworkVersion fetchSCFrameworkVersion(long frameworkVersionId)
           
static ActionableDynamicQuery getActionableDynamicQuery()
           
static String getBeanIdentifier()
          Returns the Spring bean ID for this bean.
static SCFrameworkVersion getFrameworkVersion(long frameworkVersionId)
           
static List<SCFrameworkVersion> getFrameworkVersions(long groupId, boolean active)
           
static List<SCFrameworkVersion> getFrameworkVersions(long groupId, boolean active, int start, int end)
           
static List<SCFrameworkVersion> getFrameworkVersions(long groupId, int start, int end)
           
static int getFrameworkVersionsCount(long groupId)
           
static int getFrameworkVersionsCount(long groupId, boolean active)
           
static PersistedModel getPersistedModel(Serializable primaryKeyObj)
           
static List<SCFrameworkVersion> getProductVersionFrameworkVersions(long productVersionId)
           
static SCFrameworkVersion getSCFrameworkVersion(long frameworkVersionId)
          Returns the s c framework version with the primary key.
static List<SCFrameworkVersion> getSCFrameworkVersions(int start, int end)
          Returns a range of all the s c framework versions.
static int getSCFrameworkVersionsCount()
          Returns the number of s c framework versions.
static long[] getSCProductVersionPrimaryKeys(long frameworkVersionId)
          Returns the productVersionIds of the s c product versions associated with the s c framework version.
static List<SCFrameworkVersion> getSCProductVersionSCFrameworkVersions(long productVersionId)
           
static List<SCFrameworkVersion> getSCProductVersionSCFrameworkVersions(long productVersionId, int start, int end)
           
static List<SCFrameworkVersion> getSCProductVersionSCFrameworkVersions(long productVersionId, int start, int end, OrderByComparator<SCFrameworkVersion> orderByComparator)
           
static int getSCProductVersionSCFrameworkVersionsCount(long productVersionId)
           
static SCFrameworkVersionLocalService getService()
           
static boolean hasSCProductVersionSCFrameworkVersion(long productVersionId, long frameworkVersionId)
           
static boolean hasSCProductVersionSCFrameworkVersions(long productVersionId)
           
static void setBeanIdentifier(String beanIdentifier)
          Sets the Spring bean ID for this bean.
static void setSCProductVersionSCFrameworkVersions(long productVersionId, long[] frameworkVersionIds)
           
 void setService(SCFrameworkVersionLocalService service)
          Deprecated. As of 6.2.0
static SCFrameworkVersion updateFrameworkVersion(long frameworkVersionId, String name, String url, boolean active, int priority)
           
static SCFrameworkVersion updateSCFrameworkVersion(SCFrameworkVersion scFrameworkVersion)
          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

SCFrameworkVersionLocalServiceUtil

public SCFrameworkVersionLocalServiceUtil()
Method Detail

addFrameworkVersion

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

addFrameworkVersionResources

public static void addFrameworkVersionResources(SCFrameworkVersion frameworkVersion,
                                                boolean addGroupPermissions,
                                                boolean addGuestPermissions)
                                         throws PortalException
Throws:
PortalException

addFrameworkVersionResources

public static void addFrameworkVersionResources(SCFrameworkVersion frameworkVersion,
                                                ModelPermissions modelPermissions)
                                         throws PortalException
Throws:
PortalException

addFrameworkVersionResources

public static void addFrameworkVersionResources(long frameworkVersionId,
                                                boolean addGroupPermissions,
                                                boolean addGuestPermissions)
                                         throws PortalException
Throws:
PortalException

addFrameworkVersionResources

public static void addFrameworkVersionResources(long frameworkVersionId,
                                                ModelPermissions modelPermissions)
                                         throws PortalException
Throws:
PortalException

addSCFrameworkVersion

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

Parameters:
scFrameworkVersion - the s c framework version
Returns:
the s c framework version that was added

addSCProductVersionSCFrameworkVersion

public static void addSCProductVersionSCFrameworkVersion(long productVersionId,
                                                         long frameworkVersionId)

addSCProductVersionSCFrameworkVersion

public static void addSCProductVersionSCFrameworkVersion(long productVersionId,
                                                         SCFrameworkVersion scFrameworkVersion)

addSCProductVersionSCFrameworkVersions

public static void addSCProductVersionSCFrameworkVersions(long productVersionId,
                                                          List<SCFrameworkVersion> SCFrameworkVersions)

addSCProductVersionSCFrameworkVersions

public static void addSCProductVersionSCFrameworkVersions(long productVersionId,
                                                          long[] frameworkVersionIds)

clearSCProductVersionSCFrameworkVersions

public static void clearSCProductVersionSCFrameworkVersions(long productVersionId)

createSCFrameworkVersion

public static 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.

Parameters:
frameworkVersionId - the primary key for the new s c framework version
Returns:
the new s c framework version

deleteFrameworkVersion

public static void deleteFrameworkVersion(SCFrameworkVersion frameworkVersion)

deleteFrameworkVersion

public static void deleteFrameworkVersion(long frameworkVersionId)
                                   throws PortalException
Throws:
PortalException

deleteFrameworkVersions

public static void deleteFrameworkVersions(long groupId)

deletePersistedModel

public static PersistedModel deletePersistedModel(PersistedModel persistedModel)
                                           throws PortalException
Throws:
PortalException

deleteSCFrameworkVersion

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

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

deleteSCFrameworkVersion

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

Parameters:
scFrameworkVersion - the s c framework version
Returns:
the s c framework version that was removed

deleteSCProductVersionSCFrameworkVersion

public static void deleteSCProductVersionSCFrameworkVersion(long productVersionId,
                                                            long frameworkVersionId)

deleteSCProductVersionSCFrameworkVersion

public static void deleteSCProductVersionSCFrameworkVersion(long productVersionId,
                                                            SCFrameworkVersion scFrameworkVersion)

deleteSCProductVersionSCFrameworkVersions

public static void deleteSCProductVersionSCFrameworkVersions(long productVersionId,
                                                             List<SCFrameworkVersion> SCFrameworkVersions)

deleteSCProductVersionSCFrameworkVersions

public static void deleteSCProductVersionSCFrameworkVersions(long productVersionId,
                                                             long[] frameworkVersionIds)

dynamicQuery

public static DynamicQuery dynamicQuery()

dynamicQuery

public static <T> List<T> dynamicQuery(DynamicQuery dynamicQuery)
Performs a dynamic query on the database and returns the matching rows.

Parameters:
dynamicQuery - the dynamic query
Returns:
the matching rows

dynamicQuery

public static <T> List<T> dynamicQuery(DynamicQuery dynamicQuery,
                                       int start,
                                       int end)
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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from SCFrameworkVersionModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

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

dynamicQuery

public static <T> List<T> dynamicQuery(DynamicQuery dynamicQuery,
                                       int start,
                                       int end,
                                       OrderByComparator<T> orderByComparator)
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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from SCFrameworkVersionModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

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

dynamicQueryCount

public static long dynamicQueryCount(DynamicQuery dynamicQuery)
Returns the number of rows matching the dynamic query.

Parameters:
dynamicQuery - the dynamic query
Returns:
the number of rows matching the dynamic query

dynamicQueryCount

public static long dynamicQueryCount(DynamicQuery dynamicQuery,
                                     Projection projection)
Returns the number of rows matching the dynamic query.

Parameters:
dynamicQuery - the dynamic query
projection - the projection to apply to the query
Returns:
the number of rows matching the dynamic query

fetchSCFrameworkVersion

public static SCFrameworkVersion fetchSCFrameworkVersion(long frameworkVersionId)

getActionableDynamicQuery

public static ActionableDynamicQuery getActionableDynamicQuery()

getBeanIdentifier

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

Returns:
the Spring bean ID for this bean

getFrameworkVersion

public static SCFrameworkVersion getFrameworkVersion(long frameworkVersionId)
                                              throws PortalException
Throws:
PortalException

getFrameworkVersions

public static List<SCFrameworkVersion> getFrameworkVersions(long groupId,
                                                            boolean active)

getFrameworkVersions

public static List<SCFrameworkVersion> getFrameworkVersions(long groupId,
                                                            boolean active,
                                                            int start,
                                                            int end)

getFrameworkVersions

public static List<SCFrameworkVersion> getFrameworkVersions(long groupId,
                                                            int start,
                                                            int end)

getFrameworkVersionsCount

public static int getFrameworkVersionsCount(long groupId)

getFrameworkVersionsCount

public static int getFrameworkVersionsCount(long groupId,
                                            boolean active)

getPersistedModel

public static PersistedModel getPersistedModel(Serializable primaryKeyObj)
                                        throws PortalException
Throws:
PortalException

getProductVersionFrameworkVersions

public static List<SCFrameworkVersion> getProductVersionFrameworkVersions(long productVersionId)

getSCFrameworkVersion

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

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

getSCFrameworkVersions

public static List<SCFrameworkVersion> getSCFrameworkVersions(int start,
                                                              int end)
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. If orderByComparator is specified, then the query will include the given ORDER BY logic. If orderByComparator is absent and pagination is required (start and end are not QueryUtil.ALL_POS), then the query will include the default ORDER BY logic from SCFrameworkVersionModelImpl. If both orderByComparator and pagination are absent, for performance reasons, the query will not have an ORDER BY clause and the returned result set will be sorted on by the primary key in an ascending order.

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

getSCFrameworkVersionsCount

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

Returns:
the number of s c framework versions

getSCProductVersionPrimaryKeys

public static long[] getSCProductVersionPrimaryKeys(long frameworkVersionId)
Returns the productVersionIds of the s c product versions associated with the s c framework version.

Parameters:
frameworkVersionId - the frameworkVersionId of the s c framework version
Returns:
long[] the productVersionIds of s c product versions associated with the s c framework version

getSCProductVersionSCFrameworkVersions

public static List<SCFrameworkVersion> getSCProductVersionSCFrameworkVersions(long productVersionId)

getSCProductVersionSCFrameworkVersions

public static List<SCFrameworkVersion> getSCProductVersionSCFrameworkVersions(long productVersionId,
                                                                              int start,
                                                                              int end)

getSCProductVersionSCFrameworkVersions

public static List<SCFrameworkVersion> getSCProductVersionSCFrameworkVersions(long productVersionId,
                                                                              int start,
                                                                              int end,
                                                                              OrderByComparator<SCFrameworkVersion> orderByComparator)

getSCProductVersionSCFrameworkVersionsCount

public static int getSCProductVersionSCFrameworkVersionsCount(long productVersionId)

hasSCProductVersionSCFrameworkVersion

public static boolean hasSCProductVersionSCFrameworkVersion(long productVersionId,
                                                            long frameworkVersionId)

hasSCProductVersionSCFrameworkVersions

public static boolean hasSCProductVersionSCFrameworkVersions(long productVersionId)

setBeanIdentifier

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

Parameters:
beanIdentifier - the Spring bean ID for this bean

setSCProductVersionSCFrameworkVersions

public static void setSCProductVersionSCFrameworkVersions(long productVersionId,
                                                          long[] frameworkVersionIds)

updateFrameworkVersion

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

updateSCFrameworkVersion

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

Parameters:
scFrameworkVersion - the s c framework version
Returns:
the s c framework version that was updated

getService

public static SCFrameworkVersionLocalService getService()

setService

@Deprecated
public void setService(SCFrameworkVersionLocalService service)
Deprecated. As of 6.2.0


Liferay 7.0-ce-a2