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

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

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

import java.net.URI;
import java.net.URL;

public class AcmeInfo {

	private URI termsOfServiceUri;
	private URL website;
	
	public AcmeInfo(URI termsOfServiceUri, URL website) {
		super();
		this.termsOfServiceUri = termsOfServiceUri;
		this.website = website;
	}
	public URI getTermsOfServiceUri() {
		return termsOfServiceUri;
	}
	public URL getWebsite() {
		return website;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy