FieldTestEntityResource.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.FieldTestEntity;
import io.github.jhipster.sample.repository.FieldTestEntityRepository;
import io.github.jhipster.sample.web.rest.errors.BadRequestAlertException;
import io.github.jhipster.sample.web.rest.util.HeaderUtil;
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 FieldTestEntity.
*/
@RestController
@RequestMapping("/api")
public class FieldTestEntityResource {
private final Logger log = LoggerFactory.getLogger(FieldTestEntityResource.class);
private static final String ENTITY_NAME = "fieldTestEntity";
private final FieldTestEntityRepository fieldTestEntityRepository;
public FieldTestEntityResource(FieldTestEntityRepository fieldTestEntityRepository) {
this.fieldTestEntityRepository = fieldTestEntityRepository;
}
/**
* POST /field-test-entities : Create a new fieldTestEntity.
*
* @param fieldTestEntity the fieldTestEntity to create
* @return the ResponseEntity with status 201 (Created) and with body the new fieldTestEntity, or with status 400 (Bad Request) if the fieldTestEntity has already an ID
* @throws URISyntaxException if the Location URI syntax is incorrect
*/
@PostMapping("/field-test-entities")
@Timed
public ResponseEntity<FieldTestEntity> createFieldTestEntity(@Valid @RequestBody FieldTestEntity fieldTestEntity) throws URISyntaxException {
log.debug("REST request to save FieldTestEntity : {}", fieldTestEntity);
if (fieldTestEntity.getId() != null) {
throw new BadRequestAlertException("A new fieldTestEntity cannot already have an ID", ENTITY_NAME, "idexists");
}
FieldTestEntity result = fieldTestEntityRepository.save(fieldTestEntity);
return ResponseEntity.created(new URI("/api/field-test-entities/" + result.getId()))
.headers(HeaderUtil.createEntityCreationAlert(ENTITY_NAME, result.getId().toString()))
.body(result);
}
/**
* PUT /field-test-entities : Updates an existing fieldTestEntity.
*
* @param fieldTestEntity the fieldTestEntity to update
* @return the ResponseEntity with status 200 (OK) and with body the updated fieldTestEntity,
* or with status 400 (Bad Request) if the fieldTestEntity is not valid,
* or with status 500 (Internal Server Error) if the fieldTestEntity couldn't be updated
* @throws URISyntaxException if the Location URI syntax is incorrect
*/
@PutMapping("/field-test-entities")
@Timed
public ResponseEntity<FieldTestEntity> updateFieldTestEntity(@Valid @RequestBody FieldTestEntity fieldTestEntity) throws URISyntaxException {
log.debug("REST request to update FieldTestEntity : {}", fieldTestEntity);
if (fieldTestEntity.getId() == null) {
return createFieldTestEntity(fieldTestEntity);
}
FieldTestEntity result = fieldTestEntityRepository.save(fieldTestEntity);
return ResponseEntity.ok()
.headers(HeaderUtil.createEntityUpdateAlert(ENTITY_NAME, fieldTestEntity.getId().toString()))
.body(result);
}
/**
* GET /field-test-entities : get all the fieldTestEntities.
*
* @return the ResponseEntity with status 200 (OK) and the list of fieldTestEntities in body
*/
@GetMapping("/field-test-entities")
@Timed
public List<FieldTestEntity> getAllFieldTestEntities() {
log.debug("REST request to get all FieldTestEntities");
return fieldTestEntityRepository.findAll();
}
/**
* GET /field-test-entities/:id : get the "id" fieldTestEntity.
*
* @param id the id of the fieldTestEntity to retrieve
* @return the ResponseEntity with status 200 (OK) and with body the fieldTestEntity, or with status 404 (Not Found)
*/
@GetMapping("/field-test-entities/{id}")
@Timed
public ResponseEntity<FieldTestEntity> getFieldTestEntity(@PathVariable Long id) {
log.debug("REST request to get FieldTestEntity : {}", id);
FieldTestEntity fieldTestEntity = fieldTestEntityRepository.findOne(id);
return ResponseUtil.wrapOrNotFound(Optional.ofNullable(fieldTestEntity));
}
/**
* DELETE /field-test-entities/:id : delete the "id" fieldTestEntity.
*
* @param id the id of the fieldTestEntity to delete
* @return the ResponseEntity with status 200 (OK)
*/
@DeleteMapping("/field-test-entities/{id}")
@Timed
public ResponseEntity<Void> deleteFieldTestEntity(@PathVariable Long id) {
log.debug("REST request to delete FieldTestEntity : {}", id);
fieldTestEntityRepository.delete(id);
return ResponseEntity.ok().headers(HeaderUtil.createEntityDeletionAlert(ENTITY_NAME, id.toString())).build();
}
}