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

org.webpieces.plugin.secure.sslcert.acme.ProxyOrder Maven / Gradle / Ivy

The newest version!
package org.webpieces.plugin.secure.sslcert.acme;

import java.util.List;

import org.shredzone.acme4j.Order;

public class ProxyOrder {

	private Order order;
	private List auths;

	public ProxyOrder(Order order, List auths) {
		this.order = order;
		this.auths = auths;
	}

	public List getAuthorizations() {
		return auths;
	}

	public Order getOrder() {
		return order;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy