]> git.argeo.org Git - lgpl/argeo-commons.git/blob - 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
1 package org.argeo.security.nature;
2
3 import org.argeo.security.AbstractUserNature;
4
5 /**
6 * Argeo infrastructure user nature. People with access to the infrastructure
7 * must be properly identified.
8 */
9 public class InfrastructureUserNature extends AbstractUserNature {
10 private static final long serialVersionUID = 1L;
11
12 private String mobile;
13 private String telephoneNumber;
14 private String postalAddress;
15 private String postalCode;
16 private String city;
17 private String countryCode;
18
19 public String getMobile() {
20 return mobile;
21 }
22
23 public void setMobile(String mobile) {
24 this.mobile = mobile;
25 }
26
27 public String getTelephoneNumber() {
28 return telephoneNumber;
29 }
30
31 public void setTelephoneNumber(String telephoneNumber) {
32 this.telephoneNumber = telephoneNumber;
33 }
34
35 public String getPostalAddress() {
36 return postalAddress;
37 }
38
39 public void setPostalAddress(String postalAddress) {
40 this.postalAddress = postalAddress;
41 }
42
43 public String getPostalCode() {
44 return postalCode;
45 }
46
47 public void setPostalCode(String postalCode) {
48 this.postalCode = postalCode;
49 }
50
51 public String getCity() {
52 return city;
53 }
54
55 public void setCity(String city) {
56 this.city = city;
57 }
58
59 public String getCountryCode() {
60 return countryCode;
61 }
62
63 public void setCountryCode(String countryCode) {
64 this.countryCode = countryCode;
65 }
66
67 }