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 2012-2019 Ping Identity Corporation
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License (GPLv2 only)
* or the terms of the GNU Lesser General Public License (LGPLv2.1 only)
* as published by the Free Software Foundation.
*
* 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 com.unboundid.scim.sdk;
import com.unboundid.scim.schema.ResourceDescriptor;
import javax.servlet.http.HttpServletRequest;
import java.net.URI;
/**
* This class represents a SCIM Patch Resource request to update a resource.
*/
public class PatchResourceRequest extends ResourceReturningRequest
{
/**
* The target resource ID.
*/
private final String resourceID;
/**
* The new contents of the resource.
*/
private final SCIMObject resourceObject;
/**
* Create a new SCIM request from the provided information.
*
* @param baseURL The base URL for the SCIM service.
* @param authenticatedUserID The authenticated user name or {@code null} if
* the request is not authenticated.
* @param resourceDescriptor The ResourceDescriptor associated with this
* request.
* @param resourceID The target resource ID.
* @param resourceObject The new contents of the resource.
* @param attributes The set of requested attributes.
*/
public PatchResourceRequest(final URI baseURL,
final String authenticatedUserID,
final ResourceDescriptor resourceDescriptor,
final String resourceID,
final SCIMObject resourceObject,
final SCIMQueryAttributes attributes)
{
super(baseURL, authenticatedUserID, resourceDescriptor, attributes);
this.resourceID = resourceID;
this.resourceObject = resourceObject;
}
/**
* Create a new SCIM request from the provided information.
*
* @param baseURL The base URL for the SCIM service.
* @param authenticatedUserID The authenticated user name or {@code null} if
* the request is not authenticated.
* @param resourceDescriptor The ResourceDescriptor associated with this
* request.
* @param resourceID The target resource ID.
* @param resourceObject The new contents of the resource.
* @param attributes The set of requested attributes.
* @param httpServletRequest The HTTP servlet request associated with this
* request or {@code null} if this request is not
* initiated by a servlet.
*/
public PatchResourceRequest(final URI baseURL,
final String authenticatedUserID,
final ResourceDescriptor resourceDescriptor,
final String resourceID,
final SCIMObject resourceObject,
final SCIMQueryAttributes attributes,
final HttpServletRequest httpServletRequest)
{
super(baseURL, authenticatedUserID, resourceDescriptor, attributes,
httpServletRequest);
this.resourceID = resourceID;
this.resourceObject = resourceObject;
}
/**
* Create a new SCIM request from the provided information.
*
* @param baseURL The base URL for the SCIM service.
* @param authenticatedUserID The authenticated user name or {@code null} if
* the request is not authenticated.
* @param resourceDescriptor The ResourceDescriptor associated with this
* request.
* @param resourceID The target resource ID.
* @param resourceObject The new contents of the resource.
* @param attributes The set of requested attributes.
* @param httpServletRequest The HTTP servlet request associated with this
* request or {@code null} if this request is not
* initiated by a servlet.
* @param ifMatchHeaderValue The If-Match header value.
* @param ifNoneMatchHeaderValue The If-None-Match header value.
*/
public PatchResourceRequest(final URI baseURL,
final String authenticatedUserID,
final ResourceDescriptor resourceDescriptor,
final String resourceID,
final SCIMObject resourceObject,
final SCIMQueryAttributes attributes,
final HttpServletRequest httpServletRequest,
final String ifMatchHeaderValue,
final String ifNoneMatchHeaderValue)
{
super(baseURL, authenticatedUserID, resourceDescriptor, attributes,
httpServletRequest, ifMatchHeaderValue, ifNoneMatchHeaderValue);
this.resourceID = resourceID;
this.resourceObject = resourceObject;
}
/**
* Get the target resource ID.
*
* @return The target resource ID.
*/
public String getResourceID()
{
return resourceID;
}
/**
* Get the contents of the resource to be created.
*
* @return The contents of the resource to be created.
*/
public SCIMObject getResourceObject()
{
return resourceObject;
}
}