public class TicketLocalServiceWrapper extends Object implements ServiceWrapper<TicketLocalService>, TicketLocalService
TicketLocalService.TicketLocalService| Constructor and Description |
|---|
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)
NOTE FOR DEVELOPERS:
Never modify or reference this interface directly.
|
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.
|
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.
|
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,
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.
|
public TicketLocalServiceWrapper(TicketLocalService ticketLocalService)
public Ticket addDistinctTicket(long companyId, String className, long classPK, int type, String extraInfo, Date expirationDate, ServiceContext serviceContext)
TicketLocalServiceUtil to access the ticket local service. Add custom service methods to com.liferay.portal.service.impl.TicketLocalServiceImpl and rerun ServiceBuilder to automatically copy the method declarations to this interface.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)
addTicket in interface TicketLocalServiceticket - the ticketpublic 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
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)
deleteTicket in interface TicketLocalServiceticket - the ticketpublic 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, 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)
updateTicket in interface TicketLocalServiceticket - the ticketpublic TicketLocalService getWrappedService()
getWrappedService in interface ServiceWrapper<TicketLocalService>public void setWrappedService(TicketLocalService ticketLocalService)
setWrappedService in interface ServiceWrapper<TicketLocalService>