View Javadoc
1   package fr.paris.lutece.plugins.crm.modules.form.business;
2   
3   /**
4    * 
5    * CRMLocalParameters
6    *
7    */
8   public class CRMLocalParameters {
9   
10  
11  	private String _strIdForm;
12  	private String _strIdDemandeType;
13  	private String _strCRMWebAppCode;
14  	
15  	/**
16  	 * 
17  	 * @return the form id
18  	 */
19  	public String getIdForm() {
20  		return _strIdForm;
21  	}
22  	/**
23  	 * 
24  	 * @param strIdForm the form id
25  	 */
26  	public void setIdForm(String  strIdForm) {
27  			_strIdForm = strIdForm;
28  	}
29  	/**
30  	 * 
31  	 * @return the demande type id
32  	 */
33  	public String getIdDemandeType() {
34  		return _strIdDemandeType;
35  	}
36  	/**
37  	 * 
38  	 * @param strIdDemandeType the demande type id
39  	 */
40  	public void setIdDemandeType(String strIdDemandeType) {
41  			_strIdDemandeType = strIdDemandeType;
42  	}
43  	/**
44  	 * 
45  	 * @return the code of the webapp crm 
46  	 */
47  	public String getCRMWebAppCode() {
48  		return _strCRMWebAppCode;
49  	}
50  	/**
51  	 * 
52  	 * @param strCRMWebAppCode the code of the webapp crm 
53  	 */
54  	public void setCRMWebAppCode(String strCRMWebAppCode) {
55  			_strCRMWebAppCode = strCRMWebAppCode;
56  	}
57  	
58  
59  }