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.document.modules.ckan.business;
35  
36  
37  /**
38   * PackageOrganization
39   */
40  public class PackageOrganization
41  {
42      private String _strId;
43      private String _strName;
44      private String _strTitle;
45      private String _strType;
46      private String _strDescription;
47      private String _strApprovalStatus;
48      private String _strState;
49      private boolean _strIsOrganization;
50      private String _strCreated;
51      private String _strRevisionId;
52      private String _strRevisionTimestamp;
53  
54      /**
55       * @return the id
56       */
57      public String getId(  )
58      {
59          return _strId;
60      }
61  
62      /**
63       * @param id the id to set
64       */
65      public void setId( String id )
66      {
67          _strId = id;
68      }
69  
70      /**
71       * @return the name
72       */
73      public String getName(  )
74      {
75          return _strName;
76      }
77  
78      /**
79       * @param name the name to set
80       */
81      public void setName( String name )
82      {
83          _strName = name;
84      }
85  
86      /**
87       * @return the title
88       */
89      public String getTitle(  )
90      {
91          return _strTitle;
92      }
93  
94      /**
95       * @param title the title to set
96       */
97      public void setTitle( String title )
98      {
99          _strTitle = title;
100     }
101 
102     /**
103      * @return the type
104      */
105     public String getType(  )
106     {
107         return _strType;
108     }
109 
110     /**
111      * @param type the type to set
112      */
113     public void setType( String type )
114     {
115         _strType = type;
116     }
117 
118     /**
119      * @return the description
120      */
121     public String getDescription(  )
122     {
123         return _strDescription;
124     }
125 
126     /**
127      * @param description the description to set
128      */
129     public void setDescription( String description )
130     {
131         _strDescription = description;
132     }
133 
134     /**
135      * @return the approval_status
136      */
137     public String getApproval_status(  )
138     {
139         return _strApprovalStatus;
140     }
141 
142     /**
143      * @param approval_status the approval_status to set
144      */
145     public void setApproval_status( String approval_status )
146     {
147         _strApprovalStatus = approval_status;
148     }
149 
150     /**
151      * @return the state
152      */
153     public String getState(  )
154     {
155         return _strState;
156     }
157 
158     /**
159      * @param state the state to set
160      */
161     public void setState( String state )
162     {
163         _strState = state;
164     }
165 
166     /**
167      * @return the is_organization
168      */
169     public boolean isIs_organization(  )
170     {
171         return _strIsOrganization;
172     }
173 
174     /**
175      * @param is_organization the is_organization to set
176      */
177     public void setIs_organization( boolean is_organization )
178     {
179         _strIsOrganization = is_organization;
180     }
181 
182     /**
183      * @return the created
184      */
185     public String getCreated(  )
186     {
187         return _strCreated;
188     }
189 
190     /**
191      * @param strCreated the created to set
192      */
193     public void setCreated( String strCreated )
194     {
195         _strCreated = strCreated;
196     }
197 
198     /**
199      * @return the revision_id
200      */
201     public String getRevision_id(  )
202     {
203         return _strRevisionId;
204     }
205 
206     /**
207      * @param strRevisionId the revision_id to set
208      */
209     public void setRevision_id( String strRevisionId )
210     {
211         _strRevisionId = strRevisionId;
212     }
213 
214     /**
215      * @return the revision_timestamp
216      */
217     public String getRevision_timestamp(  )
218     {
219         return _strRevisionTimestamp;
220     }
221 
222     /**
223      * @param strRevisionTimestamp the revision_timestamp to set
224      */
225     public void setRevision_timestamp( String strRevisionTimestamp )
226     {
227         _strRevisionTimestamp = strRevisionTimestamp;
228     }
229 }