import rt 3.8.10
[freeside.git] / rt / lib / RT / Queue.pm
1 # BEGIN BPS TAGGED BLOCK {{{
2 #
3 # COPYRIGHT:
4 #
5 # This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
6 #                                          <sales@bestpractical.com>
7 #
8 # (Except where explicitly superseded by other copyright notices)
9 #
10 #
11 # LICENSE:
12 #
13 # This work is made available to you under the terms of Version 2 of
14 # the GNU General Public License. A copy of that license should have
15 # been provided with this software, but in any event can be snarfed
16 # from www.gnu.org.
17 #
18 # This work is distributed in the hope that it will be useful, but
19 # WITHOUT ANY WARRANTY; without even the implied warranty of
20 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
21 # General Public License for more details.
22 #
23 # You should have received a copy of the GNU General Public License
24 # along with this program; if not, write to the Free Software
25 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
26 # 02110-1301 or visit their web page on the internet at
27 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html.
28 #
29 #
30 # CONTRIBUTION SUBMISSION POLICY:
31 #
32 # (The following paragraph is not intended to limit the rights granted
33 # to you to modify and distribute this software under the terms of
34 # the GNU General Public License and is only of importance to you if
35 # you choose to contribute your changes and enhancements to the
36 # community by submitting them to Best Practical Solutions, LLC.)
37 #
38 # By intentionally submitting any modifications, corrections or
39 # derivatives to this work, or any other work intended for use with
40 # Request Tracker, to Best Practical Solutions, LLC, you confirm that
41 # you are the copyright holder for those contributions and you grant
42 # Best Practical Solutions,  LLC a nonexclusive, worldwide, irrevocable,
43 # royalty-free, perpetual, license to use, copy, create derivative
44 # works based on those contributions, and sublicense and distribute
45 # those contributions and any derivatives thereof.
46 #
47 # END BPS TAGGED BLOCK }}}
48
49 # Autogenerated by DBIx::SearchBuilder factory (by <jesse@bestpractical.com>)
50 # WARNING: THIS FILE IS AUTOGENERATED. ALL CHANGES TO THIS FILE WILL BE LOST.  
51
52 # !! DO NOT EDIT THIS FILE !!
53 #
54
55 use strict;
56
57
58 =head1 NAME
59
60 RT::Queue
61
62
63 =head1 SYNOPSIS
64
65 =head1 DESCRIPTION
66
67 =head1 METHODS
68
69 =cut
70
71 package RT::Queue;
72 use RT::Record; 
73
74
75 use vars qw( @ISA );
76 @ISA= qw( RT::Record );
77
78 sub _Init {
79   my $self = shift; 
80
81   $self->Table('Queues');
82   $self->SUPER::_Init(@_);
83 }
84
85
86
87
88
89 =head2 Create PARAMHASH
90
91 Create takes a hash of values and creates a row in the database:
92
93   varchar(200) 'Name'.
94   varchar(255) 'Description'.
95   varchar(120) 'CorrespondAddress'.
96   varchar(120) 'CommentAddress'.
97   int(11) 'InitialPriority'.
98   int(11) 'FinalPriority'.
99   int(11) 'DefaultDueIn'.
100   smallint(6) 'Disabled'.
101
102 =cut
103
104
105
106
107 sub Create {
108     my $self = shift;
109     my %args = ( 
110                 Name => '',
111                 Description => '',
112                 CorrespondAddress => '',
113                 CommentAddress => '',
114                 InitialPriority => '0',
115                 FinalPriority => '0',
116                 DefaultDueIn => '0',
117                 Disabled => '0',
118
119                   @_);
120     $self->SUPER::Create(
121                          Name => $args{'Name'},
122                          Description => $args{'Description'},
123                          CorrespondAddress => $args{'CorrespondAddress'},
124                          CommentAddress => $args{'CommentAddress'},
125                          InitialPriority => $args{'InitialPriority'},
126                          FinalPriority => $args{'FinalPriority'},
127                          DefaultDueIn => $args{'DefaultDueIn'},
128                          Disabled => $args{'Disabled'},
129 );
130
131 }
132
133
134
135 =head2 id
136
137 Returns the current value of id. 
138 (In the database, id is stored as int(11).)
139
140
141 =cut
142
143
144 =head2 Name
145
146 Returns the current value of Name. 
147 (In the database, Name is stored as varchar(200).)
148
149
150
151 =head2 SetName VALUE
152
153
154 Set Name to VALUE. 
155 Returns (1, 'Status message') on success and (0, 'Error Message') on failure.
156 (In the database, Name will be stored as a varchar(200).)
157
158
159 =cut
160
161
162 =head2 Description
163
164 Returns the current value of Description. 
165 (In the database, Description is stored as varchar(255).)
166
167
168
169 =head2 SetDescription VALUE
170
171
172 Set Description to VALUE. 
173 Returns (1, 'Status message') on success and (0, 'Error Message') on failure.
174 (In the database, Description will be stored as a varchar(255).)
175
176
177 =cut
178
179
180 =head2 CorrespondAddress
181
182 Returns the current value of CorrespondAddress. 
183 (In the database, CorrespondAddress is stored as varchar(120).)
184
185
186
187 =head2 SetCorrespondAddress VALUE
188
189
190 Set CorrespondAddress to VALUE. 
191 Returns (1, 'Status message') on success and (0, 'Error Message') on failure.
192 (In the database, CorrespondAddress will be stored as a varchar(120).)
193
194
195 =cut
196
197
198 =head2 CommentAddress
199
200 Returns the current value of CommentAddress. 
201 (In the database, CommentAddress is stored as varchar(120).)
202
203
204
205 =head2 SetCommentAddress VALUE
206
207
208 Set CommentAddress to VALUE. 
209 Returns (1, 'Status message') on success and (0, 'Error Message') on failure.
210 (In the database, CommentAddress will be stored as a varchar(120).)
211
212
213 =cut
214
215
216 =head2 InitialPriority
217
218 Returns the current value of InitialPriority. 
219 (In the database, InitialPriority is stored as int(11).)
220
221
222
223 =head2 SetInitialPriority VALUE
224
225
226 Set InitialPriority to VALUE. 
227 Returns (1, 'Status message') on success and (0, 'Error Message') on failure.
228 (In the database, InitialPriority will be stored as a int(11).)
229
230
231 =cut
232
233
234 =head2 FinalPriority
235
236 Returns the current value of FinalPriority. 
237 (In the database, FinalPriority is stored as int(11).)
238
239
240
241 =head2 SetFinalPriority VALUE
242
243
244 Set FinalPriority to VALUE. 
245 Returns (1, 'Status message') on success and (0, 'Error Message') on failure.
246 (In the database, FinalPriority will be stored as a int(11).)
247
248
249 =cut
250
251
252 =head2 DefaultDueIn
253
254 Returns the current value of DefaultDueIn. 
255 (In the database, DefaultDueIn is stored as int(11).)
256
257
258
259 =head2 SetDefaultDueIn VALUE
260
261
262 Set DefaultDueIn to VALUE. 
263 Returns (1, 'Status message') on success and (0, 'Error Message') on failure.
264 (In the database, DefaultDueIn will be stored as a int(11).)
265
266
267 =cut
268
269
270 =head2 Creator
271
272 Returns the current value of Creator. 
273 (In the database, Creator is stored as int(11).)
274
275
276 =cut
277
278
279 =head2 Created
280
281 Returns the current value of Created. 
282 (In the database, Created is stored as datetime.)
283
284
285 =cut
286
287
288 =head2 LastUpdatedBy
289
290 Returns the current value of LastUpdatedBy. 
291 (In the database, LastUpdatedBy is stored as int(11).)
292
293
294 =cut
295
296
297 =head2 LastUpdated
298
299 Returns the current value of LastUpdated. 
300 (In the database, LastUpdated is stored as datetime.)
301
302
303 =cut
304
305
306 =head2 Disabled
307
308 Returns the current value of Disabled. 
309 (In the database, Disabled is stored as smallint(6).)
310
311
312
313 =head2 SetDisabled VALUE
314
315
316 Set Disabled to VALUE. 
317 Returns (1, 'Status message') on success and (0, 'Error Message') on failure.
318 (In the database, Disabled will be stored as a smallint(6).)
319
320
321 =cut
322
323
324
325 sub _CoreAccessible {
326     {
327      
328         id =>
329                 {read => 1, sql_type => 4, length => 11,  is_blob => 0,  is_numeric => 1,  type => 'int(11)', default => ''},
330         Name => 
331                 {read => 1, write => 1, sql_type => 12, length => 200,  is_blob => 0,  is_numeric => 0,  type => 'varchar(200)', default => ''},
332         Description => 
333                 {read => 1, write => 1, sql_type => 12, length => 255,  is_blob => 0,  is_numeric => 0,  type => 'varchar(255)', default => ''},
334         CorrespondAddress => 
335                 {read => 1, write => 1, sql_type => 12, length => 120,  is_blob => 0,  is_numeric => 0,  type => 'varchar(120)', default => ''},
336         CommentAddress => 
337                 {read => 1, write => 1, sql_type => 12, length => 120,  is_blob => 0,  is_numeric => 0,  type => 'varchar(120)', default => ''},
338         InitialPriority => 
339                 {read => 1, write => 1, sql_type => 4, length => 11,  is_blob => 0,  is_numeric => 1,  type => 'int(11)', default => '0'},
340         FinalPriority => 
341                 {read => 1, write => 1, sql_type => 4, length => 11,  is_blob => 0,  is_numeric => 1,  type => 'int(11)', default => '0'},
342         DefaultDueIn => 
343                 {read => 1, write => 1, sql_type => 4, length => 11,  is_blob => 0,  is_numeric => 1,  type => 'int(11)', default => '0'},
344         Creator => 
345                 {read => 1, auto => 1, sql_type => 4, length => 11,  is_blob => 0,  is_numeric => 1,  type => 'int(11)', default => '0'},
346         Created => 
347                 {read => 1, auto => 1, sql_type => 11, length => 0,  is_blob => 0,  is_numeric => 0,  type => 'datetime', default => ''},
348         LastUpdatedBy => 
349                 {read => 1, auto => 1, sql_type => 4, length => 11,  is_blob => 0,  is_numeric => 1,  type => 'int(11)', default => '0'},
350         LastUpdated => 
351                 {read => 1, auto => 1, sql_type => 11, length => 0,  is_blob => 0,  is_numeric => 0,  type => 'datetime', default => ''},
352         Disabled => 
353                 {read => 1, write => 1, sql_type => 5, length => 6,  is_blob => 0,  is_numeric => 1,  type => 'smallint(6)', default => '0'},
354
355  }
356 };
357
358 RT::Base->_ImportOverlays();
359
360 =head1 SEE ALSO
361
362 This class allows "overlay" methods to be placed
363 into the following files _Overlay is for a System overlay by the original author,
364 _Vendor is for 3rd-party vendor add-ons, while _Local is for site-local customizations.  
365
366 These overlay files can contain new subs or subs to replace existing subs in this module.
367
368 Each of these files should begin with the line 
369
370    no warnings qw(redefine);
371
372 so that perl does not kick and scream when you redefine a subroutine or variable in your overlay.
373
374 RT::Queue_Overlay, RT::Queue_Vendor, RT::Queue_Local
375
376 =cut
377
378
379 1;