|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Uses of PremadeComment in org.telscenter.sail.webapp.dao.premadecomment |
|---|
| Classes in org.telscenter.sail.webapp.dao.premadecomment with type parameters of type PremadeComment | |
|---|---|
interface |
PremadeCommentDao<T extends PremadeComment>
|
| Methods in org.telscenter.sail.webapp.dao.premadecomment that return PremadeComment | |
|---|---|
PremadeComment |
PremadeCommentDao.getPremadeCommentById(Long id)
Retrieves a PremadeComment with the given id |
| Methods in org.telscenter.sail.webapp.dao.premadecomment that return types with arguments of type PremadeComment | |
|---|---|
List<PremadeComment> |
PremadeCommentDao.getPremadeCommentsByRun(Run run)
Retrieves a List |
List<PremadeComment> |
PremadeCommentDao.getPremadeCommentsByUser(User owner)
Retrieves a List |
| Uses of PremadeComment in org.telscenter.sail.webapp.dao.premadecomment.impl |
|---|
| Methods in org.telscenter.sail.webapp.dao.premadecomment.impl that return PremadeComment | |
|---|---|
PremadeComment |
HibernatePremadeCommentDao.getPremadeCommentById(Long id)
Get the premade comment given the id |
| Methods in org.telscenter.sail.webapp.dao.premadecomment.impl that return types with arguments of type PremadeComment | |
|---|---|
List<PremadeComment> |
HibernatePremadeCommentDao.getPremadeCommentsByRun(Run run)
|
List<PremadeComment> |
HibernatePremadeCommentDao.getPremadeCommentsByUser(User owner)
|
| Uses of PremadeComment in org.telscenter.sail.webapp.domain.impl |
|---|
| Methods in org.telscenter.sail.webapp.domain.impl that return types with arguments of type PremadeComment | |
|---|---|
Set<PremadeComment> |
PremadeCommentListParameters.getList()
|
| Method parameters in org.telscenter.sail.webapp.domain.impl with type arguments of type PremadeComment | |
|---|---|
void |
PremadeCommentListParameters.setList(Set<PremadeComment> list)
|
| Uses of PremadeComment in org.telscenter.sail.webapp.domain.premadecomment |
|---|
| Methods in org.telscenter.sail.webapp.domain.premadecomment that return types with arguments of type PremadeComment | |
|---|---|
Set<PremadeComment> |
PremadeCommentList.getPremadeCommentList()
|
| Method parameters in org.telscenter.sail.webapp.domain.premadecomment with type arguments of type PremadeComment | |
|---|---|
void |
PremadeCommentList.setPremadeCommentList(Set<PremadeComment> premadeCommentList)
|
| Uses of PremadeComment in org.telscenter.sail.webapp.domain.premadecomment.impl |
|---|
| Classes in org.telscenter.sail.webapp.domain.premadecomment.impl that implement PremadeComment | |
|---|---|
class |
PremadeCommentImpl
PremadeComment domain object that is Owned but with the following added information: comment |
| Methods in org.telscenter.sail.webapp.domain.premadecomment.impl that return types with arguments of type PremadeComment | |
|---|---|
Set<PremadeComment> |
PremadeCommentListImpl.getPremadeCommentList()
|
| Methods in org.telscenter.sail.webapp.domain.premadecomment.impl with parameters of type PremadeComment | |
|---|---|
int |
PremadeCommentImpl.compareTo(PremadeComment o)
|
| Method parameters in org.telscenter.sail.webapp.domain.premadecomment.impl with type arguments of type PremadeComment | |
|---|---|
void |
PremadeCommentListImpl.setPremadeCommentList(Set<PremadeComment> premadeCommentList)
|
| Uses of PremadeComment in org.telscenter.sail.webapp.service.premadecomment |
|---|
| Methods in org.telscenter.sail.webapp.service.premadecomment that return PremadeComment | |
|---|---|
PremadeComment |
PremadeCommentService.createPremadeComment(PremadeCommentParameters params)
Creates a new PremadeComment in the data store. |
PremadeComment |
PremadeCommentService.retrievePremadeCommentById(Long id)
Retrieves a PremadeComment with the given id |
PremadeComment |
PremadeCommentService.updatePremadeCommentListPosition(Long premadeCommentId,
Long listPosition)
Updates the listPosition in a PremadeComment using its id. |
PremadeComment |
PremadeCommentService.updatePremadeCommentMessage(Long premadeCommentID,
String newComment)
Updates the comment in a PremadeComment using its id. |
| Methods in org.telscenter.sail.webapp.service.premadecomment that return types with arguments of type PremadeComment | |
|---|---|
Set<PremadeComment> |
PremadeCommentService.retrieveAllPremadeComments()
Retrieves all PremadeComments from the data store. |
Set<PremadeComment> |
PremadeCommentService.retrieveAllPremadeCommentsByUser(User user)
Retrieves all PremadeComments associated with a given user. |
| Methods in org.telscenter.sail.webapp.service.premadecomment with parameters of type PremadeComment | |
|---|---|
PremadeCommentList |
PremadeCommentService.addPremadeCommentToList(Long commentListID,
PremadeComment premadeComment)
Adds a PremadeComment to the PremadeCommentList given the PremadeComment and the PremadeCommentList ID |
PremadeCommentList |
PremadeCommentService.removePremadeCommentFromList(Long commentID,
PremadeComment premadeComment)
Removes a PremadeComment from the list of PremadeCommentList given the PremadeCommentList ID and the PremadeComment |
| Uses of PremadeComment in org.telscenter.sail.webapp.service.premadecomment.impl |
|---|
| Methods in org.telscenter.sail.webapp.service.premadecomment.impl that return PremadeComment | |
|---|---|
PremadeComment |
PremadeCommentServiceImpl.createPremadeComment(PremadeCommentParameters param)
|
PremadeComment |
PremadeCommentServiceImpl.retrievePremadeCommentById(Long id)
|
PremadeComment |
PremadeCommentServiceImpl.updatePremadeCommentListPosition(Long premadeCommentId,
Long listPosition)
|
PremadeComment |
PremadeCommentServiceImpl.updatePremadeCommentMessage(Long premadeCommentId,
String newComment)
|
| Methods in org.telscenter.sail.webapp.service.premadecomment.impl that return types with arguments of type PremadeComment | |
|---|---|
Set<PremadeComment> |
PremadeCommentServiceImpl.retrieveAllPremadeComments()
|
Set<PremadeComment> |
PremadeCommentServiceImpl.retrieveAllPremadeCommentsByUser(User user)
|
| Methods in org.telscenter.sail.webapp.service.premadecomment.impl with parameters of type PremadeComment | |
|---|---|
PremadeCommentList |
PremadeCommentServiceImpl.addPremadeCommentToList(Long commentListId,
PremadeComment comment)
|
PremadeCommentList |
PremadeCommentServiceImpl.removePremadeCommentFromList(Long commentListId,
PremadeComment comment)
|
| Method parameters in org.telscenter.sail.webapp.service.premadecomment.impl with type arguments of type PremadeComment | |
|---|---|
void |
PremadeCommentServiceImpl.setPremadeCommentDao(PremadeCommentDao<PremadeComment> premadeCommentDao)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||