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

no.difi.oxalis.test.asd.AsdConstants Maven / Gradle / Ivy

There is a newer version: 4.1.2
Show newest version
package no.difi.oxalis.test.asd;

import no.difi.vefa.peppol.common.lang.PeppolException;
import no.difi.vefa.peppol.common.model.TransportProfile;
import no.difi.vefa.peppol.common.model.TransportProtocol;

/**
 * @author erlend
 */
public class AsdConstants {

    public static final TransportProtocol TRANSPORT_PROTOCOL;

    public static final TransportProfile TRANSPORT_PROFILE = TransportProfile.of("bdx-transport-asd");

    static {
        try {
            TRANSPORT_PROTOCOL = TransportProtocol.of("ASD");
        } catch (PeppolException e) {
            throw new IllegalStateException(e.getMessage(), e);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy