Package | Description |
---|---|
io.github.jhipster.sample.domain |
JPA domain objects.
|
io.github.jhipster.sample.repository |
Spring Data JPA repositories.
|
io.github.jhipster.sample.service.mapper |
MapStruct mappers for mapping domain objects and Data Transfer Objects.
|
Modifier and Type | Field and Description |
---|---|
static javax.persistence.metamodel.SingularAttribute<BankAccount,BankAccountType> |
BankAccount_.accountType |
static javax.persistence.metamodel.SingularAttribute<BankAccount,java.lang.Boolean> |
BankAccount_.active |
static javax.persistence.metamodel.SingularAttribute<BankAccount,java.lang.Long> |
BankAccount_.agencyNumber |
static javax.persistence.metamodel.SingularAttribute<BankAccount,byte[]> |
BankAccount_.attachment |
static javax.persistence.metamodel.SingularAttribute<BankAccount,java.lang.String> |
BankAccount_.attachmentContentType |
static javax.persistence.metamodel.SingularAttribute<BankAccount,java.math.BigDecimal> |
BankAccount_.balance |
static javax.persistence.metamodel.SingularAttribute<Operation,BankAccount> |
Operation_.bankAccount |
static javax.persistence.metamodel.SingularAttribute<BankAccount,java.lang.Integer> |
BankAccount_.bankNumber |
static javax.persistence.metamodel.SingularAttribute<BankAccount,java.lang.String> |
BankAccount_.description |
static javax.persistence.metamodel.SingularAttribute<BankAccount,java.lang.Long> |
BankAccount_.id |
static javax.persistence.metamodel.SingularAttribute<BankAccount,java.time.Instant> |
BankAccount_.lastOperationDate |
static javax.persistence.metamodel.SingularAttribute<BankAccount,java.lang.Float> |
BankAccount_.lastOperationDuration |
static javax.persistence.metamodel.SingularAttribute<BankAccount,java.lang.Double> |
BankAccount_.meanOperationDuration |
static javax.persistence.metamodel.SingularAttribute<BankAccount,java.lang.String> |
BankAccount_.name |
static javax.persistence.metamodel.SingularAttribute<BankAccount,java.time.LocalDate> |
BankAccount_.openingDay |
static javax.persistence.metamodel.SetAttribute<BankAccount,Operation> |
BankAccount_.operations |
static javax.persistence.metamodel.SingularAttribute<BankAccount,User> |
BankAccount_.user |
Modifier and Type | Method and Description |
---|---|
BankAccount |
BankAccount.accountType(BankAccountType accountType) |
BankAccount |
BankAccount.active(java.lang.Boolean active) |
BankAccount |
BankAccount.addOperation(Operation operation) |
BankAccount |
BankAccount.agencyNumber(java.lang.Long agencyNumber) |
BankAccount |
BankAccount.attachment(byte[] attachment) |
BankAccount |
BankAccount.attachmentContentType(java.lang.String attachmentContentType) |
BankAccount |
BankAccount.balance(java.math.BigDecimal balance) |
BankAccount |
BankAccount.bankNumber(java.lang.Integer bankNumber) |
BankAccount |
BankAccount.description(java.lang.String description) |
BankAccount |
Operation.getBankAccount() |
BankAccount |
BankAccount.lastOperationDate(java.time.Instant lastOperationDate) |
BankAccount |
BankAccount.lastOperationDuration(java.lang.Float lastOperationDuration) |
BankAccount |
BankAccount.meanOperationDuration(java.lang.Double meanOperationDuration) |
BankAccount |
BankAccount.name(java.lang.String name) |
BankAccount |
BankAccount.openingDay(java.time.LocalDate openingDay) |
BankAccount |
BankAccount.operations(java.util.Set<Operation> operations) |
BankAccount |
BankAccount.removeOperation(Operation operation) |
BankAccount |
BankAccount.user(User user) |
Modifier and Type | Method and Description |
---|---|
Operation |
Operation.bankAccount(BankAccount bankAccount) |
void |
Operation.setBankAccount(BankAccount bankAccount) |
Modifier and Type | Method and Description |
---|---|
java.util.List<BankAccount> |
BankAccountRepository.findByUserIsCurrentUser() |
Modifier and Type | Method and Description |
---|---|
default BankAccount |
BankAccountMapper.fromId(java.lang.Long id) |
BankAccount |
BankAccountMapperImpl.toEntity(BankAccountDTO bankAccountDTO) |
BankAccount |
BankAccountMapper.toEntity(BankAccountDTO bankAccountDTO) |
Modifier and Type | Method and Description |
---|---|
java.util.List<BankAccount> |
BankAccountMapperImpl.toEntity(java.util.List<BankAccountDTO> dtoList) |
Modifier and Type | Method and Description |
---|---|
BankAccountDTO |
BankAccountMapperImpl.toDto(BankAccount bankAccount) |
BankAccountDTO |
BankAccountMapper.toDto(BankAccount bankAccount) |
Modifier and Type | Method and Description |
---|---|
java.util.List<BankAccountDTO> |
BankAccountMapperImpl.toDto(java.util.List<BankAccount> entityList) |
Copyright © 2017 Osgiliath. All rights reserved.