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

org.yangcentral.yangkit.model.impl.codec.ComplexStringValueCodecImpl Maven / Gradle / Ivy

There is a newer version: 1.4.5
Show newest version
package org.yangcentral.yangkit.model.impl.codec;

import org.yangcentral.yangkit.model.api.codec.ComplexStringValueCodec;
import org.yangcentral.yangkit.model.api.stmt.TypedDataNode;

public abstract class ComplexStringValueCodecImpl extends StringValueCodecImpl implements ComplexStringValueCodec {
   private TypedDataNode schemaNode;

   public ComplexStringValueCodecImpl(TypedDataNode schemaNode) {
      this.schemaNode = schemaNode;
   }

   public TypedDataNode getSchemaNode() {
      return this.schemaNode;
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy