public class TicketLocalServiceWrapper extends Object implements ServiceWrapper<TicketLocalService>, TicketLocalService
TicketLocalService.TicketLocalService| Constructor and Description |
|---|
TicketLocalServiceWrapper() |
TicketLocalServiceWrapper(TicketLocalService ticketLocalService) |
| Modifier and Type | Method and Description |
|---|---|
Ticket |
addDistinctTicket(long companyId,
String className,
long classPK,
int type,
String extraInfo,
Date expirationDate,
ServiceContext serviceContext) |
Ticket |
addTicket(long companyId,
String className,
long classPK,
int type,
String extraInfo,
Date expirationDate,
ServiceContext serviceContext) |
Ticket |
addTicket(Ticket ticket)
Adds the ticket to the database.
|
PersistedModel |
createPersistedModel(Serializable primaryKeyObj) |
Ticket |
createTicket(long ticketId)
Creates a new ticket with the primary key.
|
PersistedModel |
deletePersistedModel(PersistedModel persistedModel) |
Ticket |
deleteTicket(long ticketId)
Deletes the ticket with the primary key from the database.
|
Ticket |
deleteTicket(Ticket ticket)
Deletes the ticket from the database.
|
void |
deleteTickets(long companyId,
String className,
long classPK) |
<T> T |
dslQuery(com.liferay.petra.sql.dsl.query.DSLQuery dslQuery) |
int |
dslQueryCount(com.liferay.petra.sql.dsl.query.DSLQuery dslQuery) |
DynamicQuery |
dynamicQuery() |
<T> List<T> |
dynamicQuery(DynamicQuery dynamicQuery)
Performs a dynamic query on the database and returns the matching rows.
|
<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.
|
<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.
|
long |
dynamicQueryCount(DynamicQuery dynamicQuery)
Returns the number of rows matching the dynamic query.
|
long |
dynamicQueryCount(DynamicQuery dynamicQuery,
Projection projection)
Returns the number of rows matching the dynamic query.
|
Ticket |
fetchTicket(long ticketId) |
Ticket |
fetchTicket(String key) |
ActionableDynamicQuery |
getActionableDynamicQuery() |
IndexableActionableDynamicQuery |
getIndexableActionableDynamicQuery() |
String |
getOSGiServiceIdentifier()
Returns the OSGi service identifier.
|
PersistedModel |
getPersistedModel(Serializable primaryKeyObj) |
Ticket |
getTicket(long ticketId)
Returns the ticket with the primary key.
|
Ticket |
getTicket(String key) |
List<Ticket> |
getTickets(int start,
int end)
Returns a range of all the tickets.
|
List<Ticket> |
getTickets(long companyId,
String className,
long classPK) |
List<Ticket> |
getTickets(long companyId,
String className,
long classPK,
int type) |
List<Ticket> |
getTickets(String className,
long classPK,
int type) |
int |
getTicketsCount()
Returns the number of tickets.
|
TicketLocalService |
getWrappedService() |
void |
setWrappedService(TicketLocalService ticketLocalService) |
Ticket |
updateTicket(long ticketId,
String className,
long classPK,
int type,
String extraInfo,
Date expirationDate) |
Ticket |
updateTicket(Ticket ticket)
Updates the ticket in the database or adds it if it does not yet exist.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitgetBasePersistencepublic TicketLocalServiceWrapper()
public TicketLocalServiceWrapper(TicketLocalService ticketLocalService)
public Ticket addDistinctTicket(long companyId, String className, long classPK, int type, String extraInfo, Date expirationDate, ServiceContext serviceContext)
addDistinctTicket in interface TicketLocalServicepublic Ticket addTicket(long companyId, String className, long classPK, int type, String extraInfo, Date expirationDate, ServiceContext serviceContext)
addTicket in interface TicketLocalServicepublic Ticket addTicket(Ticket ticket)
Important: Inspect TicketLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.
addTicket in interface TicketLocalServiceticket - the ticketpublic PersistedModel createPersistedModel(Serializable primaryKeyObj) throws PortalException
createPersistedModel in interface PersistedModelLocalServicecreatePersistedModel in interface TicketLocalServicePortalExceptionpublic Ticket createTicket(long ticketId)
createTicket in interface TicketLocalServiceticketId - the primary key for the new ticketpublic PersistedModel deletePersistedModel(PersistedModel persistedModel) throws PortalException
deletePersistedModel in interface PersistedModelLocalServicedeletePersistedModel in interface TicketLocalServicePortalExceptionpublic Ticket deleteTicket(long ticketId) throws PortalException
Important: Inspect TicketLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.
deleteTicket in interface TicketLocalServiceticketId - the primary key of the ticketPortalException - if a ticket with the primary key could not be foundpublic Ticket deleteTicket(Ticket ticket)
Important: Inspect TicketLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.
deleteTicket in interface TicketLocalServiceticket - the ticketpublic void deleteTickets(long companyId,
String className,
long classPK)
deleteTickets in interface TicketLocalServicepublic <T> T dslQuery(com.liferay.petra.sql.dsl.query.DSLQuery dslQuery)
dslQuery in interface PersistedModelLocalServicedslQuery in interface TicketLocalServicepublic int dslQueryCount(com.liferay.petra.sql.dsl.query.DSLQuery dslQuery)
dslQueryCount in interface PersistedModelLocalServicedslQueryCount in interface TicketLocalServicepublic DynamicQuery dynamicQuery()
dynamicQuery in interface TicketLocalServicepublic <T> List<T> dynamicQuery(DynamicQuery dynamicQuery)
dynamicQuery in interface TicketLocalServicedynamicQuery - the dynamic querypublic <T> List<T> dynamicQuery(DynamicQuery dynamicQuery, int start, int end)
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 com.liferay.portal.kernel.dao.orm.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, then the query will include the default ORDER BY logic from com.liferay.portal.model.impl.TicketModelImpl.
dynamicQuery in interface TicketLocalServicedynamicQuery - the dynamic querystart - the lower bound of the range of model instancesend - the upper bound of the range of model instances (not inclusive)public <T> List<T> dynamicQuery(DynamicQuery dynamicQuery, int start, int end, OrderByComparator<T> orderByComparator)
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 com.liferay.portal.kernel.dao.orm.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, then the query will include the default ORDER BY logic from com.liferay.portal.model.impl.TicketModelImpl.
dynamicQuery in interface TicketLocalServicedynamicQuery - the dynamic querystart - the lower bound of the range of model instancesend - the upper bound of the range of model instances (not inclusive)orderByComparator - the comparator to order the results by (optionally null)public long dynamicQueryCount(DynamicQuery dynamicQuery)
dynamicQueryCount in interface TicketLocalServicedynamicQuery - the dynamic querypublic long dynamicQueryCount(DynamicQuery dynamicQuery, Projection projection)
dynamicQueryCount in interface TicketLocalServicedynamicQuery - the dynamic queryprojection - the projection to apply to the querypublic Ticket fetchTicket(long ticketId)
fetchTicket in interface TicketLocalServicepublic Ticket fetchTicket(String key)
fetchTicket in interface TicketLocalServicepublic ActionableDynamicQuery getActionableDynamicQuery()
getActionableDynamicQuery in interface TicketLocalServicepublic IndexableActionableDynamicQuery getIndexableActionableDynamicQuery()
getIndexableActionableDynamicQuery in interface TicketLocalServicepublic String getOSGiServiceIdentifier()
getOSGiServiceIdentifier in interface TicketLocalServicepublic PersistedModel getPersistedModel(Serializable primaryKeyObj) throws PortalException
getPersistedModel in interface PersistedModelLocalServicegetPersistedModel in interface TicketLocalServicePortalExceptionpublic Ticket getTicket(long ticketId) throws PortalException
getTicket in interface TicketLocalServiceticketId - the primary key of the ticketPortalException - if a ticket with the primary key could not be foundpublic Ticket getTicket(String key) throws PortalException
getTicket in interface TicketLocalServicePortalExceptionpublic List<Ticket> getTickets(int start, int end)
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 com.liferay.portal.kernel.dao.orm.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, then the query will include the default ORDER BY logic from com.liferay.portal.model.impl.TicketModelImpl.
getTickets in interface TicketLocalServicestart - the lower bound of the range of ticketsend - the upper bound of the range of tickets (not inclusive)public List<Ticket> getTickets(long companyId, String className, long classPK)
getTickets in interface TicketLocalServicepublic List<Ticket> getTickets(long companyId, String className, long classPK, int type)
getTickets in interface TicketLocalServicepublic List<Ticket> getTickets(String className, long classPK, int type)
getTickets in interface TicketLocalServicepublic int getTicketsCount()
getTicketsCount in interface TicketLocalServicepublic Ticket updateTicket(long ticketId, String className, long classPK, int type, String extraInfo, Date expirationDate) throws PortalException
updateTicket in interface TicketLocalServicePortalExceptionpublic Ticket updateTicket(Ticket ticket)
Important: Inspect TicketLocalServiceImpl for overloaded versions of the method. If provided, use these entry points to the API, as the implementation logic may require the additional parameters defined there.
updateTicket in interface TicketLocalServiceticket - the ticketpublic TicketLocalService getWrappedService()
getWrappedService in interface ServiceWrapper<TicketLocalService>public void setWrappedService(TicketLocalService ticketLocalService)
setWrappedService in interface ServiceWrapper<TicketLocalService>