org.bouncycastle.oer.its.etsi103097.EtsiTs103097DataUnsecured Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.saml.opensaml.integration Show documentation
Show all versions of com.liferay.saml.opensaml.integration Show documentation
Liferay SAML OpenSAML Integration
package org.bouncycastle.oer.its.etsi103097;
import org.bouncycastle.asn1.ASN1Sequence;
import org.bouncycastle.oer.its.ieee1609dot2.Ieee1609Dot2Content;
public class EtsiTs103097DataUnsecured
extends EtsiTs103097Data
{
public EtsiTs103097DataUnsecured(Ieee1609Dot2Content content)
{
super(content);
}
protected EtsiTs103097DataUnsecured(ASN1Sequence src)
{
super(src);
}
public static EtsiTs103097DataUnsecured getInstance(Object o)
{
if (o instanceof EtsiTs103097DataUnsecured)
{
return (EtsiTs103097DataUnsecured)o;
}
if (o != null)
{
return new EtsiTs103097DataUnsecured(ASN1Sequence.getInstance(o));
}
return null;
}
}