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

com.unbound.kmip.response.ResponseHeader Maven / Gradle / Ivy

Go to download

This is a collection of JAVA libraries that implement Unbound cryptographic classes for JAVA provider, PKCS11 wrapper, cryptoki, and advapi

There is a newer version: 42761
Show newest version
package com.unbound.kmip.response;

import com.unbound.kmip.attribute.Nonce;
import com.unbound.kmip.attribute.Version;
import com.unbound.kmip.KMIP;
import com.unbound.kmip.KMIPConvertException;
import com.unbound.kmip.KMIPConverter;

/**
 * Created by valery.osheter on 19-Nov-15.
 */
public class ResponseHeader
{
  public Version version = new Version(1, 0);
  public long timeStamp = -1;
  public Nonce nonce = null;
  public int batchCount = 0;
  public String serverCorrelationValue;

  public void convert(KMIPConverter converter) throws KMIPConvertException
  {
    int begin = converter.convertBegin(KMIP.Tag.ResponseHeader);
    version.convert(converter);
    timeStamp = converter.convert(KMIP.Tag.TimeStamp, timeStamp);

    if (converter.isRead() && converter.getNextTag() == KMIP.Tag.Nonce) nonce = new Nonce();
    if (nonce != null) nonce.convert(converter);

    if (converter.isRead())
    {
      converter.skip(KMIP.Tag.AttestationType);
    }

    if (version.major == 1 && version.minor == 4)
    {
      serverCorrelationValue = converter.convertOptional(KMIP.Tag.ServerCorrelationValue, serverCorrelationValue);
    }
    batchCount = converter.convert(KMIP.Tag.BatchCount, batchCount);
    converter.convertEnd(begin);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy