import rt 3.4.6
[freeside.git] / rt / lib / RT / Group.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::Group
58
59
60 =head1 SYNOPSIS
61
62 =head1 DESCRIPTION
63
64 =head1 METHODS
65
66 =cut
67
68 package RT::Group;
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('Groups');
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(64) 'Domain'.
93   varchar(64) 'Type'.
94   int(11) 'Instance'.
95
96 =cut
97
98
99
100
101 sub Create {
102     my $self = shift;
103     my %args = ( 
104                 Name => '',
105                 Description => '',
106                 Domain => '',
107                 Type => '',
108                 Instance => '',
109
110                   @_);
111     $self->SUPER::Create(
112                          Name => $args{'Name'},
113                          Description => $args{'Description'},
114                          Domain => $args{'Domain'},
115                          Type => $args{'Type'},
116                          Instance => $args{'Instance'},
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 Domain
169
170 Returns the current value of Domain. 
171 (In the database, Domain is stored as varchar(64).)
172
173
174
175 =head2 SetDomain VALUE
176
177
178 Set Domain to VALUE. 
179 Returns (1, 'Status message') on success and (0, 'Error Message') on failure.
180 (In the database, Domain will be stored as a varchar(64).)
181
182
183 =cut
184
185
186 =head2 Type
187
188 Returns the current value of Type. 
189 (In the database, Type is stored as varchar(64).)
190
191
192
193 =head2 SetType VALUE
194
195
196 Set Type to VALUE. 
197 Returns (1, 'Status message') on success and (0, 'Error Message') on failure.
198 (In the database, Type will be stored as a varchar(64).)
199
200
201 =cut
202
203
204 =head2 Instance
205
206 Returns the current value of Instance. 
207 (In the database, Instance is stored as int(11).)
208
209
210
211 =head2 SetInstance VALUE
212
213
214 Set Instance to VALUE. 
215 Returns (1, 'Status message') on success and (0, 'Error Message') on failure.
216 (In the database, Instance will be stored as a int(11).)
217
218
219 =cut
220
221
222
223 sub _CoreAccessible {
224     {
225      
226         id =>
227                 {read => 1, sql_type => 4, length => 11,  is_blob => 0,  is_numeric => 1,  type => 'int(11)', default => ''},
228         Name => 
229                 {read => 1, write => 1, sql_type => 12, length => 200,  is_blob => 0,  is_numeric => 0,  type => 'varchar(200)', default => ''},
230         Description => 
231                 {read => 1, write => 1, sql_type => 12, length => 255,  is_blob => 0,  is_numeric => 0,  type => 'varchar(255)', default => ''},
232         Domain => 
233                 {read => 1, write => 1, sql_type => 12, length => 64,  is_blob => 0,  is_numeric => 0,  type => 'varchar(64)', default => ''},
234         Type => 
235                 {read => 1, write => 1, sql_type => 12, length => 64,  is_blob => 0,  is_numeric => 0,  type => 'varchar(64)', default => ''},
236         Instance => 
237                 {read => 1, write => 1, sql_type => 4, length => 11,  is_blob => 0,  is_numeric => 1,  type => 'int(11)', default => ''},
238
239  }
240 };
241
242
243         eval "require RT::Group_Overlay";
244         if ($@ && $@ !~ qr{^Can't locate RT/Group_Overlay.pm}) {
245             die $@;
246         };
247
248         eval "require RT::Group_Vendor";
249         if ($@ && $@ !~ qr{^Can't locate RT/Group_Vendor.pm}) {
250             die $@;
251         };
252
253         eval "require RT::Group_Local";
254         if ($@ && $@ !~ qr{^Can't locate RT/Group_Local.pm}) {
255             die $@;
256         };
257
258
259
260
261 =head1 SEE ALSO
262
263 This class allows "overlay" methods to be placed
264 into the following files _Overlay is for a System overlay by the original author,
265 _Vendor is for 3rd-party vendor add-ons, while _Local is for site-local customizations.  
266
267 These overlay files can contain new subs or subs to replace existing subs in this module.
268
269 Each of these files should begin with the line 
270
271    no warnings qw(redefine);
272
273 so that perl does not kick and scream when you redefine a subroutine or variable in your overlay.
274
275 RT::Group_Overlay, RT::Group_Vendor, RT::Group_Local
276
277 =cut
278
279
280 1;