org.bouncycastle.asn1.x9.DomainParameters Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-cxf-bc-stub Show documentation
Show all versions of quarkus-cxf-bc-stub Show documentation
A bunch of dummy classes mimicking Bouncy Castle API to make the native compiler happy.
In case Bouncy Castle functionality is needed, this artifact should be excluded from
io.quarkiverse.cxf:quarkus-cxf-rt-ws-security and org.bouncycastle:bcprov-jdk18on should be added instead.
package org.bouncycastle.asn1.x9;
import java.math.BigInteger;
import org.bouncycastle.asn1.ASN1TaggedObject;
public class DomainParameters {
public static DomainParameters getInstance(ASN1TaggedObject obj, boolean explicit) {
throw new UnsupportedOperationException("Exclude io.quarkiverse.cxf:quarkus-cxf-bc-stub from"
+ " io.quarkiverse.cxf:quarkus-cxf-rt-ws-security dependencies and add Bouncy Castle instead");
}
public static DomainParameters getInstance(Object obj) {
throw new UnsupportedOperationException("Exclude io.quarkiverse.cxf:quarkus-cxf-bc-stub from"
+ " io.quarkiverse.cxf:quarkus-cxf-rt-ws-security dependencies and add Bouncy Castle instead");
}
public BigInteger getQ() {
throw new UnsupportedOperationException("Exclude io.quarkiverse.cxf:quarkus-cxf-bc-stub from"
+ " io.quarkiverse.cxf:quarkus-cxf-rt-ws-security dependencies and add Bouncy Castle instead");
}
}