Interface ProvisioningCategoryApi
public interface ProvisioningCategoryApi
-
Method Summary
Modifier and TypeMethodDescriptionretrofit2.Call<CommandProcessingResult> retrofit2.Call<CommandProcessingResult> retrofit2.Call<CommandProcessingResult> createProvisioningCategory(String body, Map<String, String> headers) retrofit2.Call<CommandProcessingResult> createProvisioningCategory(Map<String, String> headers) retrofit2.Call<CommandProcessingResult> deleteProvisioningCategory(Long categoryId) retrofit2.Call<CommandProcessingResult> deleteProvisioningCategory(Long categoryId, Map<String, String> headers) retrofit2.Call<List<ProvisioningCategoryData>> retrofit2.Call<List<ProvisioningCategoryData>> retrieveAll15(Map<String, String> headers) retrofit2.Call<CommandProcessingResult> updateProvisioningCategory(Long categoryId) retrofit2.Call<CommandProcessingResult> updateProvisioningCategory(Long categoryId, String body) retrofit2.Call<CommandProcessingResult> retrofit2.Call<CommandProcessingResult> updateProvisioningCategory(Long categoryId, Map<String, String> headers)
-
Method Details
-
createProvisioningCategory
@Headers("Content-Type:application/json") @POST("v1/provisioningcategory") retrofit2.Call<CommandProcessingResult> createProvisioningCategory(@Body String body) - Parameters:
body- (optional)- Returns:
- Call<CommandProcessingResult>
-
deleteProvisioningCategory
@DELETE("v1/provisioningcategory/{categoryId}") retrofit2.Call<CommandProcessingResult> deleteProvisioningCategory(@Path("categoryId") Long categoryId) - Parameters:
categoryId- (required)- Returns:
- Call<CommandProcessingResult>
-
retrieveAll15
- Returns:
- Call<List<ProvisioningCategoryData>>
-
updateProvisioningCategory
@Headers("Content-Type:application/json") @PUT("v1/provisioningcategory/{categoryId}") retrofit2.Call<CommandProcessingResult> updateProvisioningCategory(@Path("categoryId") Long categoryId, @Body String body) - Parameters:
categoryId- (required)body- (optional)- Returns:
- Call<CommandProcessingResult>
-
createProvisioningCategory
@Headers("Content-Type:application/json") @POST("v1/provisioningcategory") retrofit2.Call<CommandProcessingResult> createProvisioningCategory()- Parameters:
body- (optional)- Returns:
- Call<CommandProcessingResult>
-
updateProvisioningCategory
@Headers("Content-Type:application/json") @PUT("v1/provisioningcategory/{categoryId}") retrofit2.Call<CommandProcessingResult> updateProvisioningCategory(@Path("categoryId") Long categoryId) - Parameters:
categoryId- (required)body- (optional)- Returns:
- Call<CommandProcessingResult>
-
createProvisioningCategory
@Headers("Content-Type:application/json") @POST("v1/provisioningcategory") retrofit2.Call<CommandProcessingResult> createProvisioningCategory(@Body String body, @HeaderMap Map<String, String> headers) - Parameters:
body- (optional)- Returns:
- Call<CommandProcessingResult>
-
deleteProvisioningCategory
@DELETE("v1/provisioningcategory/{categoryId}") retrofit2.Call<CommandProcessingResult> deleteProvisioningCategory(@Path("categoryId") Long categoryId, @HeaderMap Map<String, String> headers) - Parameters:
categoryId- (required)- Returns:
- Call<CommandProcessingResult>
-
retrieveAll15
@GET("v1/provisioningcategory") retrofit2.Call<List<ProvisioningCategoryData>> retrieveAll15(@HeaderMap Map<String, String> headers) - Returns:
- Call<List<ProvisioningCategoryData>>
-
updateProvisioningCategory
@Headers("Content-Type:application/json") @PUT("v1/provisioningcategory/{categoryId}") retrofit2.Call<CommandProcessingResult> updateProvisioningCategory(@Path("categoryId") Long categoryId, @Body String body, @HeaderMap Map<String, String> headers) - Parameters:
categoryId- (required)body- (optional)- Returns:
- Call<CommandProcessingResult>
-
createProvisioningCategory
@Headers("Content-Type:application/json") @POST("v1/provisioningcategory") retrofit2.Call<CommandProcessingResult> createProvisioningCategory(@HeaderMap Map<String, String> headers) - Parameters:
body- (optional)- Returns:
- Call<CommandProcessingResult>
-
updateProvisioningCategory
@Headers("Content-Type:application/json") @PUT("v1/provisioningcategory/{categoryId}") retrofit2.Call<CommandProcessingResult> updateProvisioningCategory(@Path("categoryId") Long categoryId, @HeaderMap Map<String, String> headers) - Parameters:
categoryId- (required)body- (optional)- Returns:
- Call<CommandProcessingResult>
-