]> git.argeo.org Git - lgpl/argeo-commons.git/blobdiff - security/runtime/org.argeo.security.core/src/main/java/org/argeo/security/nature/InfrastructureUserNature.java
Improve Security
[lgpl/argeo-commons.git] / security / runtime / org.argeo.security.core / src / main / java / org / argeo / security / nature / InfrastructureUserNature.java
diff --git a/security/runtime/org.argeo.security.core/src/main/java/org/argeo/security/nature/InfrastructureUserNature.java b/security/runtime/org.argeo.security.core/src/main/java/org/argeo/security/nature/InfrastructureUserNature.java
new file mode 100644 (file)
index 0000000..08ac376
--- /dev/null
@@ -0,0 +1,67 @@
+package org.argeo.security.nature;
+
+import org.argeo.security.AbstractUserNature;
+
+/**
+ * Argeo infrastructure user nature. People with access to the infrastructure
+ * must be properly identified.
+ */
+public class InfrastructureUserNature extends AbstractUserNature {
+       private static final long serialVersionUID = 1L;
+
+       private String mobile;
+       private String telephoneNumber;
+       private String postalAddress;
+       private String postalCode;
+       private String city;
+       private String countryCode;
+
+       public String getMobile() {
+               return mobile;
+       }
+
+       public void setMobile(String mobile) {
+               this.mobile = mobile;
+       }
+
+       public String getTelephoneNumber() {
+               return telephoneNumber;
+       }
+
+       public void setTelephoneNumber(String telephoneNumber) {
+               this.telephoneNumber = telephoneNumber;
+       }
+
+       public String getPostalAddress() {
+               return postalAddress;
+       }
+
+       public void setPostalAddress(String postalAddress) {
+               this.postalAddress = postalAddress;
+       }
+
+       public String getPostalCode() {
+               return postalCode;
+       }
+
+       public void setPostalCode(String postalCode) {
+               this.postalCode = postalCode;
+       }
+
+       public String getCity() {
+               return city;
+       }
+
+       public void setCity(String city) {
+               this.city = city;
+       }
+
+       public String getCountryCode() {
+               return countryCode;
+       }
+
+       public void setCountryCode(String countryCode) {
+               this.countryCode = countryCode;
+       }
+
+}