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

de.captaingoldfish.scim.sdk.server.patch.PatchExtensionAttributePath Maven / Gradle / Ivy

There is a newer version: 1.26.0
Show newest version
package de.captaingoldfish.scim.sdk.server.patch;

import de.captaingoldfish.scim.sdk.common.schemas.Schema;
import de.captaingoldfish.scim.sdk.server.filter.AttributePathRoot;


/**
 * a workaround class that is used for path-attributes that will directly address an extension
 *
 * @author Pascal Knueppel
 * @since 05.09.2022
 */
public class PatchExtensionAttributePath extends AttributePathRoot
{

  /**
   * the extension to be removed
   */
  private final Schema extensionSchema;

  public PatchExtensionAttributePath(Schema extensionSchema)
  {
    super();
    this.extensionSchema = extensionSchema;
  }

  @Override
  public String getFullName()
  {
    return extensionSchema.getNonNullId();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy