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

OZG-4461 adjust properties javaDoc

parent bb91863b
Branches
Tags
No related merge requests found
...@@ -15,12 +15,12 @@ public class FeatureToggleProperties { ...@@ -15,12 +15,12 @@ public class FeatureToggleProperties {
static final String PREFIX = "ozgcloud.feature"; static final String PREFIX = "ozgcloud.feature";
/** /**
* Enable Vorgang Export(XDomea). * Enable vorgang export(xDomea) feature.
*/ */
private boolean vorgangExport = false; private boolean vorgangExport = false;
/** /**
* Enable/Disable Bescheid creation feature. * Enable/Disable bescheid creation feature.
*/ */
private boolean createBescheid = false; private boolean createBescheid = false;
} }
...@@ -9,9 +9,17 @@ import lombok.Setter; ...@@ -9,9 +9,17 @@ import lombok.Setter;
@Getter @Getter
@Setter @Setter
@Configuration @Configuration
@ConfigurationProperties(prefix = "grpc.client.user-manager") @ConfigurationProperties(prefix = UserManagerClientProperties.PREFIX)
public class UserManagerClientProperties { public class UserManagerClientProperties {
static final String PREFIX = "grpc.client.user-manager";
/*
* UserManager grpc adress.
*/
private String address; private String address;
/**
* UserManager grpc negotiationType.
*/
private String negotiationType; private String negotiationType;
} }
...@@ -16,16 +16,15 @@ import lombok.Setter; ...@@ -16,16 +16,15 @@ import lombok.Setter;
@ConfigurationProperties(prefix = VorgangProperties.PREFIX) @ConfigurationProperties(prefix = VorgangProperties.PREFIX)
class VorgangProperties { class VorgangProperties {
public static final String PREFIX = "ozgcloud.vorgang"; static final String PREFIX = "ozgcloud.vorgang";
/** /**
* Konfiguriert für welche Art von Anträgen der Button zur Erstellung von Bescheiden angezeigt wird. Der Art eines Antrags wird basierend auf form * Matching conditions of bescheid creation based on vorgang#formId and vorgang#formEngineName.
* id und form engine name bestimmt.
*/ */
private List<VorgangProperty> bescheid = Collections.emptyList(); private List<VorgangProperty> bescheid = Collections.emptyList();
/** /**
* Konfiguriert die Namen der Vorgangs Prozessoren die über den Button im UI angesprochen werden * Matching conditions of manual triggerable vorgang processing based on vorgang#formId and vorgang#formEngineName.
*/ */
private List<VorgangProperty> analogButtonProcessor = Collections.emptyList(); private List<VorgangProperty> analogButtonProcessor = Collections.emptyList();
......
...@@ -38,5 +38,8 @@ public class LandesnetzInfoProperties { ...@@ -38,5 +38,8 @@ public class LandesnetzInfoProperties {
static final String LNINFO_CONFIG_PREFIX = "kop.forwarding.lninfo"; static final String LNINFO_CONFIG_PREFIX = "kop.forwarding.lninfo";
/**
* Url of LandesnetzInfo html/file location.
*/
private Resource url; private Resource url;
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment