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

dev.fitko.fitconnect.api.config.defaults.ZBPEnvironment Maven / Gradle / Ivy

Go to download

Library that provides client access to the FIT-Connect api-endpoints for sending, subscribing and routing

There is a newer version: 2.3.5
Show newest version
package dev.fitko.fitconnect.api.config.defaults;

import lombok.AllArgsConstructor;
import lombok.Getter;

@Getter
@AllArgsConstructor
public class ZBPEnvironment {

    public static final ZBPEnvironment INT_INTERNET = new ZBPEnvironment("INT_INTERNET", "https://int.zbp.bund.de");

    public static final ZBPEnvironment INT_NDB = new ZBPEnvironment("INT_NDB", "https://int.zbp.bmi.in.bund.de");

    public static final ZBPEnvironment INT_NDB_VN = new ZBPEnvironment("INT_NDB_VN", "https://int.zbp.bundid.doi-de.net");

    public static final ZBPEnvironment PROD_NDB = new ZBPEnvironment("PROD_NDB", "https://prod.zbp.bmi.in.bund.de");

    public static final ZBPEnvironment PROD_NDB_VN = new ZBPEnvironment("PROD_NDB_VN", "https://prod.zbp.bundid.doi-de.ne");

    private String name;
    private String baseUrl;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy