FieldTestMapstructEntityResource.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.domain.FieldTestMapstructEntity;
import io.github.jhipster.sample.repository.FieldTestMapstructEntityRepository;
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.FieldTestMapstructEntityDTO;
import io.github.jhipster.sample.service.mapper.FieldTestMapstructEntityMapper;
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 FieldTestMapstructEntity.
*/
@RestController
@RequestMapping("/api")
public class FieldTestMapstructEntityResource {
private final Logger log = LoggerFactory.getLogger(FieldTestMapstructEntityResource.class);
private static final String ENTITY_NAME = "fieldTestMapstructEntity";
private final FieldTestMapstructEntityRepository fieldTestMapstructEntityRepository;
private final FieldTestMapstructEntityMapper fieldTestMapstructEntityMapper;
public FieldTestMapstructEntityResource(FieldTestMapstructEntityRepository fieldTestMapstructEntityRepository, FieldTestMapstructEntityMapper fieldTestMapstructEntityMapper) {
this.fieldTestMapstructEntityRepository = fieldTestMapstructEntityRepository;
this.fieldTestMapstructEntityMapper = fieldTestMapstructEntityMapper;
}
/**
* POST /field-test-mapstruct-entities : Create a new fieldTestMapstructEntity.
*
* @param fieldTestMapstructEntityDTO the fieldTestMapstructEntityDTO to create
* @return the ResponseEntity with status 201 (Created) and with body the new fieldTestMapstructEntityDTO, or with status 400 (Bad Request) if the fieldTestMapstructEntity has already an ID
* @throws URISyntaxException if the Location URI syntax is incorrect
*/
@PostMapping("/field-test-mapstruct-entities")
@Timed
public ResponseEntity<FieldTestMapstructEntityDTO> createFieldTestMapstructEntity(@Valid @RequestBody FieldTestMapstructEntityDTO fieldTestMapstructEntityDTO) throws URISyntaxException {
log.debug("REST request to save FieldTestMapstructEntity : {}", fieldTestMapstructEntityDTO);
if (fieldTestMapstructEntityDTO.getId() != null) {
throw new BadRequestAlertException("A new fieldTestMapstructEntity cannot already have an ID", ENTITY_NAME, "idexists");
}
FieldTestMapstructEntity fieldTestMapstructEntity = fieldTestMapstructEntityMapper.toEntity(fieldTestMapstructEntityDTO);
fieldTestMapstructEntity = fieldTestMapstructEntityRepository.save(fieldTestMapstructEntity);
FieldTestMapstructEntityDTO result = fieldTestMapstructEntityMapper.toDto(fieldTestMapstructEntity);
return ResponseEntity.created(new URI("/api/field-test-mapstruct-entities/" + result.getId()))
.headers(HeaderUtil.createEntityCreationAlert(ENTITY_NAME, result.getId().toString()))
.body(result);
}
/**
* PUT /field-test-mapstruct-entities : Updates an existing fieldTestMapstructEntity.
*
* @param fieldTestMapstructEntityDTO the fieldTestMapstructEntityDTO to update
* @return the ResponseEntity with status 200 (OK) and with body the updated fieldTestMapstructEntityDTO,
* or with status 400 (Bad Request) if the fieldTestMapstructEntityDTO is not valid,
* or with status 500 (Internal Server Error) if the fieldTestMapstructEntityDTO couldn't be updated
* @throws URISyntaxException if the Location URI syntax is incorrect
*/
@PutMapping("/field-test-mapstruct-entities")
@Timed
public ResponseEntity<FieldTestMapstructEntityDTO> updateFieldTestMapstructEntity(@Valid @RequestBody FieldTestMapstructEntityDTO fieldTestMapstructEntityDTO) throws URISyntaxException {
log.debug("REST request to update FieldTestMapstructEntity : {}", fieldTestMapstructEntityDTO);
if (fieldTestMapstructEntityDTO.getId() == null) {
return createFieldTestMapstructEntity(fieldTestMapstructEntityDTO);
}
FieldTestMapstructEntity fieldTestMapstructEntity = fieldTestMapstructEntityMapper.toEntity(fieldTestMapstructEntityDTO);
fieldTestMapstructEntity = fieldTestMapstructEntityRepository.save(fieldTestMapstructEntity);
FieldTestMapstructEntityDTO result = fieldTestMapstructEntityMapper.toDto(fieldTestMapstructEntity);
return ResponseEntity.ok()
.headers(HeaderUtil.createEntityUpdateAlert(ENTITY_NAME, fieldTestMapstructEntityDTO.getId().toString()))
.body(result);
}
/**
* GET /field-test-mapstruct-entities : get all the fieldTestMapstructEntities.
*
* @return the ResponseEntity with status 200 (OK) and the list of fieldTestMapstructEntities in body
*/
@GetMapping("/field-test-mapstruct-entities")
@Timed
public List<FieldTestMapstructEntityDTO> getAllFieldTestMapstructEntities() {
log.debug("REST request to get all FieldTestMapstructEntities");
List<FieldTestMapstructEntity> fieldTestMapstructEntities = fieldTestMapstructEntityRepository.findAll();
return fieldTestMapstructEntityMapper.toDto(fieldTestMapstructEntities);
}
/**
* GET /field-test-mapstruct-entities/:id : get the "id" fieldTestMapstructEntity.
*
* @param id the id of the fieldTestMapstructEntityDTO to retrieve
* @return the ResponseEntity with status 200 (OK) and with body the fieldTestMapstructEntityDTO, or with status 404 (Not Found)
*/
@GetMapping("/field-test-mapstruct-entities/{id}")
@Timed
public ResponseEntity<FieldTestMapstructEntityDTO> getFieldTestMapstructEntity(@PathVariable Long id) {
log.debug("REST request to get FieldTestMapstructEntity : {}", id);
FieldTestMapstructEntity fieldTestMapstructEntity = fieldTestMapstructEntityRepository.findOne(id);
FieldTestMapstructEntityDTO fieldTestMapstructEntityDTO = fieldTestMapstructEntityMapper.toDto(fieldTestMapstructEntity);
return ResponseUtil.wrapOrNotFound(Optional.ofNullable(fieldTestMapstructEntityDTO));
}
/**
* DELETE /field-test-mapstruct-entities/:id : delete the "id" fieldTestMapstructEntity.
*
* @param id the id of the fieldTestMapstructEntityDTO to delete
* @return the ResponseEntity with status 200 (OK)
*/
@DeleteMapping("/field-test-mapstruct-entities/{id}")
@Timed
public ResponseEntity<Void> deleteFieldTestMapstructEntity(@PathVariable Long id) {
log.debug("REST request to delete FieldTestMapstructEntity : {}", id);
fieldTestMapstructEntityRepository.delete(id);
return ResponseEntity.ok().headers(HeaderUtil.createEntityDeletionAlert(ENTITY_NAME, id.toString())).build();
}
}