Class SkillOverrideConfigurationService
java.lang.Object
overit.geocallapp.utilities.rs.common.PrivateService
overit.geocallapp.wfm.skills.rs1.skilloverrideconfiguration.SkillOverrideConfigurationService
@RestController
@RequestMapping("workforce/skills/r1/override-configurations")
@Resource(logging=true)
public class SkillOverrideConfigurationService
extends PrivateService
Service for manage skill override configurations
- Since:
- 21.0
- GCApi:
- rest
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<DTOSkillOverrideConfiguration> get(Long skillOverrideConfigurationId, String language, Collection<String> fields) org.springframework.http.ResponseEntity<PageResponse<DTOSkillOverrideConfiguration>> getCollection(@Valid Page page, Collection<String> fields, String order, String language, @Valid @NotNull DTOSkillOverrideConfigurationFilter filter) org.springframework.http.ResponseEntity<Void> patch(Long skillOverrideConfigurationId, @Valid DTOSkillOverrideConfigurationUpdate dto) org.springframework.http.ResponseEntity<DTOIdentifier<Long>>
-
Constructor Details
-
SkillOverrideConfigurationService
public SkillOverrideConfigurationService()
-
-
Method Details
-
getCollection
@GetMapping(produces="application/json") public org.springframework.http.ResponseEntity<PageResponse<DTOSkillOverrideConfiguration>> getCollection(@RequestParam("_page") @Valid @Valid Page page, @RequestParam(required=false,name="_fields") Collection<String> fields, @RequestParam(required=false,name="_order") String order, @RequestParam(required=false,name="_language",defaultValue="user") String language, @Valid @NotNull @Valid @NotNull DTOSkillOverrideConfigurationFilter filter) throws DAValidateException, DAException - Throws:
DAValidateExceptionDAException
-
get
@GetMapping(value="{overrideConfigurationId:[0-9]+}", produces="application/json") public org.springframework.http.ResponseEntity<DTOSkillOverrideConfiguration> get(@PathVariable("overrideConfigurationId") Long skillOverrideConfigurationId, @RequestParam(required=false,name="_language",defaultValue="user") String language, @RequestParam(required=false,value="_fields") Collection<String> fields) throws DAValidateException, DAException - Throws:
DAValidateExceptionDAException
-
post
@PostMapping(consumes="application/json", produces="application/json") public org.springframework.http.ResponseEntity<DTOIdentifier<Long>> post(@Valid @RequestBody @Valid DTOSkillOverrideConfigurationInsert dto) throws DAValidateException, DAException - Throws:
DAValidateExceptionDAException
-
patch
@PatchMapping(value="{overrideConfigurationId:[0-9]+}", consumes="application/json", produces="application/json") public org.springframework.http.ResponseEntity<Void> patch(@PathVariable("overrideConfigurationId") Long skillOverrideConfigurationId, @Valid @RequestBody @Valid DTOSkillOverrideConfigurationUpdate dto) throws DAValidateException, DAException - Throws:
DAValidateExceptionDAException
-