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

no.digipost.signature.client.core.OnBehalfOf Maven / Gradle / Ivy

There is a newer version: 7.0.4
Show newest version
package no.digipost.signature.client.core;

import no.digipost.signature.api.xml.XMLSigningOnBehalfOf;
import no.digipost.signature.client.core.internal.MarshallableEnum;

/**
 * Specifies if the signer signs on behalf of itself or some other party
 */
public enum OnBehalfOf implements MarshallableEnum {

    SELF(XMLSigningOnBehalfOf.SELF),
    OTHER(XMLSigningOnBehalfOf.OTHER);

    private final XMLSigningOnBehalfOf xmlEnumValue;

    OnBehalfOf(XMLSigningOnBehalfOf xmlEnumValue) {
        this.xmlEnumValue = xmlEnumValue;
    }

    @Override
    public XMLSigningOnBehalfOf getXmlEnumValue() {
        return xmlEnumValue;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy