View Javadoc
1   package fr.paris.lutece.plugins.workflow.modules.eudonetrestdirectory.business;
2   
3   public class EudonetLink
4   {
5       private int _nId;
6       private int _nIdRessource;
7       private String _strIdField;
8       private String _strIdTable;
9       private String _strIdTableLink;
10  
11      /**
12       * @return the _nId
13       */
14      public int getId( )
15      {
16          return _nId;
17      }
18  
19      /**
20       * @param _nId
21       *            the _nId to set
22       */
23      public void setId( int nId )
24      {
25          this._nId = nId;
26      }
27  
28      /**
29       * @return the _nIdRessource
30       */
31      public int getIdRessource( )
32      {
33          return _nIdRessource;
34      }
35  
36      /**
37       * @param _nIdRessource
38       *            the _nIdRessource to set
39       */
40      public void setIdRessource( int nIdRessource )
41      {
42          this._nIdRessource = nIdRessource;
43      }
44  
45      /**
46       * @return the _strIdField
47       */
48      public String getIdField( )
49      {
50          return _strIdField;
51      }
52  
53      /**
54       * @param _strIdTable
55       *            the _strIdField to set
56       */
57      public void setIdField( String strIdField )
58      {
59          this._strIdField = strIdField;
60      }
61  
62      /**
63       * @return the _strIdTable
64       */
65      public String getIdTable( )
66      {
67          return _strIdTable;
68      }
69  
70      /**
71       * @param _strIdTable
72       *            the _strIdTable to set
73       */
74      public void setIdTable( String strIdTable )
75      {
76          this._strIdTable = strIdTable;
77      }
78  
79      /**
80       * @return the _strIdTableLink
81       */
82      public String getIdTableLink( )
83      {
84          return _strIdTableLink;
85      }
86  
87      /**
88       * @param _strIdTableLink
89       *            the _strIdTableLink to set
90       */
91      public void setIdTableLink( String strIdTableLink )
92      {
93          this._strIdTableLink = strIdTableLink;
94      }
95  }