Package | Description |
---|---|
io.github.jhipster.sample.domain |
JPA domain objects.
|
io.github.jhipster.sample.service |
Service layer beans.
|
io.github.jhipster.sample.web.rest |
Spring MVC REST controllers.
|
Modifier and Type | Field and Description |
---|---|
static javax.persistence.metamodel.SingularAttribute<Label,java.lang.Long> |
Label_.id |
static javax.persistence.metamodel.SingularAttribute<Label,java.lang.String> |
Label_.labelName |
static javax.persistence.metamodel.SetAttribute<Operation,Label> |
Operation_.labels |
static javax.persistence.metamodel.SetAttribute<Label,Operation> |
Label_.operations |
Modifier and Type | Method and Description |
---|---|
Label |
Label.addOperation(Operation operation) |
Label |
Label.labelName(java.lang.String labelName) |
Label |
Label.operations(java.util.Set<Operation> operations) |
Label |
Label.removeOperation(Operation operation) |
Modifier and Type | Method and Description |
---|---|
java.util.Set<Label> |
Operation.getLabels() |
Modifier and Type | Method and Description |
---|---|
Operation |
Operation.addLabel(Label label) |
Operation |
Operation.removeLabel(Label label) |
Modifier and Type | Method and Description |
---|---|
Operation |
Operation.labels(java.util.Set<Label> labels) |
void |
Operation.setLabels(java.util.Set<Label> labels) |
Modifier and Type | Method and Description |
---|---|
Label |
LabelService.findOne(java.lang.Long id)
Get one label by id.
|
Label |
LabelService.save(Label label)
Save a label.
|
Modifier and Type | Method and Description |
---|---|
org.springframework.data.domain.Page<Label> |
LabelService.findAll(org.springframework.data.domain.Pageable pageable)
Get all the labels.
|
Modifier and Type | Method and Description |
---|---|
Label |
LabelService.save(Label label)
Save a label.
|
Modifier and Type | Method and Description |
---|---|
org.springframework.http.ResponseEntity<Label> |
LabelResource.createLabel(Label label)
POST /labels : Create a new label.
|
org.springframework.http.ResponseEntity<java.util.List<Label>> |
LabelResource.getAllLabels(org.springframework.data.domain.Pageable pageable)
GET /labels : get all the labels.
|
org.springframework.http.ResponseEntity<Label> |
LabelResource.getLabel(java.lang.Long id)
GET /labels/:id : get the "id" label.
|
org.springframework.http.ResponseEntity<Label> |
LabelResource.updateLabel(Label label)
PUT /labels : Updates an existing label.
|
Modifier and Type | Method and Description |
---|---|
org.springframework.http.ResponseEntity<Label> |
LabelResource.createLabel(Label label)
POST /labels : Create a new label.
|
org.springframework.http.ResponseEntity<Label> |
LabelResource.updateLabel(Label label)
PUT /labels : Updates an existing label.
|
Copyright © 2017 Osgiliath. All rights reserved.