Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/**
* Copyright (C) 2024 BonitaSoft S.A.
* BonitaSoft, 32 rue Gustave Eiffel - 38000 Grenoble
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2.0 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package org.bonitasoft.web.client.api;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.bonitasoft.web.client.invoker.ApiClient;
import org.bonitasoft.web.client.invoker.EncodingUtils;
import org.bonitasoft.web.client.model.ApiResponse;
import org.bonitasoft.web.client.model.ArchivedProcessInstance;
import feign.*;
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.8.0")
public interface ArchivedProcessInstanceApi extends ApiClient.Api {
/**
* Delete the ArchivedProcessInstance by ID
* Delete the single ArchivedProcessInstance for the given ID
*
* @param id ID of the ArchivedProcessInstance to delete (required)
*/
@RequestLine("DELETE /API/bpm/archivedCase/{id}")
@Headers({
"Accept: application/json",
})
void deleteArchivedProcessInstanceById(@Param("id") String id);
/**
* Delete the ArchivedProcessInstance by ID
* Similar to deleteArchivedProcessInstanceById but it also returns the http response headers .
* Delete the single ArchivedProcessInstance for the given ID
*
* @param id ID of the ArchivedProcessInstance to delete (required)
*/
@RequestLine("DELETE /API/bpm/archivedCase/{id}")
@Headers({
"Accept: application/json",
})
ApiResponse deleteArchivedProcessInstanceByIdWithHttpInfo(@Param("id") String id);
/**
* Finds the ArchivedProcessInstance by ID
* Returns the single ArchivedProcessInstance for the given ID
*
* @param id ID of the ArchivedProcessInstance to return (required)
* @return ArchivedProcessInstance
*/
@RequestLine("GET /API/bpm/archivedCase/{id}")
@Headers({
"Accept: application/json",
})
ArchivedProcessInstance getArchivedProcessInstanceById(@Param("id") String id);
/**
* Finds the ArchivedProcessInstance by ID
* Similar to getArchivedProcessInstanceById but it also returns the http response headers .
* Returns the single ArchivedProcessInstance for the given ID
*
* @param id ID of the ArchivedProcessInstance to return (required)
* @return A ApiResponse that wraps the response boyd and the http headers.
*/
@RequestLine("GET /API/bpm/archivedCase/{id}")
@Headers({
"Accept: application/json",
})
ApiResponse getArchivedProcessInstanceByIdWithHttpInfo(@Param("id") String id);
/**
* Finds the Context by ArchivedProcessInstance ID
* Returns the Context for the given ArchivedProcessInstance ID
*
* @param id ID of the ArchivedProcessInstance that has the Context to return (required)
* @return Map<String, Object>
*/
@RequestLine("GET /API/bpm/archivedCase/{id}/context")
@Headers({
"Accept: application/json",
})
Map getContextByArchivedProcessInstanceId(@Param("id") String id);
/**
* Finds the Context by ArchivedProcessInstance ID
* Similar to getContextByArchivedProcessInstanceId but it also returns the http response headers .
* Returns the Context for the given ArchivedProcessInstance ID
*
* @param id ID of the ArchivedProcessInstance that has the Context to return (required)
* @return A ApiResponse that wraps the response boyd and the http headers.
*/
@RequestLine("GET /API/bpm/archivedCase/{id}/context")
@Headers({
"Accept: application/json",
})
ApiResponse