FileDocCategorySizeDatePackage
MyCRL.javaAPI DocAndroid 1.5 API1692Wed May 06 22:41:06 BST 2009org.apache.harmony.security.tests.support.cert

MyCRL

public class MyCRL extends CRL
Stub class for java.security.cert.CRL tests

Fields Summary
Constructors Summary
public MyCRL(String type)
Constructor

param
type

        super(type);
    
Methods Summary
public booleanisRevoked(java.security.cert.Certificate cert)

param
cert Certificate to be checked
return
always false
see
java.security.cert.CRL#isRevoked(java.security.cert.Certificate)

        return false;
    
public java.lang.StringtoString()

return
String representation
see
java.lang.Object#toString()

        return "MyCRL: [" + getType() + "]";