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