com.unboundid.scim2.client.requests.ReplaceRequestBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scim2-sdk-client Show documentation
Show all versions of scim2-sdk-client Show documentation
The UnboundID SCIM2 SDK is a library that may be used to interact with various
types of SCIM-enabled endpoints (such as the Ping Identity server products) to
perform lightweight, cloud-based identity management via the SCIM Protocol.
See https://simplecloud.info for more information.
The newest version!
/*
* Copyright 2015-2024 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.scim2.client.requests;
import com.unboundid.scim2.common.ScimResource;
import com.unboundid.scim2.common.annotations.NotNull;
import com.unboundid.scim2.common.annotations.Nullable;
import com.unboundid.scim2.common.exceptions.ScimException;
import jakarta.ws.rs.ProcessingException;
import jakarta.ws.rs.client.Entity;
import jakarta.ws.rs.client.Invocation;
import jakarta.ws.rs.client.WebTarget;
import jakarta.ws.rs.core.HttpHeaders;
import jakarta.ws.rs.core.Response;
/**
* A builder for SCIM replace requests.
*/
public final class ReplaceRequestBuilder
extends ResourceReturningRequestBuilder>
{
@NotNull
private final T resource;
@Nullable
private String version;
/**
* Create a new replace request builder.
*
* @param target The WebTarget to PUT.
* @param resource The SCIM resource to replace.
*/
public ReplaceRequestBuilder(@NotNull final WebTarget target,
@NotNull final T resource)
{
super(target);
this.resource = resource;
}
/**
* Replace the resource only if the resource has not been modified from the
* resource provided.
*
* @return This builder.
*/
@NotNull
public ReplaceRequestBuilder ifMatch()
{
version = getResourceVersion(resource);
return this;
}
/**
* {@inheritDoc}
*/
@Override
@NotNull
Invocation.Builder buildRequest()
{
Invocation.Builder request = super.buildRequest();
if(version != null)
{
request.header(HttpHeaders.IF_MATCH, version);
}
return request;
}
/**
* Invoke the SCIM replace request.
*
* @return The successfully replaced SCIM resource.
* @throws ScimException If an error occurred.
*/
@NotNull
@SuppressWarnings("unchecked")
public T invoke() throws ScimException
{
return (T) invoke(resource.getClass());
}
/**
* Invoke the SCIM modify request.
*
* @param The type of object to return.
* @param cls The Java class object used to determine the type to return.
* @return The successfully modified SCIM resource.
* @throws ProcessingException If a JAX-RS runtime exception occurred.
* @throws ScimException If the SCIM service provider responded with an error.
*/
@NotNull
public C invoke(@NotNull final Class cls) throws ScimException
{
Response response = buildRequest().put(
Entity.entity(resource, getContentType()));
try
{
if(response.getStatusInfo().getFamily() ==
Response.Status.Family.SUCCESSFUL)
{
return response.readEntity(cls);
}
else
{
throw toScimException(response);
}
}
finally
{
response.close();
}
}
}