@ProviderType public class TicketLocalServiceWrapper extends Object implements TicketLocalService, ServiceWrapper<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) |
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)
addDistinctTicket
in interface TicketLocalService
public Ticket addTicket(long companyId, String className, long classPK, int type, String extraInfo, Date expirationDate, ServiceContext serviceContext)
addTicket
in interface TicketLocalService
public Ticket addTicket(Ticket ticket)
addTicket
in interface TicketLocalService
ticket
- the ticketpublic Ticket createTicket(long ticketId)
createTicket
in interface TicketLocalService
ticketId
- the primary key for the new ticketpublic PersistedModel deletePersistedModel(PersistedModel persistedModel) throws PortalException
deletePersistedModel
in interface PersistedModelLocalService
deletePersistedModel
in interface TicketLocalService
PortalException
public Ticket deleteTicket(long ticketId) throws PortalException
deleteTicket
in interface TicketLocalService
ticketId
- the primary key of the ticketPortalException
- if a ticket with the primary key could not be foundpublic Ticket deleteTicket(Ticket ticket)
deleteTicket
in interface TicketLocalService
ticket
- the ticketpublic DynamicQuery dynamicQuery()
dynamicQuery
in interface TicketLocalService
public <T> List<T> dynamicQuery(DynamicQuery dynamicQuery)
dynamicQuery
in interface TicketLocalService
dynamicQuery
- 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 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 TicketModelImpl
. 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.
dynamicQuery
in interface TicketLocalService
dynamicQuery
- 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 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 TicketModelImpl
. 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.
dynamicQuery
in interface TicketLocalService
dynamicQuery
- 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 TicketLocalService
dynamicQuery
- the dynamic querypublic long dynamicQueryCount(DynamicQuery dynamicQuery, Projection projection)
dynamicQueryCount
in interface TicketLocalService
dynamicQuery
- the dynamic queryprojection
- the projection to apply to the querypublic Ticket fetchTicket(long ticketId)
fetchTicket
in interface TicketLocalService
public Ticket fetchTicket(String key)
fetchTicket
in interface TicketLocalService
public ActionableDynamicQuery getActionableDynamicQuery()
getActionableDynamicQuery
in interface TicketLocalService
public IndexableActionableDynamicQuery getIndexableActionableDynamicQuery()
getIndexableActionableDynamicQuery
in interface TicketLocalService
public String getOSGiServiceIdentifier()
getOSGiServiceIdentifier
in interface TicketLocalService
public PersistedModel getPersistedModel(Serializable primaryKeyObj) throws PortalException
getPersistedModel
in interface PersistedModelLocalService
getPersistedModel
in interface TicketLocalService
PortalException
public Ticket getTicket(long ticketId) throws PortalException
getTicket
in interface TicketLocalService
ticketId
- 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 TicketLocalService
PortalException
public 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 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 TicketModelImpl
. 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.
getTickets
in interface TicketLocalService
start
- 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 TicketLocalService
public List<Ticket> getTickets(String className, long classPK, int type)
getTickets
in interface TicketLocalService
public int getTicketsCount()
getTicketsCount
in interface TicketLocalService
public Ticket updateTicket(long ticketId, String className, long classPK, int type, String extraInfo, Date expirationDate) throws PortalException
updateTicket
in interface TicketLocalService
PortalException
public Ticket updateTicket(Ticket ticket)
updateTicket
in interface TicketLocalService
ticket
- the ticketpublic TicketLocalService getWrappedService()
getWrappedService
in interface ServiceWrapper<TicketLocalService>
public void setWrappedService(TicketLocalService ticketLocalService)
setWrappedService
in interface ServiceWrapper<TicketLocalService>