fi.metatavu.restfulptv.client.OrganizationServicesApi Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of restful-ptv-rest-client Show documentation
Show all versions of restful-ptv-rest-client Show documentation
Restful way to use Palvelutietovaranto.
/**
* RESTful PTV
* Restful way to use Palvelutietovaranto.
*
* OpenAPI spec version: v1
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package fi.metatavu.restfulptv.client;
import fi.metatavu.restfulptv.client.model.*;
import fi.metatavu.restfulptv.client.model.BadRequest;
import fi.metatavu.restfulptv.client.model.OrganizationService;
import fi.metatavu.restfulptv.client.model.Organization;
import fi.metatavu.restfulptv.client.model.Forbidden;
import fi.metatavu.restfulptv.client.model.InternalServerError;
import fi.metatavu.restfulptv.client.model.NotFound;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
@javax.annotation.Generated(value = "class io.swagger.codegen.languages.JavaClientCodegen", date = "2017-04-10T20:24:26.046+03:00")
public class OrganizationServicesApi {
private ApiClient client;
private String baseUrl;
public OrganizationServicesApi(String baseUrl, ApiClient client) {
this.client = client;
this.baseUrl = baseUrl;
}
/**
* Create organization service
* Create organization service
* @param organizationId Organization id (required)
* @param body Payload (required)
*/
public ApiResponse createOrganizationService(String organizationId, OrganizationService body) {
Map queryParams = new HashMap<>();
Map formParams = new HashMap<>();
String path = String.format("%s/organizations/{organizationId}/organizationServices"
.replaceAll("\\{" + "organizationId" + "\\}", String.valueOf(organizationId)), baseUrl);
ResultType resultType = new ResultType() {};
return client.doPOSTRequest(path, resultType, queryParams, formParams);
}
/**
* Finds a organization service by id
* Find an organization service
* @param organizationId Organization id (required)
* @param organizationServiceId Organization service id (required)
*/
public ApiResponse findOrganizationService(String organizationId, String organizationServiceId) {
Map queryParams = new HashMap<>();
Map formParams = new HashMap<>();
String path = String.format("%s/organizations/{organizationId}/organizationServices/{organizationServiceId}"
.replaceAll("\\{" + "organizationId" + "\\}", String.valueOf(organizationId))
.replaceAll("\\{" + "organizationServiceId" + "\\}", String.valueOf(organizationServiceId)), baseUrl);
ResultType resultType = new ResultType() {};
return client.doGETRequest(path, resultType, queryParams, formParams);
}
/**
* Organization organization service list
* Lists organization's organization services
* @param organizationId Organization id (required)
* @param firstResult First result (optional)
* @param maxResults Max results (optional)
*/
public ApiResponse> listOrganizationOrganizationServices(String organizationId, Long firstResult, Long maxResults) {
Map queryParams = new HashMap<>();
Map formParams = new HashMap<>();
if (firstResult != null)
queryParams.put("firstResult", firstResult);
if (maxResults != null)
queryParams.put("maxResults", maxResults);
String path = String.format("%s/organizations/{organizationId}/organizationServices"
.replaceAll("\\{" + "organizationId" + "\\}", String.valueOf(organizationId)), baseUrl);
ResultType> resultType = new ResultType>() {};
return client.doGETRequest(path, resultType, queryParams, formParams);
}
/**
* Updates an organization service
* Updates organization service
* @param organizationId Organization id (required)
* @param organizationServiceId Organization service id (required)
* @param body Payload (required)
*/
public ApiResponse updateOrganizationService(String organizationId, String organizationServiceId, OrganizationService body) {
Map queryParams = new HashMap<>();
Map formParams = new HashMap<>();
String path = String.format("%s/organizations/{organizationId}/organizationServices/{organizationServiceId}"
.replaceAll("\\{" + "organizationId" + "\\}", String.valueOf(organizationId))
.replaceAll("\\{" + "organizationServiceId" + "\\}", String.valueOf(organizationServiceId)), baseUrl);
ResultType resultType = new ResultType() {};
return client.doPUTRequest(path, resultType, queryParams, formParams);
}
}