de.gold.scim.common.resources.base.ScimLongNode Maven / Gradle / Ivy
The newest version!
package de.gold.scim.common.resources.base;
import com.fasterxml.jackson.databind.node.LongNode;
import de.gold.scim.common.schemas.SchemaAttribute;
import lombok.Getter;
/**
* author Pascal Knueppel
* created at: 05.10.2019 - 20:19
*
*/
public class ScimLongNode extends LongNode implements ScimNode
{
@Getter
private SchemaAttribute schemaAttribute;
public ScimLongNode(SchemaAttribute schemaAttribute, long value)
{
super(value);
this.schemaAttribute = schemaAttribute;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy