Package | Description |
---|---|
io.github.jhipster.sample.domain |
JPA domain objects.
|
io.github.jhipster.sample.repository |
Spring Data JPA repositories.
|
io.github.jhipster.sample.web.rest |
Spring MVC REST controllers.
|
Modifier and Type | Field and Description |
---|---|
static javax.persistence.metamodel.SingularAttribute<Operation,java.math.BigDecimal> |
Operation_.amount |
static javax.persistence.metamodel.SingularAttribute<Operation,BankAccount> |
Operation_.bankAccount |
static javax.persistence.metamodel.SingularAttribute<Operation,java.time.Instant> |
Operation_.date |
static javax.persistence.metamodel.SingularAttribute<Operation,java.lang.String> |
Operation_.description |
static javax.persistence.metamodel.SingularAttribute<Operation,java.lang.Long> |
Operation_.id |
static javax.persistence.metamodel.SetAttribute<Operation,Label> |
Operation_.labels |
static javax.persistence.metamodel.SetAttribute<Label,Operation> |
Label_.operations |
static javax.persistence.metamodel.SetAttribute<BankAccount,Operation> |
BankAccount_.operations |
Modifier and Type | Method and Description |
---|---|
Operation |
Operation.addLabel(Label label) |
Operation |
Operation.amount(java.math.BigDecimal amount) |
Operation |
Operation.bankAccount(BankAccount bankAccount) |
Operation |
Operation.date(java.time.Instant date) |
Operation |
Operation.description(java.lang.String description) |
Operation |
Operation.labels(java.util.Set<Label> labels) |
Operation |
Operation.removeLabel(Label label) |
Modifier and Type | Method and Description |
---|---|
java.util.Set<Operation> |
Label.getOperations() |
java.util.Set<Operation> |
BankAccount.getOperations() |
Modifier and Type | Method and Description |
---|---|
Label |
Label.addOperation(Operation operation) |
BankAccount |
BankAccount.addOperation(Operation operation) |
Label |
Label.removeOperation(Operation operation) |
BankAccount |
BankAccount.removeOperation(Operation operation) |
Modifier and Type | Method and Description |
---|---|
Label |
Label.operations(java.util.Set<Operation> operations) |
BankAccount |
BankAccount.operations(java.util.Set<Operation> operations) |
void |
Label.setOperations(java.util.Set<Operation> operations) |
void |
BankAccount.setOperations(java.util.Set<Operation> operations) |
Modifier and Type | Method and Description |
---|---|
Operation |
OperationRepository.findOneWithEagerRelationships(java.lang.Long id) |
Modifier and Type | Method and Description |
---|---|
java.util.List<Operation> |
OperationRepository.findAllWithEagerRelationships() |
Modifier and Type | Method and Description |
---|---|
org.springframework.http.ResponseEntity<Operation> |
OperationResource.createOperation(Operation operation)
POST /operations : Create a new operation.
|
org.springframework.http.ResponseEntity<java.util.List<Operation>> |
OperationResource.getAllOperations(org.springframework.data.domain.Pageable pageable)
GET /operations : get all the operations.
|
org.springframework.http.ResponseEntity<Operation> |
OperationResource.getOperation(java.lang.Long id)
GET /operations/:id : get the "id" operation.
|
org.springframework.http.ResponseEntity<Operation> |
OperationResource.updateOperation(Operation operation)
PUT /operations : Updates an existing operation.
|
Modifier and Type | Method and Description |
---|---|
org.springframework.http.ResponseEntity<Operation> |
OperationResource.createOperation(Operation operation)
POST /operations : Create a new operation.
|
org.springframework.http.ResponseEntity<Operation> |
OperationResource.updateOperation(Operation operation)
PUT /operations : Updates an existing operation.
|
Copyright © 2017 Osgiliath. All rights reserved.