com.unbound.provider.kmip.attribute.KeyValueLocation 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;
public class KeyValueLocation extends Attribute
{
public String value = null;
public int type = 0;
public KeyValueLocation()
{
super(KMIP.Tag.KeyValueLocation);
}
public void convert(KMIPConverter converter) throws KMIPConvertException
{
int begin = converter.convertBegin(KMIP.tagAttributeValue(KMIP.TagType.Structure));
value = converter.convert(KMIP.Tag.KeyValueLocationValue, value);
type = converter.convertOptional(KMIP.Tag.KeyValueLocationType, type);
converter.convertEnd(begin);
}
public void log()
{
Log.print("KeyValueLocation").log("value", value).log("type", type).end();
}
}