![JAR search and dependency download from the Maven repository](/logo.png)
de.captaingoldfish.scim.sdk.server.patch.PatchExtensionAttributePath Maven / Gradle / Ivy
// Generated by delombok at Thu Nov 02 20:38:53 CET 2023
package de.captaingoldfish.scim.sdk.server.patch;
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
*/
class PatchExtensionAttributePath extends AttributePathRoot
{
/**
* the path that addresses an extension directly with its id value
*/
private final String path;
public PatchExtensionAttributePath(String path)
{
super();
this.path = path;
}
@Override
public String getFullName()
{
return path;
}
/**
* the path that addresses an extension directly with its id value
*/
@java.lang.SuppressWarnings("all")
public String getPath()
{
return this.path;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy