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

java.security.cert.CertPath Maven / Gradle / Ivy

Go to download

JVM AOT compiler currently generating JavaScript, C++, Haxe, with initial focus on Kotlin and games.

There is a newer version: 0.6.8
Show newest version
package java.security.cert;

import java.io.ObjectStreamException;
import java.io.Serializable;
import java.util.Iterator;
import java.util.List;

public abstract class CertPath implements Serializable {
	private String type;

	protected CertPath(String type) {
		this.type = type;
	}

	public String getType() {
		return type;
	}

	public abstract Iterator getEncodings();

	public abstract byte[] getEncoded() throws CertificateEncodingException;

	public abstract byte[] getEncoded(String encoding) throws CertificateEncodingException;

	public abstract List getCertificates();

	native protected Object writeReplace() throws ObjectStreamException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy