import rt 3.4.6
[freeside.git] / rt / lib / RT / ScripCondition.pm
1 # BEGIN BPS TAGGED BLOCK {{{
2
3 # COPYRIGHT:
4 #  
5 # This software is Copyright (c) 1996-2005 Best Practical Solutions, LLC 
6 #                                          <jesse@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., 675 Mass Ave, Cambridge, MA 02139, USA.
26
27
28 # CONTRIBUTION SUBMISSION POLICY:
29
30 # (The following paragraph is not intended to limit the rights granted
31 # to you to modify and distribute this software under the terms of
32 # the GNU General Public License and is only of importance to you if
33 # you choose to contribute your changes and enhancements to the
34 # community by submitting them to Best Practical Solutions, LLC.)
35
36 # By intentionally submitting any modifications, corrections or
37 # derivatives to this work, or any other work intended for use with
38 # Request Tracker, to Best Practical Solutions, LLC, you confirm that
39 # you are the copyright holder for those contributions and you grant
40 # Best Practical Solutions,  LLC a nonexclusive, worldwide, irrevocable,
41 # royalty-free, perpetual, license to use, copy, create derivative
42 # works based on those contributions, and sublicense and distribute
43 # those contributions and any derivatives thereof.
44
45 # END BPS TAGGED BLOCK }}}
46 # Autogenerated by DBIx::SearchBuilder factory (by <jesse@bestpractical.com>)
47 # WARNING: THIS FILE IS AUTOGENERATED. ALL CHANGES TO THIS FILE WILL BE LOST.  
48
49 # !! DO NOT EDIT THIS FILE !!
50 #
51
52 use strict;
53
54
55 =head1 NAME
56
57 RT::ScripCondition
58
59
60 =head1 SYNOPSIS
61
62 =head1 DESCRIPTION
63
64 =head1 METHODS
65
66 =cut
67
68 package RT::ScripCondition;
69 use RT::Record; 
70
71
72 use vars qw( @ISA );
73 @ISA= qw( RT::Record );
74
75 sub _Init {
76   my $self = shift; 
77
78   $self->Table('ScripConditions');
79   $self->SUPER::_Init(@_);
80 }
81
82
83
84
85
86 =head2 Create PARAMHASH
87
88 Create takes a hash of values and creates a row in the database:
89
90   varchar(200) 'Name'.
91   varchar(255) 'Description'.
92   varchar(60) 'ExecModule'.
93   varchar(255) 'Argument'.
94   varchar(60) 'ApplicableTransTypes'.
95
96 =cut
97
98
99
100
101 sub Create {
102     my $self = shift;
103     my %args = ( 
104                 Name => '',
105                 Description => '',
106                 ExecModule => '',
107                 Argument => '',
108                 ApplicableTransTypes => '',
109
110                   @_);
111     $self->SUPER::Create(
112                          Name => $args{'Name'},
113                          Description => $args{'Description'},
114                          ExecModule => $args{'ExecModule'},
115                          Argument => $args{'Argument'},
116                          ApplicableTransTypes => $args{'ApplicableTransTypes'},
117 );
118
119 }
120
121
122
123 =head2 id
124
125 Returns the current value of id. 
126 (In the database, id is stored as int(11).)
127
128
129 =cut
130
131
132 =head2 Name
133
134 Returns the current value of Name. 
135 (In the database, Name is stored as varchar(200).)
136
137
138
139 =head2 SetName VALUE
140
141
142 Set Name to VALUE. 
143 Returns (1, 'Status message') on success and (0, 'Error Message') on failure.
144 (In the database, Name will be stored as a varchar(200).)
145
146
147 =cut
148
149
150 =head2 Description
151
152 Returns the current value of Description. 
153 (In the database, Description is stored as varchar(255).)
154
155
156
157 =head2 SetDescription VALUE
158
159
160 Set Description to VALUE. 
161 Returns (1, 'Status message') on success and (0, 'Error Message') on failure.
162 (In the database, Description will be stored as a varchar(255).)
163
164
165 =cut
166
167
168 =head2 ExecModule
169
170 Returns the current value of ExecModule. 
171 (In the database, ExecModule is stored as varchar(60).)
172
173
174
175 =head2 SetExecModule VALUE
176
177
178 Set ExecModule to VALUE. 
179 Returns (1, 'Status message') on success and (0, 'Error Message') on failure.
180 (In the database, ExecModule will be stored as a varchar(60).)
181
182
183 =cut
184
185
186 =head2 Argument
187
188 Returns the current value of Argument. 
189 (In the database, Argument is stored as varchar(255).)
190
191
192
193 =head2 SetArgument VALUE
194
195
196 Set Argument to VALUE. 
197 Returns (1, 'Status message') on success and (0, 'Error Message') on failure.
198 (In the database, Argument will be stored as a varchar(255).)
199
200
201 =cut
202
203
204 =head2 ApplicableTransTypes
205
206 Returns the current value of ApplicableTransTypes. 
207 (In the database, ApplicableTransTypes is stored as varchar(60).)
208
209
210
211 =head2 SetApplicableTransTypes VALUE
212
213
214 Set ApplicableTransTypes to VALUE. 
215 Returns (1, 'Status message') on success and (0, 'Error Message') on failure.
216 (In the database, ApplicableTransTypes will be stored as a varchar(60).)
217
218
219 =cut
220
221
222 =head2 Creator
223
224 Returns the current value of Creator. 
225 (In the database, Creator is stored as int(11).)
226
227
228 =cut
229
230
231 =head2 Created
232
233 Returns the current value of Created. 
234 (In the database, Created is stored as datetime.)
235
236
237 =cut
238
239
240 =head2 LastUpdatedBy
241
242 Returns the current value of LastUpdatedBy. 
243 (In the database, LastUpdatedBy is stored as int(11).)
244
245
246 =cut
247
248
249 =head2 LastUpdated
250
251 Returns the current value of LastUpdated. 
252 (In the database, LastUpdated is stored as datetime.)
253
254
255 =cut
256
257
258
259 sub _CoreAccessible {
260     {
261      
262         id =>
263                 {read => 1, sql_type => 4, length => 11,  is_blob => 0,  is_numeric => 1,  type => 'int(11)', default => ''},
264         Name => 
265                 {read => 1, write => 1, sql_type => 12, length => 200,  is_blob => 0,  is_numeric => 0,  type => 'varchar(200)', default => ''},
266         Description => 
267                 {read => 1, write => 1, sql_type => 12, length => 255,  is_blob => 0,  is_numeric => 0,  type => 'varchar(255)', default => ''},
268         ExecModule => 
269                 {read => 1, write => 1, sql_type => 12, length => 60,  is_blob => 0,  is_numeric => 0,  type => 'varchar(60)', default => ''},
270         Argument => 
271                 {read => 1, write => 1, sql_type => 12, length => 255,  is_blob => 0,  is_numeric => 0,  type => 'varchar(255)', default => ''},
272         ApplicableTransTypes => 
273                 {read => 1, write => 1, sql_type => 12, length => 60,  is_blob => 0,  is_numeric => 0,  type => 'varchar(60)', default => ''},
274         Creator => 
275                 {read => 1, auto => 1, sql_type => 4, length => 11,  is_blob => 0,  is_numeric => 1,  type => 'int(11)', default => '0'},
276         Created => 
277                 {read => 1, auto => 1, sql_type => 11, length => 0,  is_blob => 0,  is_numeric => 0,  type => 'datetime', default => ''},
278         LastUpdatedBy => 
279                 {read => 1, auto => 1, sql_type => 4, length => 11,  is_blob => 0,  is_numeric => 1,  type => 'int(11)', default => '0'},
280         LastUpdated => 
281                 {read => 1, auto => 1, sql_type => 11, length => 0,  is_blob => 0,  is_numeric => 0,  type => 'datetime', default => ''},
282
283  }
284 };
285
286
287         eval "require RT::ScripCondition_Overlay";
288         if ($@ && $@ !~ qr{^Can't locate RT/ScripCondition_Overlay.pm}) {
289             die $@;
290         };
291
292         eval "require RT::ScripCondition_Vendor";
293         if ($@ && $@ !~ qr{^Can't locate RT/ScripCondition_Vendor.pm}) {
294             die $@;
295         };
296
297         eval "require RT::ScripCondition_Local";
298         if ($@ && $@ !~ qr{^Can't locate RT/ScripCondition_Local.pm}) {
299             die $@;
300         };
301
302
303
304
305 =head1 SEE ALSO
306
307 This class allows "overlay" methods to be placed
308 into the following files _Overlay is for a System overlay by the original author,
309 _Vendor is for 3rd-party vendor add-ons, while _Local is for site-local customizations.  
310
311 These overlay files can contain new subs or subs to replace existing subs in this module.
312
313 Each of these files should begin with the line 
314
315    no warnings qw(redefine);
316
317 so that perl does not kick and scream when you redefine a subroutine or variable in your overlay.
318
319 RT::ScripCondition_Overlay, RT::ScripCondition_Vendor, RT::ScripCondition_Local
320
321 =cut
322
323
324 1;