import rt 3.4.6
[freeside.git] / rt / lib / RT / GroupMember.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::GroupMember
58
59
60 =head1 SYNOPSIS
61
62 =head1 DESCRIPTION
63
64 =head1 METHODS
65
66 =cut
67
68 package RT::GroupMember;
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('GroupMembers');
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   int(11) 'GroupId'.
91   int(11) 'MemberId'.
92
93 =cut
94
95
96
97
98 sub Create {
99     my $self = shift;
100     my %args = ( 
101                 GroupId => '0',
102                 MemberId => '0',
103
104                   @_);
105     $self->SUPER::Create(
106                          GroupId => $args{'GroupId'},
107                          MemberId => $args{'MemberId'},
108 );
109
110 }
111
112
113
114 =head2 id
115
116 Returns the current value of id. 
117 (In the database, id is stored as int(11).)
118
119
120 =cut
121
122
123 =head2 GroupId
124
125 Returns the current value of GroupId. 
126 (In the database, GroupId is stored as int(11).)
127
128
129
130 =head2 SetGroupId VALUE
131
132
133 Set GroupId to VALUE. 
134 Returns (1, 'Status message') on success and (0, 'Error Message') on failure.
135 (In the database, GroupId will be stored as a int(11).)
136
137
138 =cut
139
140
141 =head2 MemberId
142
143 Returns the current value of MemberId. 
144 (In the database, MemberId is stored as int(11).)
145
146
147
148 =head2 SetMemberId VALUE
149
150
151 Set MemberId to VALUE. 
152 Returns (1, 'Status message') on success and (0, 'Error Message') on failure.
153 (In the database, MemberId will be stored as a int(11).)
154
155
156 =cut
157
158
159
160 sub _CoreAccessible {
161     {
162      
163         id =>
164                 {read => 1, sql_type => 4, length => 11,  is_blob => 0,  is_numeric => 1,  type => 'int(11)', default => ''},
165         GroupId => 
166                 {read => 1, write => 1, sql_type => 4, length => 11,  is_blob => 0,  is_numeric => 1,  type => 'int(11)', default => '0'},
167         MemberId => 
168                 {read => 1, write => 1, sql_type => 4, length => 11,  is_blob => 0,  is_numeric => 1,  type => 'int(11)', default => '0'},
169
170  }
171 };
172
173
174         eval "require RT::GroupMember_Overlay";
175         if ($@ && $@ !~ qr{^Can't locate RT/GroupMember_Overlay.pm}) {
176             die $@;
177         };
178
179         eval "require RT::GroupMember_Vendor";
180         if ($@ && $@ !~ qr{^Can't locate RT/GroupMember_Vendor.pm}) {
181             die $@;
182         };
183
184         eval "require RT::GroupMember_Local";
185         if ($@ && $@ !~ qr{^Can't locate RT/GroupMember_Local.pm}) {
186             die $@;
187         };
188
189
190
191
192 =head1 SEE ALSO
193
194 This class allows "overlay" methods to be placed
195 into the following files _Overlay is for a System overlay by the original author,
196 _Vendor is for 3rd-party vendor add-ons, while _Local is for site-local customizations.  
197
198 These overlay files can contain new subs or subs to replace existing subs in this module.
199
200 Each of these files should begin with the line 
201
202    no warnings qw(redefine);
203
204 so that perl does not kick and scream when you redefine a subroutine or variable in your overlay.
205
206 RT::GroupMember_Overlay, RT::GroupMember_Vendor, RT::GroupMember_Local
207
208 =cut
209
210
211 1;