aboutsummaryrefslogtreecommitdiff
path: root/id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/db
diff options
context:
space:
mode:
Diffstat (limited to 'id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/db')
-rw-r--r--id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/db/dao/config/deprecated/MOAIDConfiguration.java18
-rw-r--r--id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/db/dao/config/deprecated/Mandates.java39
-rw-r--r--id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/db/dao/config/deprecated/OnlineApplication.java28
3 files changed, 80 insertions, 5 deletions
diff --git a/id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/db/dao/config/deprecated/MOAIDConfiguration.java b/id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/db/dao/config/deprecated/MOAIDConfiguration.java
index 810139c84..c251c7abb 100644
--- a/id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/db/dao/config/deprecated/MOAIDConfiguration.java
+++ b/id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/db/dao/config/deprecated/MOAIDConfiguration.java
@@ -184,6 +184,8 @@ public class MOAIDConfiguration
@XmlTransient
protected String eventCodes = null;
+ @XmlTransient
+ protected String elgaMandateServiceURLs = null;
/**
@@ -481,11 +483,27 @@ public class MOAIDConfiguration
+
+
public Long getHjid() {
return hjid;
}
/**
+ * @return the elgaMandateServiceURLs
+ */
+ public String getElgaMandateServiceURLs() {
+ return elgaMandateServiceURLs;
+ }
+
+ /**
+ * @param elgaMandateServiceURLs the elgaMandateServiceURLs to set
+ */
+ public void setElgaMandateServiceURLs(String elgaMandateServiceURLs) {
+ this.elgaMandateServiceURLs = elgaMandateServiceURLs;
+ }
+
+ /**
* Sets the value of the hjid property.
*
* @param value
diff --git a/id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/db/dao/config/deprecated/Mandates.java b/id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/db/dao/config/deprecated/Mandates.java
index a87a6d1f6..58b8972a1 100644
--- a/id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/db/dao/config/deprecated/Mandates.java
+++ b/id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/db/dao/config/deprecated/Mandates.java
@@ -17,6 +17,7 @@ import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
+import javax.xml.bind.annotation.XmlTransient;
import javax.xml.bind.annotation.XmlType;
import org.jvnet.jaxb2_commons.lang.Equals;
@@ -70,6 +71,12 @@ public class Mandates
protected Long hjid;
// protected transient List<MandatesProfileNameItem> profileNameItems;
+ @XmlTransient
+ protected String selectedMISServiceURL;
+
+ @XmlTransient
+ protected String selecteELGAServiceURL;
+
/**
* Gets the value of the profiles property.
*
@@ -145,11 +152,43 @@ public class Mandates
+
+
public Long getHjid() {
return hjid;
}
/**
+ * @return the selectedMISServiceURL
+ */
+ public String getSelectedMISServiceURL() {
+ return selectedMISServiceURL;
+ }
+
+ /**
+ * @param selectedMISServiceURL the selectedMISServiceURL to set
+ */
+ public void setSelectedMISServiceURL(String selectedMISServiceURL) {
+ this.selectedMISServiceURL = selectedMISServiceURL;
+ }
+
+
+
+ /**
+ * @return the selecteELGAServiceURL
+ */
+ public String getSelecteELGAServiceURL() {
+ return selecteELGAServiceURL;
+ }
+
+ /**
+ * @param selecteELGAServiceURL the selecteELGAServiceURL to set
+ */
+ public void setSelecteELGAServiceURL(String selecteELGAServiceURL) {
+ this.selecteELGAServiceURL = selecteELGAServiceURL;
+ }
+
+ /**
* Sets the value of the hjid property.
*
* @param value
diff --git a/id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/db/dao/config/deprecated/OnlineApplication.java b/id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/db/dao/config/deprecated/OnlineApplication.java
index 6a838c261..4aee10bc1 100644
--- a/id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/db/dao/config/deprecated/OnlineApplication.java
+++ b/id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/db/dao/config/deprecated/OnlineApplication.java
@@ -9,12 +9,9 @@
package at.gv.egovernment.moa.id.commons.db.dao.config.deprecated;
import java.io.Serializable;
-import javax.persistence.Basic;
-import javax.persistence.Column;
-import javax.persistence.Entity;
+
import javax.persistence.EnumType;
import javax.persistence.Enumerated;
-import javax.persistence.Table;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
@@ -23,7 +20,7 @@ import javax.xml.bind.annotation.XmlTransient;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
-import com.sun.tools.xjc.runtime.ZeroOneBooleanAdapter;
+
import org.jvnet.jaxb2_commons.lang.Equals;
import org.jvnet.jaxb2_commons.lang.EqualsStrategy;
import org.jvnet.jaxb2_commons.lang.HashCode;
@@ -33,6 +30,8 @@ import org.jvnet.jaxb2_commons.lang.JAXBHashCodeStrategy;
import org.jvnet.jaxb2_commons.locator.ObjectLocator;
import org.jvnet.jaxb2_commons.locator.util.LocatorUtils;
+import com.sun.tools.xjc.runtime.ZeroOneBooleanAdapter;
+
/**
* <p>Java class for OnlineApplication complex type.
@@ -107,8 +106,27 @@ public class OnlineApplication
@XmlTransient
protected String eventCodes = null;
+ @XmlTransient
+ protected String selectedSZRGWServiceURL = null;
+
+
+
/**
+ * @return the selectedSZRGWServiceURL
+ */
+ public String getSelectedSZRGWServiceURL() {
+ return selectedSZRGWServiceURL;
+ }
+
+ /**
+ * @param selectedSZRGWServiceURL the selectedSZRGWServiceURL to set
+ */
+ public void setSelectedSZRGWServiceURL(String selectedSZRGWServiceURL) {
+ this.selectedSZRGWServiceURL = selectedSZRGWServiceURL;
+ }
+
+ /**
* @return the isRevisionsLogActive
*/
public Boolean getIsRevisionsLogActive() {