All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.captaingoldfish.scim.sdk.server.endpoints.handler.ServiceProviderHandler Maven / Gradle / Ivy

There is a newer version: 1.26.0
Show newest version
// Generated by delombok at Thu Nov 02 20:38:53 CET 2023
package de.captaingoldfish.scim.sdk.server.endpoints.handler;

import java.util.List;
import java.util.function.Function;
import de.captaingoldfish.scim.sdk.common.constants.enums.SortOrder;
import de.captaingoldfish.scim.sdk.common.exceptions.NotImplementedException;
import de.captaingoldfish.scim.sdk.common.resources.ServiceProvider;
import de.captaingoldfish.scim.sdk.common.schemas.SchemaAttribute;
import de.captaingoldfish.scim.sdk.server.endpoints.Context;
import de.captaingoldfish.scim.sdk.server.endpoints.ResourceHandler;
import de.captaingoldfish.scim.sdk.server.filter.FilterNode;
import de.captaingoldfish.scim.sdk.server.response.PartialListResponse;


/**
 * author Pascal Knueppel 
* created at: 18.10.2019 - 09:38
*
* the service provider configuration endpoint implementation */ public class ServiceProviderHandler extends ResourceHandler { /** * creates the error message for the not supported operations */ private static final Function ERROR_MESSAGE_SUPPLIER = operation -> { return "the \'" + operation + "\'-operation is not supported for ServiceProvider configuration endpoint"; }; /** * each created {@link de.captaingoldfish.scim.sdk.server.endpoints.ResourceEndpointHandler} must get hold of * a single {@link ServiceProvider} instance which is shared with this object. so both instances need to hold * the same object reference in order for the application to work correctly */ private final ServiceProvider serviceProvider; /** * creating of service provider configurations not supported */ @Override public ServiceProvider createResource(ServiceProvider resource, Context context) { throw new NotImplementedException(ERROR_MESSAGE_SUPPLIER.apply("create")); } /** * gets the one and only service provider configuration for this endpoint definition * * @param id the id is obsolete here should be null * @return the one and only service provider configuration */ @Override public ServiceProvider getResource(String id, List attributes, List excludedAttributes, Context context) { return serviceProvider; } /** * listing of service provider configurations not supported */ @Override public PartialListResponse listResources(long startIndex, int count, FilterNode filter, SchemaAttribute sortBy, SortOrder sortOrder, List attributes, List excludedAttributes, Context context) { throw new NotImplementedException(ERROR_MESSAGE_SUPPLIER.apply("list")); } /** * updating of service provider configurations not supported */ @Override public ServiceProvider updateResource(ServiceProvider resourceToUpdate, Context context) { throw new NotImplementedException(ERROR_MESSAGE_SUPPLIER.apply("update")); } /** * deleting of service provider configurations not supported */ @Override public void deleteResource(String id, Context context) { throw new NotImplementedException(ERROR_MESSAGE_SUPPLIER.apply("delete")); } @java.lang.SuppressWarnings("all") public ServiceProviderHandler(final ServiceProvider serviceProvider) { this.serviceProvider = serviceProvider; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy