Skip to content
Snippets Groups Projects
Commit 403fe011 authored by Jan Zickermann's avatar Jan Zickermann
Browse files

OZG-6891 Cleanup

parent 064bbf0b
Branches
Tags
No related merge requests found
/**
* XTA-Client Java Library
* Copyright (C) 2021 Koordinierungsstelle für IT-Standards (KoSIT)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package de.ozgcloud.xta.client.codes;
import lombok.Getter;
/**
* Einige vordefinierte Werte für "business.scenario" (Fachkontext/Verfahren). Werte die nicht auftauchen können über den
* Stringsetter gesetzt werden.
*
* @see <a href="https://www.xrepository.de/details/urn:de:xta:codeliste:business.scenario">business.scenario</a>
*/
@Getter
public enum BusinessScenario {
/**
* Fachkontext XBAULEITPLANUNG.
*/
XBAULEITPLANUNG_DATA("XBAULEITPLANUNG_DATA"),
/**
* Fachkontext XDOMEAREG.
*/
XDOMEAREG_DATA("XDOMEAREG_DATA"),
/**
* Fachkontext XInneres.
*/
XINNERES_DATA("XINNERES_DATA"),
/**
* Fachkontext XAusländer.
*/
XAUSLAENDER_DATA("XAUSLAENDER_DATA"),
/**
* Fachkontext OSCI-XMeld.
*/
XMELD_DATA("XMELD_DATA"),
/**
* Fachkontext XPersonenstand.
*/
XPERSONENSTAND_DATA("XPERSONENSTAND_DATA"),
/**
* Fachkontext XhD.
*/
XHD_DATA("XHD_DATA"),
/**
* Fachkontext XGewerbeanzeige.
*/
GEWERBE_DATA("GEWERBE_DATA");
private String code;
BusinessScenario(String code) {
this.code = code;
}
}
/**
* XTA-Client Java Library
* Copyright (C) 2021 Koordinierungsstelle für IT-Standards (KoSIT)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package de.ozgcloud.xta.client.codes;
import lombok.Getter;
/**
* Einige vordefinierte Werte für "type.of.party.identifier". Werte die nicht auftauchen können über den Stringsetter gestzt werden * {@link
* Identifier (final String, String)}
*
* @see <a href"https://www.xrepository.de/details/urn:de:xta:codeliste:type.of.party.identifier">type.of.party.identifier</a>
*/
@Getter
public enum IdentifierType {
/**
* XÖV-DVDV-Infrastruktur: Identifizierungsschema gemäß DVDV-Behördenschlüssel Nach den Regeln dieses Identifizierungsschemas
* ist z.B. die Kennung "psw:01002110" aufgebaut.
*/
XOEV("xoev"),
/**
* SAFE-Infrastruktur des Justizressorts: Identifizierungsschema gemäß SAFE Nach den Regeln dieses Identifizierungsschemas ist
* z.B. die Kennung "safe-1363359638330-001060793" aufgebaut.
*/
JUSTIZ("justiz");
private String code;
IdentifierType(String code) {
this.code = code;
}
}
/**
* XTA-Client Java Library Copyright (C) 2021 Koordinierungsstelle für IT-Standards (KoSIT)
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package de.ozgcloud.xta.client.config;
import static java.util.Collections.*;
......
/**
* XTA-Client Java Library
* Copyright (C) 2021 Koordinierungsstelle für IT-Standards (KoSIT)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package de.ozgcloud.xta.client.exception;
......
/**
* XTA-Client Java Library
* Copyright (C) 2021 Koordinierungsstelle für IT-Standards (KoSIT)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package de.ozgcloud.xta.client.exception;
/**
......
package de.ozgcloud.xta.client;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Nested;
class FetchMessageParameterFactoryTest {
@DisplayName("create")
@Nested
class TestCreate {
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment