View Javadoc
1   /*
2    * Copyright (c) 2002-2014, Mairie de Paris
3    * All rights reserved.
4    *
5    * Redistribution and use in source and binary forms, with or without
6    * modification, are permitted provided that the following conditions
7    * are met:
8    *
9    *  1. Redistributions of source code must retain the above copyright notice
10   *     and the following disclaimer.
11   *
12   *  2. Redistributions in binary form must reproduce the above copyright notice
13   *     and the following disclaimer in the documentation and/or other materials
14   *     provided with the distribution.
15   *
16   *  3. Neither the name of 'Mairie de Paris' nor 'Lutece' nor the names of its
17   *     contributors may be used to endorse or promote products derived from
18   *     this software without specific prior written permission.
19   *
20   * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21   * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22   * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23   * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
24   * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25   * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26   * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27   * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28   * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29   * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30   * POSSIBILITY OF SUCH DAMAGE.
31   *
32   * License 1.0
33   */
34  package fr.paris.lutece.plugins.dila.business.fichelocale.dto;
35  
36  
37  /**
38   * DTO for Link local folder
39   */
40  public class LocalFolderLinkDTO
41  {
42      /**
43       * Id of the resource
44       */
45      private Long _lId;
46  
47      /**
48       * Title of the resource
49       */
50      private String _strTitle;
51  
52      /**
53       * Position of link
54       */
55      private Integer _nPosition;
56  
57      /**
58       * The card id
59       */
60      private String _strCardId;
61  
62      /**
63       * The local folder id
64       */
65      private Long _lLocalFolderId;
66  
67      /**
68       * The card title
69       */
70      private String _strCardTitle;
71  
72      /**
73       * @return the _lId
74       */
75      public Long getId(  )
76      {
77          return _lId;
78      }
79  
80      /**
81       * @param lId the _lId to set
82       */
83      public void setId( Long lId )
84      {
85          this._lId = lId;
86      }
87  
88      /**
89       * @return the _strTitle
90       */
91      public String getTitle(  )
92      {
93          return _strTitle;
94      }
95  
96      /**
97       * @param strTitle the _strTitle to set
98       */
99      public void setTitle( String strTitle )
100     {
101         this._strTitle = strTitle;
102     }
103 
104     /**
105      * @return the position
106      */
107     public Integer getPosition(  )
108     {
109         return _nPosition;
110     }
111 
112     /**
113      * @param nPosition the position to set
114      */
115     public void setPosition( Integer nPosition )
116     {
117         this._nPosition = nPosition;
118     }
119 
120     /**
121      * @return the _strCardId
122      */
123     public String getCardId(  )
124     {
125         return _strCardId;
126     }
127 
128     /**
129      * @param strCardId the _strCardId to set
130      */
131     public void setCardId( String strCardId )
132     {
133         this._strCardId = strCardId;
134     }
135 
136     /**
137      * @return the _lLocalFolderId
138      */
139     public Long getLocalFolderId(  )
140     {
141         return _lLocalFolderId;
142     }
143 
144     /**
145      * @param lLocalFolderId the _lLocalFolderId to set
146      */
147     public void setLocalFolderId( Long lLocalFolderId )
148     {
149         this._lLocalFolderId = lLocalFolderId;
150     }
151 
152     /**
153      * @return the _strCardTitle
154      */
155     public String getCardTitle(  )
156     {
157         return _strCardTitle;
158     }
159 
160     /**
161      * @param strCardTitle the _strCardTitle to set
162      */
163     public void setCardTitle( String strCardTitle )
164     {
165         _strCardTitle = strCardTitle;
166     }
167 }