BankAccountResource.java
package io.github.jhipster.sample.web.rest;
/*-
* #%L
* Jhipster Sample Application
* %%
* Copyright (C) 2017 Osgiliath
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* #L%
*/
import com.codahale.metrics.annotation.Timed;
import io.github.jhipster.sample.service.BankAccountService;
import io.github.jhipster.sample.web.rest.errors.BadRequestAlertException;
import io.github.jhipster.sample.web.rest.util.HeaderUtil;
import io.github.jhipster.sample.service.dto.BankAccountDTO;
import io.github.jhipster.sample.service.dto.BankAccountCriteria;
import io.github.jhipster.sample.service.BankAccountQueryService;
import io.github.jhipster.web.util.ResponseUtil;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.*;
import javax.validation.Valid;
import java.net.URI;
import java.net.URISyntaxException;
import java.util.List;
import java.util.Optional;
/**
* REST controller for managing BankAccount.
*/
@RestController
@RequestMapping("/api")
public class BankAccountResource {
private final Logger log = LoggerFactory.getLogger(BankAccountResource.class);
private static final String ENTITY_NAME = "bankAccount";
private final BankAccountService bankAccountService;
private final BankAccountQueryService bankAccountQueryService;
public BankAccountResource(BankAccountService bankAccountService, BankAccountQueryService bankAccountQueryService) {
this.bankAccountService = bankAccountService;
this.bankAccountQueryService = bankAccountQueryService;
}
/**
* POST /bank-accounts : Create a new bankAccount.
*
* @param bankAccountDTO the bankAccountDTO to create
* @return the ResponseEntity with status 201 (Created) and with body the new bankAccountDTO, or with status 400 (Bad Request) if the bankAccount has already an ID
* @throws URISyntaxException if the Location URI syntax is incorrect
*/
@PostMapping("/bank-accounts")
@Timed
public ResponseEntity<BankAccountDTO> createBankAccount(@Valid @RequestBody BankAccountDTO bankAccountDTO) throws URISyntaxException {
log.debug("REST request to save BankAccount : {}", bankAccountDTO);
if (bankAccountDTO.getId() != null) {
throw new BadRequestAlertException("A new bankAccount cannot already have an ID", ENTITY_NAME, "idexists");
}
BankAccountDTO result = bankAccountService.save(bankAccountDTO);
return ResponseEntity.created(new URI("/api/bank-accounts/" + result.getId()))
.headers(HeaderUtil.createEntityCreationAlert(ENTITY_NAME, result.getId().toString()))
.body(result);
}
/**
* PUT /bank-accounts : Updates an existing bankAccount.
*
* @param bankAccountDTO the bankAccountDTO to update
* @return the ResponseEntity with status 200 (OK) and with body the updated bankAccountDTO,
* or with status 400 (Bad Request) if the bankAccountDTO is not valid,
* or with status 500 (Internal Server Error) if the bankAccountDTO couldn't be updated
* @throws URISyntaxException if the Location URI syntax is incorrect
*/
@PutMapping("/bank-accounts")
@Timed
public ResponseEntity<BankAccountDTO> updateBankAccount(@Valid @RequestBody BankAccountDTO bankAccountDTO) throws URISyntaxException {
log.debug("REST request to update BankAccount : {}", bankAccountDTO);
if (bankAccountDTO.getId() == null) {
return createBankAccount(bankAccountDTO);
}
BankAccountDTO result = bankAccountService.save(bankAccountDTO);
return ResponseEntity.ok()
.headers(HeaderUtil.createEntityUpdateAlert(ENTITY_NAME, bankAccountDTO.getId().toString()))
.body(result);
}
/**
* GET /bank-accounts : get all the bankAccounts.
*
* @param criteria the criterias which the requested entities should match
* @return the ResponseEntity with status 200 (OK) and the list of bankAccounts in body
*/
@GetMapping("/bank-accounts")
@Timed
public ResponseEntity<List<BankAccountDTO>> getAllBankAccounts(BankAccountCriteria criteria) {
log.debug("REST request to get BankAccounts by criteria: {}", criteria);
List<BankAccountDTO> entityList = bankAccountQueryService.findByCriteria(criteria);
return ResponseEntity.ok().body(entityList);
}
/**
* GET /bank-accounts/:id : get the "id" bankAccount.
*
* @param id the id of the bankAccountDTO to retrieve
* @return the ResponseEntity with status 200 (OK) and with body the bankAccountDTO, or with status 404 (Not Found)
*/
@GetMapping("/bank-accounts/{id}")
@Timed
public ResponseEntity<BankAccountDTO> getBankAccount(@PathVariable Long id) {
log.debug("REST request to get BankAccount : {}", id);
BankAccountDTO bankAccountDTO = bankAccountService.findOne(id);
return ResponseUtil.wrapOrNotFound(Optional.ofNullable(bankAccountDTO));
}
/**
* DELETE /bank-accounts/:id : delete the "id" bankAccount.
*
* @param id the id of the bankAccountDTO to delete
* @return the ResponseEntity with status 200 (OK)
*/
@DeleteMapping("/bank-accounts/{id}")
@Timed
public ResponseEntity<Void> deleteBankAccount(@PathVariable Long id) {
log.debug("REST request to delete BankAccount : {}", id);
bankAccountService.delete(id);
return ResponseEntity.ok().headers(HeaderUtil.createEntityDeletionAlert(ENTITY_NAME, id.toString())).build();
}
}