All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bouncycastle.asn1.x509.GeneralNamesBuilder Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 3.17.3
Show newest version
package org.bouncycastle.asn1.x509;

public class GeneralNamesBuilder {
    public GeneralNamesBuilder addNames(GeneralNames names) {
        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 GeneralNamesBuilder addName(GeneralName name) {
        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 GeneralNames build() {
        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");
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy