[system] / branches / rel-2-4-patches / webwork2 / lib / WebworkSOAP / Classes / Password.pm Repository:
ViewVC logotype

View of /branches/rel-2-4-patches/webwork2/lib/WebworkSOAP/Classes/Password.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 6063 - (download) (as text) (annotate)
Fri Jun 26 00:37:00 2009 UTC (3 years, 10 months ago) by gage
File size: 414 byte(s)
syncing with HEAD

    1 package WebworkSOAP::Classes::Password;
    2 
    3 =pod
    4 =begin WSDL
    5         _ATTR user_id       $string user_id
    6         _ATTR password      $string password
    7 =end WSDL
    8 =cut
    9 sub new {
   10     my $self = shift;
   11     my $data = shift;
   12     $self = {};
   13     $self->{user_id} = SOAP::Data->type( 'string', $data->user_id );
   14     $self->{password} = SOAP::Data->type( 'string', $data->password );
   15     bless $self;
   16     return $self;
   17 }
   18 
   19 
   20 1;

aubreyja at gmail dot com
ViewVC Help
Powered by ViewVC 1.0.9