eZ Publish  [4.0]
ezsoapparameter.php
Go to the documentation of this file.
00001 <?php
00002 //
00003 // $Id$
00004 //
00005 // Definition of eZSOAPParameter class
00006 //
00007 // Created on: <28-Feb-2002 17:07:23 bf>
00008 //
00009 // ## BEGIN COPYRIGHT, LICENSE AND WARRANTY NOTICE ##
00010 // SOFTWARE NAME: eZ Publish
00011 // SOFTWARE RELEASE: 4.0.x
00012 // COPYRIGHT NOTICE: Copyright (C) 1999-2008 eZ Systems AS
00013 // SOFTWARE LICENSE: GNU General Public License v2.0
00014 // NOTICE: >
00015 //   This program is free software; you can redistribute it and/or
00016 //   modify it under the terms of version 2.0  of the GNU General
00017 //   Public License as published by the Free Software Foundation.
00018 //
00019 //   This program is distributed in the hope that it will be useful,
00020 //   but WITHOUT ANY WARRANTY; without even the implied warranty of
00021 //   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00022 //   GNU General Public License for more details.
00023 //
00024 //   You should have received a copy of version 2.0 of the GNU General
00025 //   Public License along with this program; if not, write to the Free
00026 //   Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
00027 //   MA 02110-1301, USA.
00028 //
00029 //
00030 // ## END COPYRIGHT, LICENSE AND WARRANTY NOTICE ##
00031 //
00032 
00033 //!! eZSOAP
00034 //! eZSOAPParameter handles parameters to SOAP requests
00035 /*!
00036   \code
00037 
00038   \endcode
00039 */
00040 
00041 
00042 class eZSOAPParameter
00043 {
00044     /*!
00045       Creates a new SOAP parameter object.
00046     */
00047     function eZSOAPParameter( $name, $value)
00048     {
00049         $this->Name = $name;
00050         $this->Value = $value;
00051     }
00052 
00053     /*!
00054       Sets the parameter name.
00055     */
00056     function setName( $name )
00057     {
00058         $this->Name = $name;
00059     }
00060 
00061     /*!
00062       Returns the parameter name.
00063     */
00064     function name()
00065     {
00066         return $this->Name;
00067     }
00068 
00069     /*!
00070       Sets the parameter value
00071     */
00072     function setValue( $value )
00073     {
00074 
00075     }
00076 
00077     /*!
00078       Returns the parameter value.
00079     */
00080     function value()
00081     {
00082         return $this->Value;
00083     }
00084 
00085     /// The name of the parameter
00086     public $Name;
00087 
00088     /// The parameter value
00089     public $Value;
00090 }
00091 
00092 ?>