com.unbound.provider.kmip.attribute.Name Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of unbound-java-provider Show documentation
Show all versions of unbound-java-provider Show documentation
This is a collection of JAVA libraries that implement Unbound cryptographic classes for JAVA provider, PKCS11 wrapper, cryptoki, and advapi
package com.unbound.provider.kmip.attribute;
import com.unbound.common.Log;
import com.unbound.provider.kmip.KMIP;
import com.unbound.provider.kmip.KMIPConvertException;
import com.unbound.provider.kmip.KMIPConverter;
/**
* Created by valery.osheter on 18-Nov-15.
*/
public class Name extends Attribute
{
public String value = null;
public int type = KMIP.NameType.UninterpretedTextString;
public Name()
{
super(KMIP.Tag.Name);
}
public Name(String value)
{
this();
this.value = value;
}
public Name(String value, int type)
{
this(value);
this.type = type;
}
public void convert(KMIPConverter converter) throws KMIPConvertException
{
int begin = converter.convertBegin(KMIP.tagAttributeValue(KMIP.TagType.Structure));
value = converter.convert(KMIP.Tag.NameValue, value);
type = converter.convert(KMIP.Tag.NameType, type);
converter.convertEnd(begin);
}
public void convertValue(KMIPConverter converter) throws KMIPConvertException
{
int begin = converter.convertBegin(KMIP.Tag.Name);
value = converter.convert(KMIP.Tag.NameValue, value);
type = converter.convert(KMIP.Tag.NameType, type);
converter.convertEnd(begin);
}
public void log()
{
Log.print("Name").log("type", type).log("value", value).end();
}
}