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

no.digipost.signature.client.direct.StatusRetrievalMethod Maven / Gradle / Ivy

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

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

public enum StatusRetrievalMethod implements MarshallableEnum {

    WAIT_FOR_CALLBACK(XMLStatusRetrievalMethod.WAIT_FOR_CALLBACK),
    POLLING(XMLStatusRetrievalMethod.POLLING);

    private final XMLStatusRetrievalMethod xmlValue;

    StatusRetrievalMethod(XMLStatusRetrievalMethod xmlValue) {
        this.xmlValue = xmlValue;
    }

    @Override
    public XMLStatusRetrievalMethod getXmlEnumValue() {
        return xmlValue;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy