@RequestMapping(value="/{tenantId}/enterprise/v1/econtract")
public interface TenantConfigApi
| Modifier and Type | Method and Description |
|---|---|
DefaultResponse |
createTenantConfig(Long tenantId,
Long appId,
Long companyId,
@Valid TenantConfigRequest tenantConfigRequest) |
DefaultResponse |
deleteTenantConfig(Long tenantId,
Long appId,
Long companyId) |
DefaultResponse |
readTenantConfig(Long tenantId,
Long appId,
Long companyId) |
DefaultResponse |
updateTenantConfig(Long tenantId,
Long appId,
Long companyId,
@Valid TenantConfigRequest tenantConfigRequest) |
@RequestMapping(value="/tenant-conf",
method=POST,
produces="application/json;charset=UTF-8",
consumes="application/json;charset=UTF-8")
DefaultResponse createTenantConfig(@PathVariable(value="tenantId")
Long tenantId,
@RequestParam(value="appId")
Long appId,
@RequestParam(value="companyId")
Long companyId,
@RequestBody @Valid
@Valid TenantConfigRequest tenantConfigRequest)
@RequestMapping(value="/tenant-conf",
method=GET,
produces="application/json;charset=UTF-8")
DefaultResponse readTenantConfig(@PathVariable(value="tenantId")
Long tenantId,
@RequestParam(value="appId")
Long appId,
@RequestParam(value="companyId")
Long companyId)
@RequestMapping(value="/tenant-conf",
method=PUT,
produces="application/json;charset=UTF-8",
consumes="application/json;charset=UTF-8")
DefaultResponse updateTenantConfig(@PathVariable(value="tenantId")
Long tenantId,
@RequestParam(value="appId")
Long appId,
@RequestParam(value="companyId")
Long companyId,
@RequestBody @Valid
@Valid TenantConfigRequest tenantConfigRequest)
@RequestMapping(value="/tenant-conf",
method=DELETE,
produces="application/json;charset=UTF-8")
DefaultResponse deleteTenantConfig(@PathVariable(value="tenantId")
Long tenantId,
@RequestParam(value="appId")
Long appId,
@RequestParam(value="companyId")
Long companyId)
Copyright © 2020. All rights reserved.