org.bouncycastle.oer.its.Hostname Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcutil-jdk15on Show documentation
Show all versions of bcutil-jdk15on Show documentation
The Bouncy Castle Java APIs for ASN.1 extension and utility APIs used to support bcpkix and bctls. This jar contains APIs for JDK 1.5 and up.
The newest version!
package org.bouncycastle.oer.its;
import org.bouncycastle.asn1.ASN1Object;
import org.bouncycastle.asn1.ASN1Primitive;
import org.bouncycastle.asn1.ASN1String;
import org.bouncycastle.asn1.DERUTF8String;
public class Hostname
extends ASN1Object
{
private final String hostName;
public Hostname(String hostName)
{
this.hostName = hostName;
}
public static Hostname getInstance(Object src)
{
if (src instanceof Hostname)
{
return (Hostname)src;
}
if (src instanceof String)
{
return new Hostname((String)src);
}
if (src instanceof ASN1String)
{
return new Hostname(((ASN1String)src).getString());
}
throw new IllegalArgumentException("hostname accepts Hostname, String and ASN1String");
}
public ASN1Primitive toASN1Primitive()
{
return new DERUTF8String(hostName);
}
}