Java tutorial
/* * Copyright (C) 2016 msg-systems ag * * 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. * * * @author Rafael Kansy * @author Michael Schaefer */ package de.msg.controller; import de.msg.domain.route.Route; import de.msg.service.RouteService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.ResponseEntity; import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.web.bind.annotation.*; import javax.validation.Valid; @RestController @RequestMapping("routes2") public class RouteController { @Autowired private RouteService service; @RequestMapping("count") @PreAuthorize("isAuthenticated() and hasPermission('de.msg.domain.route.Route', 'read')") public long count() { return service.count(); } @RequestMapping(value = "{id}", method = RequestMethod.DELETE) @PreAuthorize("isAuthenticated() and hasPermission('de.msg.domain.route.Route', 'read')") public ResponseEntity delete(@PathVariable(value = "id") Long id) throws RouteNotFoundException { try { service.exists(id); service.delete(id); return ResponseEntity.accepted().build(); } catch (RouteNotFoundException e) { throw e; } } @RequestMapping(value = "{id}", method = RequestMethod.GET) @PreAuthorize("isAuthenticated() and hasPermission('de.msg.domain.route.Route', 'read')") public ResponseEntity<Route> get(@PathVariable(value = "id") Long id) throws RouteNotFoundException { try { service.exists(id); return ResponseEntity.ok(service.findById(id)); } catch (RouteNotFoundException e) { throw e; } } @RequestMapping(value = "{id}", method = RequestMethod.PUT) @PreAuthorize("isAuthenticated() and hasPermission('de.msg.domain.route.Route', 'read')") public ResponseEntity<Route> put(@Valid @RequestBody Route entity) { return ResponseEntity.ok(service.save(entity)); } @RequestMapping(value = "{id}", method = RequestMethod.POST) @PreAuthorize("isAuthenticated() and hasPermission('de.msg.domain.route.Route', 'read')") public ResponseEntity<Route> post(@Valid @RequestBody Route entity) { return ResponseEntity.ok(service.save(entity)); } @RequestMapping @PreAuthorize("isAuthenticated() and hasPermission('de.msg.domain.route.Route', 'read')") public ResponseEntity<Iterable<Route>> findAll() { return ResponseEntity.ok(service.findAll()); } @RequestMapping("search/findByDeparture") @PreAuthorize("isAuthenticated() and hasPermission('de.msg.domain.route.Route', 'read')") public ResponseEntity<Iterable<Route>> findByDeparture(@RequestParam(value = "departure") String departure) { return ResponseEntity.ok(service.findByDeparture(departure)); } }