Class CharacteristicClassTypeService
java.lang.Object
overit.geocallapp.utilities.rs.common.PrivateService
overit.geocallapp.wfm.characteristics.rs1.characteristicclasstype.CharacteristicClassTypeService
@RestController
@RequestMapping("configurations/characteristics/r1/class-types")
@Resource(logging=true)
public class CharacteristicClassTypeService
extends PrivateService
Service for manage class type
- Since:
- 16.0
- GCApi:
- rest
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<DTOCharacteristicClassType> get(Long id, Collection<String> fields) org.springframework.http.ResponseEntity<PageResponse<DTOCharacteristicClassType>> getCollection(@Valid Page page, Collection<String> fields, String order, @Valid DTOCharacteristicClassTypeFilter filter)
-
Constructor Details
-
CharacteristicClassTypeService
public CharacteristicClassTypeService()
-
-
Method Details
-
getCollection
@GetMapping(produces="application/json") public org.springframework.http.ResponseEntity<PageResponse<DTOCharacteristicClassType>> getCollection(@RequestParam("_page") @Valid @Valid Page page, @RequestParam(required=false,name="_fields") Collection<String> fields, @RequestParam(required=false,name="_order") String order, @Valid @Valid DTOCharacteristicClassTypeFilter filter) throws DAValidateException, DAException - Throws:
DAValidateExceptionDAException
-
get
@GetMapping(value="{classTypeId:[0-9]+}", produces="application/json") public org.springframework.http.ResponseEntity<DTOCharacteristicClassType> get(@PathVariable("classTypeId") Long id, @RequestParam(required=false,name="_fields") Collection<String> fields) throws DAValidateException, DAException - Throws:
DAValidateExceptionDAException
-