View Javadoc
1   package fr.paris.lutece.plugins.parisconnect.business;
2   
3   import org.codehaus.jackson.annotate.JsonProperty;
4   
5   public class UserInformations {
6   	
7   	private String _strIdUsers;
8   	private String _strFirstname;
9   	private String _strLastname;
10  	private String _strPseudo;
11  	
12  	
13  	 @JsonProperty("idusers")
14  	public String getIdUsers() {
15  		return _strIdUsers;
16  	}
17  	 @JsonProperty("idusers")
18  	public void setIdUsers(String _strIdUsers) {
19  		this._strIdUsers = _strIdUsers;
20  	}
21  	 @JsonProperty("firstname")
22  	public String getFirstname() {
23  		return _strFirstname;
24  	}
25  	 @JsonProperty("firstname")
26  	public void setFirstname(String _strFirstname) {
27  		this._strFirstname = _strFirstname;
28  	}
29  	 @JsonProperty("name")
30  	public String getLastname() {
31  		return _strLastname;
32  	}
33  	 
34  	 @JsonProperty("name")
35  	public void setLastname(String _strLastname) {
36  		this._strLastname = _strLastname;
37  	}
38  
39  		 
40  
41  	 @JsonProperty("pseudo")
42  	public String getPseudo() {
43  		return _strPseudo;
44  	}
45  	 @JsonProperty("pseudo")
46  	public void setPseudo(String _strPseudo) {
47  		this._strPseudo = _strPseudo;
48  	}
49  	
50  
51  }