Skip to content
Snippets Groups Projects
Commit 97483f51 authored by OZGCloud's avatar OZGCloud
Browse files

start core implementation with base datastructore for vorgang

parent 788c5a30
No related branches found
No related tags found
No related merge requests found
package de.ozgcloud.apilib.vorgang;
public class OzgCloudZustaendigeStelle {
}
package de.ozgcloud.apilib.vorgang;
import de.itvsh.kop.common.datatype.StringBasedValue;
public class VorgangId extends StringBasedValue {
VorgangId(String vorgangId) {
super(vorgangId);
}
public static VorgangId from(String id) {
return new VorgangId(id);
}
}
package de.ozgcloud.apilib.vorgang;
import de.itvsh.kop.common.datatype.StringBasedValue;
public class VorgangStatus extends StringBasedValue {
VorgangStatus(String status) {
super(status);
}
}
#
# Copyright (C) 2022 Das Land Schleswig-Holstein vertreten durch den
# Ministerpräsidenten des Landes Schleswig-Holstein
# Staatskanzlei
# Abteilung Digitalisierung und zentrales IT-Management der Landesregierung
#
# Lizenziert unter der EUPL, Version 1.2 oder - sobald
# diese von der Europäischen Kommission genehmigt wurden -
# Folgeversionen der EUPL ("Lizenz");
# Sie dürfen dieses Werk ausschließlich gemäß
# dieser Lizenz nutzen.
# Eine Kopie der Lizenz finden Sie hier:
#
# https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
#
# Sofern nicht durch anwendbare Rechtsvorschriften
# gefordert oder in schriftlicher Form vereinbart, wird
# die unter der Lizenz verbreitete Software "so wie sie
# ist", OHNE JEGLICHE GEWÄHRLEISTUNG ODER BEDINGUNGEN -
# ausdrücklich oder stillschweigend - verbreitet.
# Die sprachspezifischen Genehmigungen und Beschränkungen
# unter der Lizenz sind dem Lizenztext zu entnehmen.
#
lombok.log.fieldName=LOG
lombok.log.slf4j.flagUsage = ERROR
lombok.log.log4j.flagUsage = ERROR
lombok.data.flagUsage = ERROR
lombok.nonNull.exceptionType = IllegalArgumentException
lombok.addLombokGeneratedAnnotation = true
\ No newline at end of file
pom.xml 0 → 100644
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>de.itvsh.kop.common</groupId>
<artifactId>kop-common-dependencies</artifactId>
<version>2.3.0-SNAPSHOT</version>
<relativePath /> <!-- lookup parent from repository -->
</parent>
<groupId>de.ozgcloud.api-lib</groupId>
<artifactId>api-lib-parent</artifactId>
<version>0.1.0-SNAPSHOT</version>
<description>Library project to use the OZG-Cloud API</description>
<packaging>pom</packaging>
<modules>
<module>api-lib-core</module>
</modules>
</project>
\ 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