blob: 21096a2bc8372d8afce8224a42fd6cf6c060a36c [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.guacamole.rest.jsonpatch;
import java.util.List;
/**
* A REST response describing the successful application of a JSON PATCH
* request to a directory. This consists of a list of outcomes, one for each
* patch within the request, in the same order.
*/
public class APIPatchResponse {
/**
* A list of outcomes, each one corresponding to a patch in the request
* corresponding to this response.
*/
public final List<APIPatchOutcome> patches;
/**
* Create a new patch response with the provided list of outcomes for
* individual patches.
*
* @param patches
* A list of patch outcomes, one for each patch in the request
* associated with this response.
*/
public APIPatchResponse(List<APIPatchOutcome> patches) {
this.patches = patches;
}
/**
* Return the outcome for each patch in the request corresponding to this
* response.
*/
public List<APIPatchOutcome> getPatches() {
return patches;
}
}