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

OZG-4461 adjust properties javaDoc

parent bb91863b
No related branches found
No related tags found
No related merge requests found
......@@ -15,12 +15,12 @@ public class FeatureToggleProperties {
static final String PREFIX = "ozgcloud.feature";
/**
* Enable Vorgang Export(XDomea).
* Enable vorgang export(xDomea) feature.
*/
private boolean vorgangExport = false;
/**
* Enable/Disable Bescheid creation feature.
* Enable/Disable bescheid creation feature.
*/
private boolean createBescheid = false;
}
......@@ -9,9 +9,17 @@ import lombok.Setter;
@Getter
@Setter
@Configuration
@ConfigurationProperties(prefix = "grpc.client.user-manager")
@ConfigurationProperties(prefix = UserManagerClientProperties.PREFIX)
public class UserManagerClientProperties {
static final String PREFIX = "grpc.client.user-manager";
/*
* UserManager grpc adress.
*/
private String address;
/**
* UserManager grpc negotiationType.
*/
private String negotiationType;
}
......@@ -16,16 +16,15 @@ import lombok.Setter;
@ConfigurationProperties(prefix = VorgangProperties.PREFIX)
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
* id und form engine name bestimmt.
* Matching conditions of bescheid creation based on vorgang#formId and vorgang#formEngineName.
*/
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();
......
......@@ -38,5 +38,8 @@ public class LandesnetzInfoProperties {
static final String LNINFO_CONFIG_PREFIX = "kop.forwarding.lninfo";
/**
* Url of LandesnetzInfo html/file location.
*/
private Resource url;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment