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

com.safelayer.rap.impl.model.issuance.IssuancePutPopRequestValue 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 java.util.HashMap;
import java.util.Map;

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


public class IssuancePutPopRequestValue implements IssuancePutPopRequest{

	private byte[] state;	
	private Map certificateSigningRequests = new HashMap();

	public IssuancePutPopRequestValue(byte[] state) {
		this.state = state;
	}

	@Override
	public byte[] getState() {
		return state;
	}

	@Override
	public Map getProofOfPossessions() {
		return certificateSigningRequests;
	}

	public void putPop(String name, byte[] value) {
		certificateSigningRequests.put(name, value);
	}
		
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy