![JAR search and dependency download from the Maven repository](/logo.png)
com.unbound.provider.kmip.request.RNGRetrieveRequest Maven / Gradle / Ivy
package com.unbound.provider.kmip.request;
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 23-Nov-15.
*/
public class RNGRetrieveRequest extends RequestItem
{
public int length = 0;
public RNGRetrieveRequest()
{
super(KMIP.Operation.RNGRetrieve);
}
public void convert(KMIPConverter converter) throws KMIPConvertException
{
length = converter.convert(KMIP.Tag.DataLength, length);
}
public void log()
{
Log.print("RNGRetrieveRequest").log("length", length).end();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy