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

OZG-4391 OZG-4417 add javadoc

parent 098ef0f0
Branches
Tags
No related merge requests found
package de.ozgcloud.alfa.vorgang;
import java.util.Collections;
import java.util.List;
import org.springframework.boot.context.properties.ConfigurationProperties;
......@@ -12,9 +13,13 @@ import lombok.Setter;
@Setter
@Configuration
@ConfigurationProperties(prefix = VorgangProperties.PREFIX)
public class VorgangProperties {
class VorgangProperties {
public static final String PREFIX = "ozgcloud.vorgang";
private List<VorgangProperty> bescheid = List.of();
/**
* Konfiguriert für welche Art von Anträgen der Button zur Erstellung von Bescheiden angezeigt wird. Der Art eines Antrags wird basierend auf form
* id und form engine name bestimmt.
*/
private List<VorgangProperty> bescheid = Collections.emptyList();
}
\ 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