X-Git-Url: https://git.argeo.org/?a=blobdiff_plain;ds=sidebyside;f=security%2Fruntime%2Forg.argeo.security.core%2Fsrc%2Fmain%2Fjava%2Forg%2Fargeo%2Fsecurity%2Fnature%2FInfrastructureUserNature.java;fp=security%2Fruntime%2Forg.argeo.security.core%2Fsrc%2Fmain%2Fjava%2Forg%2Fargeo%2Fsecurity%2Fnature%2FInfrastructureUserNature.java;h=08ac376a80b78c8bda1714da28fd03cf2c965c7c;hb=136dab5338b5f731b285d17c804861bd5e5a9b5c;hp=0000000000000000000000000000000000000000;hpb=43e77c157692d040ad20ea9c15d236b57ce0a9ac;p=lgpl%2Fargeo-commons.git 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 index 000000000..08ac376a8 --- /dev/null +++ b/security/runtime/org.argeo.security.core/src/main/java/org/argeo/security/nature/InfrastructureUserNature.java @@ -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; + } + +}