0N/A/*
2362N/A * Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
2362N/A * published by the Free Software Foundation. Oracle designates this
0N/A * particular file as subject to the "Classpath" exception as provided
2362N/A * by Oracle in the LICENSE file that accompanied this code.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
0N/A */
0N/A/*
0N/A * $Id: X509IssuerSerial.java,v 1.4 2005/05/10 16:35:35 mullan Exp $
0N/A */
0N/Apackage javax.xml.crypto.dsig.keyinfo;
0N/A
0N/Aimport java.math.BigInteger;
0N/Aimport java.security.cert.X509Certificate;
0N/Aimport javax.xml.crypto.XMLStructure;
0N/A
0N/A/**
0N/A * A representation of the XML <code>X509IssuerSerial</code> element as
0N/A * defined in the <a href="http://www.w3.org/TR/xmldsig-core/">
0N/A * W3C Recommendation for XML-Signature Syntax and Processing</a>.
0N/A * An <code>X509IssuerSerial</code> object contains an X.509 issuer
0N/A * distinguished name (DN) and serial number pair. The XML schema definition is
0N/A * defined as:
0N/A *
0N/A * <pre>
0N/A * &lt;element name="X509IssuerSerial" type="ds:X509IssuerSerialType"/&gt;
0N/A * &lt;complexType name="X509IssuerSerialType"&gt;
0N/A * &lt;sequence&gt;
0N/A * &lt;element name="X509IssuerName" type="string"/&gt;
0N/A * &lt;element name="X509SerialNumber" type="integer"/&gt;
0N/A * &lt;/sequence&gt;
0N/A * &lt;/complexType&gt;
0N/A * </pre>
0N/A *
0N/A * An <code>X509IssuerSerial</code> instance may be created by invoking the
0N/A * {@link KeyInfoFactory#newX509IssuerSerial newX509IssuerSerial} method
0N/A * of the {@link KeyInfoFactory} class, and passing it a
0N/A * <code>String</code> and <code>BigInteger</code> representing the X.500
0N/A * DN and serial number. Here is an example of creating an
0N/A * <code>X509IssuerSerial</code> from the issuer DN and serial number of an
0N/A * existing {@link X509Certificate}:
0N/A * <pre>
0N/A * KeyInfoFactory factory = KeyInfoFactory.getInstance("DOM");
0N/A * X509IssuerSerial issuer = factory.newX509IssuerSerial
0N/A * (cert.getIssuerX500Principal().getName(), cert.getSerialNumber());
0N/A * </pre>
0N/A *
0N/A * @author Sean Mullan
0N/A * @author JSR 105 Expert Group
0N/A * @since 1.6
0N/A * @see X509Data#getContent
0N/A * @see KeyInfoFactory#newX509IssuerSerial(String, BigInteger)
0N/A */
0N/Apublic interface X509IssuerSerial extends XMLStructure {
0N/A
0N/A /**
0N/A * Returns the X.500 distinguished name of this
0N/A * <code>X509IssuerSerial</code> in
0N/A * <a href="http://www.ietf.org/rfc/rfc2253.txt">RFC 2253</a> String format.
0N/A *
0N/A * @return the X.500 distinguished name in RFC 2253 String format (never
0N/A * <code>null</code>)
0N/A */
0N/A String getIssuerName();
0N/A
0N/A /**
0N/A * Returns the serial number of this <code>X509IssuerSerial</code>.
0N/A *
0N/A * @return the serial number (never <code>null</code>)
0N/A */
0N/A BigInteger getSerialNumber();
0N/A}