org.bouncycastle.jsse.BCExtendedSSLSession Maven / Gradle / Ivy
package org.bouncycastle.jsse;
import java.util.List;
import javax.net.ssl.SSLSession;
public abstract class BCExtendedSSLSession implements SSLSession
{
public abstract String[] getLocalSupportedSignatureAlgorithms();
public abstract String[] getPeerSupportedSignatureAlgorithms();
public List getRequestedServerNames()
{
throw new UnsupportedOperationException();
}
public List getStatusResponses()
{
throw new UnsupportedOperationException();
}
}