import rt 3.4.6
[freeside.git] / rt / lib / RT / ScripAction.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::ScripAction
58
59
60 =head1 SYNOPSIS
61
62 =head1 DESCRIPTION
63
64 =head1 METHODS
65
66 =cut
67
68 package RT::ScripAction;
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('ScripActions');
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
95 =cut
96
97
98
99
100 sub Create {
101     my $self = shift;
102     my %args = ( 
103                 Name => '',
104                 Description => '',
105                 ExecModule => '',
106                 Argument => '',
107
108                   @_);
109     $self->SUPER::Create(
110                          Name => $args{'Name'},
111                          Description => $args{'Description'},
112                          ExecModule => $args{'ExecModule'},
113                          Argument => $args{'Argument'},
114 );
115
116 }
117
118
119
120 =head2 id
121
122 Returns the current value of id. 
123 (In the database, id is stored as int(11).)
124
125
126 =cut
127
128
129 =head2 Name
130
131 Returns the current value of Name. 
132 (In the database, Name is stored as varchar(200).)
133
134
135
136 =head2 SetName VALUE
137
138
139 Set Name to VALUE. 
140 Returns (1, 'Status message') on success and (0, 'Error Message') on failure.
141 (In the database, Name will be stored as a varchar(200).)
142
143
144 =cut
145
146
147 =head2 Description
148
149 Returns the current value of Description. 
150 (In the database, Description is stored as varchar(255).)
151
152
153
154 =head2 SetDescription VALUE
155
156
157 Set Description to VALUE. 
158 Returns (1, 'Status message') on success and (0, 'Error Message') on failure.
159 (In the database, Description will be stored as a varchar(255).)
160
161
162 =cut
163
164
165 =head2 ExecModule
166
167 Returns the current value of ExecModule. 
168 (In the database, ExecModule is stored as varchar(60).)
169
170
171
172 =head2 SetExecModule VALUE
173
174
175 Set ExecModule to VALUE. 
176 Returns (1, 'Status message') on success and (0, 'Error Message') on failure.
177 (In the database, ExecModule will be stored as a varchar(60).)
178
179
180 =cut
181
182
183 =head2 Argument
184
185 Returns the current value of Argument. 
186 (In the database, Argument is stored as varchar(255).)
187
188
189
190 =head2 SetArgument VALUE
191
192
193 Set Argument to VALUE. 
194 Returns (1, 'Status message') on success and (0, 'Error Message') on failure.
195 (In the database, Argument will be stored as a varchar(255).)
196
197
198 =cut
199
200
201 =head2 Creator
202
203 Returns the current value of Creator. 
204 (In the database, Creator is stored as int(11).)
205
206
207 =cut
208
209
210 =head2 Created
211
212 Returns the current value of Created. 
213 (In the database, Created is stored as datetime.)
214
215
216 =cut
217
218
219 =head2 LastUpdatedBy
220
221 Returns the current value of LastUpdatedBy. 
222 (In the database, LastUpdatedBy is stored as int(11).)
223
224
225 =cut
226
227
228 =head2 LastUpdated
229
230 Returns the current value of LastUpdated. 
231 (In the database, LastUpdated is stored as datetime.)
232
233
234 =cut
235
236
237
238 sub _CoreAccessible {
239     {
240      
241         id =>
242                 {read => 1, sql_type => 4, length => 11,  is_blob => 0,  is_numeric => 1,  type => 'int(11)', default => ''},
243         Name => 
244                 {read => 1, write => 1, sql_type => 12, length => 200,  is_blob => 0,  is_numeric => 0,  type => 'varchar(200)', default => ''},
245         Description => 
246                 {read => 1, write => 1, sql_type => 12, length => 255,  is_blob => 0,  is_numeric => 0,  type => 'varchar(255)', default => ''},
247         ExecModule => 
248                 {read => 1, write => 1, sql_type => 12, length => 60,  is_blob => 0,  is_numeric => 0,  type => 'varchar(60)', default => ''},
249         Argument => 
250                 {read => 1, write => 1, sql_type => 12, length => 255,  is_blob => 0,  is_numeric => 0,  type => 'varchar(255)', default => ''},
251         Creator => 
252                 {read => 1, auto => 1, sql_type => 4, length => 11,  is_blob => 0,  is_numeric => 1,  type => 'int(11)', default => '0'},
253         Created => 
254                 {read => 1, auto => 1, sql_type => 11, length => 0,  is_blob => 0,  is_numeric => 0,  type => 'datetime', default => ''},
255         LastUpdatedBy => 
256                 {read => 1, auto => 1, sql_type => 4, length => 11,  is_blob => 0,  is_numeric => 1,  type => 'int(11)', default => '0'},
257         LastUpdated => 
258                 {read => 1, auto => 1, sql_type => 11, length => 0,  is_blob => 0,  is_numeric => 0,  type => 'datetime', default => ''},
259
260  }
261 };
262
263
264         eval "require RT::ScripAction_Overlay";
265         if ($@ && $@ !~ qr{^Can't locate RT/ScripAction_Overlay.pm}) {
266             die $@;
267         };
268
269         eval "require RT::ScripAction_Vendor";
270         if ($@ && $@ !~ qr{^Can't locate RT/ScripAction_Vendor.pm}) {
271             die $@;
272         };
273
274         eval "require RT::ScripAction_Local";
275         if ($@ && $@ !~ qr{^Can't locate RT/ScripAction_Local.pm}) {
276             die $@;
277         };
278
279
280
281
282 =head1 SEE ALSO
283
284 This class allows "overlay" methods to be placed
285 into the following files _Overlay is for a System overlay by the original author,
286 _Vendor is for 3rd-party vendor add-ons, while _Local is for site-local customizations.  
287
288 These overlay files can contain new subs or subs to replace existing subs in this module.
289
290 Each of these files should begin with the line 
291
292    no warnings qw(redefine);
293
294 so that perl does not kick and scream when you redefine a subroutine or variable in your overlay.
295
296 RT::ScripAction_Overlay, RT::ScripAction_Vendor, RT::ScripAction_Local
297
298 =cut
299
300
301 1;