| Package | Description |
|---|---|
| de.hybris.platform.cockpit.components.listview.impl | |
| de.hybris.platform.cockpit.components.mvc.commentlayer.controller.impl | |
| de.hybris.platform.cockpit.services | |
| de.hybris.platform.cockpit.services.comments.impl | |
| de.hybris.platform.cockpit.services.impl | |
| de.hybris.platform.comments.model |
Contains generated models for each type of de.hybris.platform.comments.jalo package.
|
| de.hybris.platform.comments.resource | |
| de.hybris.platform.comments.services | |
| de.hybris.platform.comments.services.impl | |
| de.hybris.platform.print.comet.converter.impl | |
| de.hybris.platform.print.services.impl | |
| de.hybris.platform.print.tests | |
| de.hybris.platform.ticket.events.model |
Contains generated models for each type of de.hybris.platform.ticket.events.jalo package.
|
| de.hybris.platform.warehousing.comment | |
| de.hybris.platform.warehousing.comment.impl | |
| de.hybris.platform.warehousing.util.builder | |
| de.hybris.platform.warehousing.util.models |
| Modifier and Type | Method and Description |
|---|---|
ComponentModel |
AbstractCommentAction.getComponent() |
| Modifier and Type | Method and Description |
|---|---|
void |
AbstractCommentAction.setComponent(ComponentModel component) |
| Modifier and Type | Field and Description |
|---|---|
protected ComponentModel |
DefaultCommentLayerComponentController.component |
| Modifier and Type | Method and Description |
|---|---|
protected ComponentModel |
DefaultCommentLayerComponentController.getCurrentComponent() |
| Modifier and Type | Method and Description |
|---|---|
CommentModel |
CockpitCommentService.createItemComment(UserModel author,
ComponentModel component,
CommentTypeModel type,
Collection<ItemModel> items,
String subject,
String text)
Creates and returns a new item comment.
|
| Modifier and Type | Method and Description |
|---|---|
List<CommentModel> |
CockpitCommentService.getComments(UserModel user,
Collection<ComponentModel> components,
Collection<CommentTypeModel> types,
int offset,
int count)
Returns all comments in the specified domain components which are of the specified types and where
user is a participant. |
List<CommentModel> |
CockpitCommentService.getItemComments(ItemModel item,
UserModel user,
Collection<ComponentModel> components,
Collection<CommentTypeModel> types,
int offset,
int count)
Gets comments.
|
Query |
CockpitCommentService.getItemCommentsQuery(ItemModel item,
UserModel user,
Collection<ComponentModel> components,
Collection<CommentTypeModel> types)
Get item comments query.
|
| Modifier and Type | Method and Description |
|---|---|
protected ComponentModel |
DefaultCommentLayerService.getCurrentComponent() |
| Modifier and Type | Method and Description |
|---|---|
CommentModel |
DefaultCockpitCommentService.createItemComment(UserModel author,
ComponentModel component,
CommentTypeModel type,
Collection<ItemModel> items,
String subject,
String text) |
| Modifier and Type | Method and Description |
|---|---|
List<CommentModel> |
DefaultCockpitCommentService.getComments(UserModel user,
Collection<ComponentModel> components,
Collection<CommentTypeModel> types,
int offset,
int count) |
List<CommentModel> |
DefaultCockpitCommentService.getItemComments(ItemModel item,
UserModel user,
Collection<ComponentModel> components,
Collection<CommentTypeModel> types,
int offset,
int count) |
Query |
DefaultCockpitCommentService.getItemCommentsQuery(ItemModel item,
UserModel user,
Collection<ComponentModel> components,
Collection<CommentTypeModel> types) |
| Modifier and Type | Method and Description |
|---|---|
ComponentModel |
CommentModel.getComponent()
Generated method - Getter of the
Comment.component attribute defined at extension comments. |
| Modifier and Type | Method and Description |
|---|---|
Collection<ComponentModel> |
DomainModel.getComponents()
Generated method - Getter of the
Domain.components attribute defined at extension comments. |
| Modifier and Type | Method and Description |
|---|---|
void |
CommentModel.setComponent(ComponentModel value)
Generated method - Initial setter of
Comment.component attribute defined at extension comments. |
| Modifier and Type | Method and Description |
|---|---|
void |
DomainModel.setComponents(Collection<ComponentModel> value)
Generated method - Setter of
Domain.components attribute defined at extension comments. |
| Constructor and Description |
|---|
CommentModel(UserModel _author,
CommentTypeModel _commentType,
ComponentModel _component,
ItemModel _owner,
String _text)
Deprecated.
Since 4.1.1 Please use the default constructor without parameters
|
CommentModel(UserModel _author,
CommentTypeModel _commentType,
ComponentModel _component,
String _text)
Deprecated.
Since 4.1.1 Please use the default constructor without parameters
|
| Modifier and Type | Method and Description |
|---|---|
ComponentModel |
ComponentResource.getComponentModel()
Convenience method which just delegates to
#getResourceValue() |
protected ComponentModel |
ComponentResource.readResource(String resourceId)
Gets the
ComponentModel resource which is addressed by current resource request. |
| Modifier and Type | Method and Description |
|---|---|
Collection<ComponentModel> |
ComponentsResource.getComponentsCollection()
Convenience method which just delegates to
#getResourceValue() |
| Modifier and Type | Method and Description |
|---|---|
void |
ComponentResource.setComponentModel(ComponentModel value)
Convenience method which just delegates to
#setResourceValue(ComponentModel) |
| Modifier and Type | Method and Description |
|---|---|
void |
ComponentsResource.setComponentsCollection(Collection<ComponentModel> value)
Convenience method which just delegates to
#setResourceValue(Collection) |
| Modifier and Type | Method and Description |
|---|---|
ComponentModel |
CommentService.getComponentByCode(DomainModel domain,
String componentCode)
Deprecated.
|
ComponentModel |
CommentService.getComponentForCode(DomainModel domain,
String componentCode)
Returns the domain component with the specified code.
|
| Modifier and Type | Method and Description |
|---|---|
List<ComponentModel> |
CommentDao.findComponentsByDomainAndCode(DomainModel domain,
String componentCode)
Searches for components by domain and code.
|
| Modifier and Type | Method and Description |
|---|---|
Collection<CommentTypeModel> |
CommentService.getAvailableCommentTypes(ComponentModel component)
Returns the available comment types for a given component.
|
CommentTypeModel |
CommentService.getCommentTypeByCode(ComponentModel component,
String commentTypeCode)
Deprecated.
|
CommentTypeModel |
CommentService.getCommentTypeForCode(ComponentModel component,
String commentTypeCode)
Returns the comment type with the specified code.
|
| Modifier and Type | Method and Description |
|---|---|
SearchResult<CommentModel> |
CommentDao.findAll(UserModel user,
Collection<ComponentModel> components,
int offset,
int count)
Deprecated.
as of release 4.3, please use
CommentDao.findCommentsByUser(UserModel, Collection, int, int) |
SearchResult<CommentModel> |
CommentDao.findAllByItem(UserModel user,
Collection<ComponentModel> components,
ItemModel item,
int offset,
int count)
Deprecated.
as of release 4.3, please use
CommentDao.findCommentsByItem(UserModel, Collection, ItemModel, int, int) |
SearchResult<CommentModel> |
CommentDao.findAllByItemAndType(UserModel user,
Collection<ComponentModel> components,
ItemModel item,
Collection<CommentTypeModel> types,
int offset,
int count)
Deprecated.
as of release 4.3, please use
CommentDao.findCommentsByItemAndType(UserModel, Collection, ItemModel, Collection, int, int) |
SearchResult<CommentModel> |
CommentDao.findAllByType(UserModel user,
Collection<ComponentModel> components,
Collection<CommentTypeModel> types,
int offset,
int count)
Deprecated.
as of release 4.3, please use
CommentDao.findCommentsByType(UserModel, Collection, Collection, int, int) |
List<CommentModel> |
CommentDao.findCommentsByItem(UserModel user,
Collection<ComponentModel> components,
ItemModel item,
int offset,
int count)
Searches for all item comments related to the specified item, which are in the specified domain components and
where
user is a participant. |
List<CommentModel> |
CommentDao.findCommentsByItemAndType(UserModel user,
Collection<ComponentModel> components,
ItemModel item,
Collection<CommentTypeModel> types,
int offset,
int count)
Searches for all item comments related to the specified item, which are of the specified types, in the specified
domain components and where
user is a participant. |
List<CommentModel> |
CommentDao.findCommentsByType(UserModel user,
Collection<ComponentModel> components,
Collection<CommentTypeModel> types,
int offset,
int count)
Searches for all comments of the specified types in the specified domain components where
user is a
participant. |
List<CommentModel> |
CommentDao.findCommentsByUser(UserModel user,
Collection<ComponentModel> components,
int offset,
int count)
Searches for all comments in the specified domain components where
user is a participant i.e. |
List<CommentModel> |
CommentService.getComments(UserModel user,
Collection<ComponentModel> components,
Collection<CommentTypeModel> types,
int offset,
int count)
Returns all comments in the specified domain components which are of the specified types and where
user is a participant. |
List<CommentModel> |
CommentService.getComments(UserModel user,
Collection<ComponentModel> components,
int offset,
int count)
Returns all comments in the specified domain components where
user is a participant. |
List<CommentModel> |
CommentService.getItemComments(ItemModel item,
UserModel user,
Collection<ComponentModel> components,
Collection<CommentTypeModel> types,
int offset,
int count)
Returns all item comments for the specified item, which are in the specified domain components, of the specified
types and where
user is a participant. |
List<CommentModel> |
CommentService.getItemComments(ItemModel item,
UserModel user,
Collection<ComponentModel> components,
int offset,
int count)
Returns all item comments for the specified item, which are in the specified domain components and where
user is a participant. |
| Modifier and Type | Method and Description |
|---|---|
ComponentModel |
DefaultCommentService.getComponentByCode(DomainModel domain,
String componentCode) |
ComponentModel |
DefaultCommentService.getComponentForCode(DomainModel domain,
String componentCode) |
| Modifier and Type | Method and Description |
|---|---|
List<ComponentModel> |
DefaultCommentDao.findComponentsByDomainAndCode(DomainModel domain,
String componentCode) |
| Modifier and Type | Method and Description |
|---|---|
Collection<CommentTypeModel> |
DefaultCommentService.getAvailableCommentTypes(ComponentModel component) |
CommentTypeModel |
DefaultCommentService.getCommentTypeByCode(ComponentModel component,
String commentTypeCode) |
CommentTypeModel |
DefaultCommentService.getCommentTypeForCode(ComponentModel comp,
String commentTypeCode) |
| Modifier and Type | Method and Description |
|---|---|
protected ComponentModel |
Note2CommentPopulatingConverter.getCurrentComponent() |
| Modifier and Type | Method and Description |
|---|---|
protected ComponentModel |
AbstractPrintJobServicelayerTest.getComponent() |
| Modifier and Type | Method and Description |
|---|---|
protected ComponentModel |
AbstractPrintWorkflowTest.createComponent() |
| Constructor and Description |
|---|
CsCustomerEventModel(UserModel _author,
CommentTypeModel _commentType,
ComponentModel _component,
ItemModel _owner,
String _text)
Deprecated.
Since 4.1.1 Please use the default constructor without parameters
|
CsCustomerEventModel(UserModel _author,
CommentTypeModel _commentType,
ComponentModel _component,
String _text)
Deprecated.
Since 4.1.1 Please use the default constructor without parameters
|
CsTicketEventModel(UserModel _author,
CommentTypeModel _commentType,
ComponentModel _component,
ItemModel _owner,
String _text)
Deprecated.
Since 4.1.1 Please use the default constructor without parameters
|
CsTicketEventModel(UserModel _author,
CommentTypeModel _commentType,
ComponentModel _component,
String _text)
Deprecated.
Since 4.1.1 Please use the default constructor without parameters
|
CsTicketResolutionEventModel(UserModel _author,
CommentTypeModel _commentType,
ComponentModel _component,
CsResolutionType _resolutionType,
String _text)
Deprecated.
Since 4.1.1 Please use the default constructor without parameters
|
CsTicketResolutionEventModel(UserModel _author,
CommentTypeModel _commentType,
ComponentModel _component,
ItemModel _owner,
CsResolutionType _resolutionType,
String _text)
Deprecated.
Since 4.1.1 Please use the default constructor without parameters
|
| Modifier and Type | Method and Description |
|---|---|
ComponentModel |
WarehousingCommentService.getOrCreateComponent(WarehousingCommentEventType eventType)
Get the component for the requested
WarehousingCommentEventType |
| Modifier and Type | Method and Description |
|---|---|
ComponentModel |
AbstractWarehousingCommentService.getOrCreateComponent(WarehousingCommentEventType eventType) |
| Modifier and Type | Method and Description |
|---|---|
ComponentModel |
ComponentModelBuilder.build() |
| Modifier and Type | Method and Description |
|---|---|
CommentModelBuilder |
CommentModelBuilder.withComponent(ComponentModel component) |
| Modifier and Type | Method and Description |
|---|---|
ComponentModel |
Components.ticketComponent() |
ComponentModel |
Components.warehousingComponent() |
Copyright © 2017 SAP SE. All Rights Reserved.