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

de.gold.scim.common.resources.base.ScimDoubleNode Maven / Gradle / Ivy

The newest version!
package de.gold.scim.common.resources.base;

import com.fasterxml.jackson.databind.node.DoubleNode;

import de.gold.scim.common.schemas.SchemaAttribute;
import lombok.Getter;


/**
 * author Pascal Knueppel 
* created at: 05.10.2019 - 20:19
*
*/ public class ScimDoubleNode extends DoubleNode implements ScimNode { @Getter private SchemaAttribute schemaAttribute; public ScimDoubleNode(SchemaAttribute schemaAttribute, double value) { super(value); this.schemaAttribute = schemaAttribute; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy