This commit was generated by cvs2svn to compensate for changes in r2523,
[freeside.git] / rt / lib / RT / Condition / AnyTransaction.pm
1 # $Header: /home/cvs/cvsroot/freeside/rt/lib/RT/Condition/AnyTransaction.pm,v 1.1 2002-08-12 06:17:07 ivan Exp $
2 # Copyright 1996-2001 Jesse Vincent <jesse@fsck.com> 
3 # Released under the terms of the GNU General Public License
4
5 package RT::Condition::AnyTransaction;
6 require RT::Condition::Generic;
7
8 @ISA = qw(RT::Condition::Generic);
9
10
11 =head2 IsApplicable
12
13 This happens on every transaction. it's always applicable
14
15 =cut
16
17 sub IsApplicable {
18     my $self = shift;
19     return(1);
20 }
21
22 1;
23