FileDocCategorySizeDatePackage
FakeSession.javaAPI DocAndroid 1.5 API2957Wed May 06 22:41:06 BST 2009org.apache.harmony.xnet.provider.jsse

FakeSession

public class FakeSession extends Object implements SSLSession

Fields Summary
final String
host
Constructors Summary
FakeSession(String host)

        this.host = host;
    
Methods Summary
public intgetApplicationBufferSize()

        throw new UnsupportedOperationException();
    
public java.lang.StringgetCipherSuite()

        throw new UnsupportedOperationException();
    
public longgetCreationTime()

        throw new UnsupportedOperationException();
    
public byte[]getId()

        return host.getBytes();
    
public longgetLastAccessedTime()

        throw new UnsupportedOperationException();
    
public java.security.cert.Certificate[]getLocalCertificates()

        throw new UnsupportedOperationException();
    
public java.security.PrincipalgetLocalPrincipal()

        throw new UnsupportedOperationException();
    
public intgetPacketBufferSize()

        throw new UnsupportedOperationException();
    
public javax.security.cert.X509Certificate[]getPeerCertificateChain()

        throw new UnsupportedOperationException();
    
public java.security.cert.Certificate[]getPeerCertificates()

        throw new UnsupportedOperationException();
    
public java.lang.StringgetPeerHost()

        return host;
    
public intgetPeerPort()

        return 443;
    
public java.security.PrincipalgetPeerPrincipal()

        throw new UnsupportedOperationException();
    
public java.lang.StringgetProtocol()

        throw new UnsupportedOperationException();
    
public javax.net.ssl.SSLSessionContextgetSessionContext()

        throw new UnsupportedOperationException();
    
public java.lang.ObjectgetValue(java.lang.String name)

        throw new UnsupportedOperationException();
    
public java.lang.String[]getValueNames()

        throw new UnsupportedOperationException();
    
public voidinvalidate()

        throw new UnsupportedOperationException();
    
public booleanisValid()

        throw new UnsupportedOperationException();
    
public voidputValue(java.lang.String name, java.lang.Object value)

        throw new UnsupportedOperationException();
    
public voidremoveValue(java.lang.String name)

        throw new UnsupportedOperationException();