root/lang/perl/Authen-SASL-Server/trunk/lib/Authen/SASL/Server/Result.pm
@
7466
| Revision 7466, 315 bytes (checked in by lyokato, 5 years ago) |
|---|
| Line | |
|---|---|
| 1 | package Authen::SASL::Server::Result; |
| 2 | |
| 3 | use strict; |
| 4 | use warnings; |
| 5 | |
| 6 | use base 'Class::Accessor::Fast'; |
| 7 | |
| 8 | __PACKAGE__->mk_accessors(qw( |
| 9 | type |
| 10 | message |
| 11 | )); |
| 12 | |
| 13 | sub new { |
| 14 | my ($class, %args) = @_; |
| 15 | my $self = bless { |
| 16 | type => undef, |
| 17 | message => '', |
| 18 | %args, |
| 19 | }, $class; |
| 20 | $self; |
| 21 | } |
| 22 | |
| 23 | 1; |
Note: See TracBrowser
for help on using the browser.
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)