|
Liferay 6.0-ee | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
@Transactional(isolation=PORTAL, rollbackFor={PortalException.class,SystemException.class}) public interface SCProductVersionLocalService
The interface for the s c product version local service.
Never modify or reference this interface directly. Always use SCProductVersionLocalServiceUtil
to access the s c product version local service. Add custom service methods to SCProductVersionLocalServiceImpl
and rerun ServiceBuilder to automatically copy the method declarations to this interface.
This is a local service. 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.
SCProductVersionLocalServiceUtil
,
SCProductVersionLocalServiceBaseImpl
,
SCProductVersionLocalServiceImpl
Method Summary | |
---|---|
SCProductVersion |
addProductVersion(long userId,
long productEntryId,
String version,
String changeLog,
String downloadPageURL,
String directDownloadURL,
boolean testDirectDownloadURL,
boolean repoStoreArtifact,
long[] frameworkVersionIds,
ServiceContext serviceContext)
|
SCProductVersion |
addSCProductVersion(SCProductVersion scProductVersion)
Adds the s c product version to the database. |
SCProductVersion |
createSCProductVersion(long productVersionId)
Creates a new s c product version with the primary key. |
void |
deleteProductVersion(long productVersionId)
|
void |
deleteProductVersion(SCProductVersion productVersion)
|
void |
deleteProductVersions(long productEntryId)
|
void |
deleteSCProductVersion(long productVersionId)
Deletes the s c product version with the primary key from the database. |
void |
deleteSCProductVersion(SCProductVersion scProductVersion)
Deletes the s c product version from the database. |
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)
Counts the number of rows that match the dynamic query. |
SCProductVersion |
getProductVersion(long productVersionId)
|
SCProductVersion |
getProductVersionByDirectDownloadURL(String directDownloadURL)
|
List<SCProductVersion> |
getProductVersions(long productEntryId,
int start,
int end)
|
int |
getProductVersionsCount(long productEntryId)
|
SCProductVersion |
getSCProductVersion(long productVersionId)
Gets the s c product version with the primary key. |
List<SCProductVersion> |
getSCProductVersions(int start,
int end)
Gets a range of all the s c product versions. |
int |
getSCProductVersionsCount()
Gets the number of s c product versions. |
SCProductVersion |
updateProductVersion(long productVersionId,
String version,
String changeLog,
String downloadPageURL,
String directDownloadURL,
boolean testDirectDownloadURL,
boolean repoStoreArtifact,
long[] frameworkVersionIds)
|
SCProductVersion |
updateSCProductVersion(SCProductVersion scProductVersion)
Updates the s c product version in the database. |
SCProductVersion |
updateSCProductVersion(SCProductVersion scProductVersion,
boolean merge)
Updates the s c product version in the database. |
Method Detail |
---|
SCProductVersion addSCProductVersion(SCProductVersion scProductVersion) throws SystemException
scProductVersion
- the s c product version to add
SystemException
- if a system exception occurredSCProductVersion createSCProductVersion(long productVersionId)
productVersionId
- the primary key for the new s c product version
void deleteSCProductVersion(long productVersionId) throws PortalException, SystemException
productVersionId
- the primary key of the s c product version to delete
PortalException
- if a s c product version with the primary key could not be found
SystemException
- if a system exception occurredvoid deleteSCProductVersion(SCProductVersion scProductVersion) throws SystemException
scProductVersion
- the s c product version to delete
SystemException
- if a system exception occurredList dynamicQuery(DynamicQuery dynamicQuery) throws SystemException
dynamicQuery
- the dynamic query to search with
SystemException
- if a system exception occurredList dynamicQuery(DynamicQuery dynamicQuery, int start, int end) throws SystemException
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.
dynamicQuery
- the dynamic query to search withstart
- the lower bound of the range of model instances to returnend
- the upper bound of the range of model instances to return (not inclusive)
SystemException
- if a system exception occurredList dynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator orderByComparator) throws SystemException
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.
dynamicQuery
- the dynamic query to search withstart
- the lower bound of the range of model instances to returnend
- the upper bound of the range of model instances to return (not inclusive)orderByComparator
- the comparator to order the results by
SystemException
- if a system exception occurredlong dynamicQueryCount(DynamicQuery dynamicQuery) throws SystemException
dynamicQuery
- the dynamic query to search with
SystemException
- if a system exception occurred@Transactional(propagation=SUPPORTS, readOnly=true) SCProductVersion getSCProductVersion(long productVersionId) throws PortalException, SystemException
productVersionId
- the primary key of the s c product version to get
PortalException
- if a s c product version with the primary key could not be found
SystemException
- if a system exception occurred@Transactional(propagation=SUPPORTS, readOnly=true) List<SCProductVersion> getSCProductVersions(int start, int end) throws SystemException
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.
start
- the lower bound of the range of s c product versions to returnend
- the upper bound of the range of s c product versions to return (not inclusive)
SystemException
- if a system exception occurred@Transactional(propagation=SUPPORTS, readOnly=true) int getSCProductVersionsCount() throws SystemException
SystemException
- if a system exception occurredSCProductVersion updateSCProductVersion(SCProductVersion scProductVersion) throws SystemException
scProductVersion
- the s c product version to update
SystemException
- if a system exception occurredSCProductVersion updateSCProductVersion(SCProductVersion scProductVersion, boolean merge) throws SystemException
scProductVersion
- the s c product version to updatemerge
- whether to merge the s c product version with the current session. See BatchSession.update(com.liferay.portal.kernel.dao.orm.Session, com.liferay.portal.model.BaseModel, boolean)
for an explanation.
SystemException
- if a system exception occurredSCProductVersion addProductVersion(long userId, long productEntryId, String version, String changeLog, String downloadPageURL, String directDownloadURL, boolean testDirectDownloadURL, boolean repoStoreArtifact, long[] frameworkVersionIds, ServiceContext serviceContext) throws PortalException, SystemException
PortalException
SystemException
void deleteProductVersion(long productVersionId) throws PortalException, SystemException
PortalException
SystemException
void deleteProductVersion(SCProductVersion productVersion) throws SystemException
SystemException
void deleteProductVersions(long productEntryId) throws SystemException
SystemException
@Transactional(propagation=SUPPORTS, readOnly=true) SCProductVersion getProductVersion(long productVersionId) throws PortalException, SystemException
PortalException
SystemException
@Transactional(propagation=SUPPORTS, readOnly=true) SCProductVersion getProductVersionByDirectDownloadURL(String directDownloadURL) throws PortalException, SystemException
PortalException
SystemException
@Transactional(propagation=SUPPORTS, readOnly=true) List<SCProductVersion> getProductVersions(long productEntryId, int start, int end) throws SystemException
SystemException
@Transactional(propagation=SUPPORTS, readOnly=true) int getProductVersionsCount(long productEntryId) throws SystemException
SystemException
SCProductVersion updateProductVersion(long productVersionId, String version, String changeLog, String downloadPageURL, String directDownloadURL, boolean testDirectDownloadURL, boolean repoStoreArtifact, long[] frameworkVersionIds) throws PortalException, SystemException
PortalException
SystemException
|
Liferay 6.0-ee | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |