jdk/src/share/classes/sun/security/x509/CRLNumberExtension.java
changeset 10336 0bb1999251f8
parent 5506 202f599c92aa
equal deleted inserted replaced
10335:3c7eda3ab2f5 10336:0bb1999251f8
     1 /*
     1 /*
     2  * Copyright (c) 1997, 2006, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
   153     }
   153     }
   154 
   154 
   155     /**
   155     /**
   156      * Get the attribute value.
   156      * Get the attribute value.
   157      */
   157      */
   158     public Object get(String name) throws IOException {
   158     public BigInteger get(String name) throws IOException {
   159         if (name.equalsIgnoreCase(NUMBER)) {
   159         if (name.equalsIgnoreCase(NUMBER)) {
   160             if (crlNumber == null) return null;
   160             if (crlNumber == null) return null;
   161             else return crlNumber;
   161             else return crlNumber;
   162         } else {
   162         } else {
   163           throw new IOException("Attribute name not recognized by"
   163           throw new IOException("Attribute name not recognized by"