/[cwmp]/google/trunk/lib/CWMP/Methods.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /google/trunk/lib/CWMP/Methods.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 112 by dpavlin, Fri Oct 26 11:42:39 2007 UTC revision 141 by oleide, Sat Oct 27 17:57:40 2007 UTC
# Line 101  sub GetParameterNames { Line 101  sub GetParameterNames {
101          });          });
102  }  }
103    
104    =head2 GetParameterValues {
105    
106      $response->GetParameterValues( $state, $ParameterPath, $NextLevel );
107    
108    =cut
109    
110    sub GetParameterValues {
111            my ( $self, $state, $ParameterPath, $NextLevel ) = @_;
112            $ParameterPath ||= '';  # all
113            $NextLevel ||= 0;               # all
114            warn "# GetParameterValues( '$ParameterPath', $NextLevel )\n" if $self->debug;
115            $self->xml( $state, sub {
116                    my ( $X, $state ) = @_;
117    
118                    $X->GetParameterValues( $cwmp,
119                            $X->ParameterPath( $cwmp, $ParameterPath ),
120                            $X->NextLevel( $cwmp, $NextLevel ),
121                    );
122            });
123    }
124    
125  =head2 xml  =head2 xml
126    
127  Used to implement methods which modify just body of soap message.  Used to implement methods which modify just body of soap message.

Legend:
Removed from v.112  
changed lines
  Added in v.141

  ViewVC Help
Powered by ViewVC 1.1.26