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

com.safelayer.rap.impl.model.issuance.IssuanceResponseValue Maven / Gradle / Ivy

Go to download

The PKI Connector RESTAPI is a library that helps developing new PKI Connectors for TrustedX

The newest version!
package com.safelayer.rap.impl.model.issuance;

import com.safelayer.rap.api.model.issuance.IssuanceResponse;

public abstract class IssuanceResponseValue implements IssuanceResponse {

	private byte[] state;

	public IssuanceResponseValue() {
	}

	@Override
	public byte[] getState() {
		return state;
	}
	
	public void setState( byte[] state) {
		this.state = state;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy