Changeset 10021
- Timestamp:
- 06/30/08 16:27:09 (2 months ago)
- Files:
-
- plugins/ckWebServicePlugin/branches/ckWsdlGenerator/ckDOMSerializable.class.php (moved) (moved from plugins/ckWebServicePlugin/branches/ckWsdlGenerator/ISerializable.class.php) (1 diff)
- plugins/ckWebServicePlugin/branches/ckWsdlGenerator/wsdl/ckWsdlBindingDecorator.class.php (modified) (2 diffs)
- plugins/ckWebServicePlugin/branches/ckWsdlGenerator/wsdl/ckWsdlHttpBindingDecorator.php (modified) (2 diffs)
- plugins/ckWebServicePlugin/branches/ckWsdlGenerator/wsdl/ckWsdlMessage.class.php (modified) (1 diff)
- plugins/ckWebServicePlugin/branches/ckWsdlGenerator/wsdl/ckWsdlOperation.class.php (modified) (1 diff)
- plugins/ckWebServicePlugin/branches/ckWsdlGenerator/wsdl/ckWsdlPart.class.php (modified) (1 diff)
- plugins/ckWebServicePlugin/branches/ckWsdlGenerator/wsdl/ckWsdlPortType.class.php (modified) (1 diff)
- plugins/ckWebServicePlugin/branches/ckWsdlGenerator/wsdl/ckWsdlSoapBindingDecorator.php (modified) (2 diffs)
- plugins/ckWebServicePlugin/branches/ckWsdlGenerator/xsd/ckXsdNamespace.class.php (modified) (2 diffs)
- plugins/ckWebServicePlugin/branches/ckWsdlGenerator/xsd/ckXsdSimpleType.php (modified) (3 diffs)
- plugins/ckWebServicePlugin/branches/ckWsdlGenerator/xsd/ckXsdType.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plugins/ckWebServicePlugin/branches/ckWsdlGenerator/ckDOMSerializable.class.php
r10020 r10021 1 1 <?php 2 /** 3 * This file is part of the ckWebServicePlugin 4 * 5 * @package ckWsdlGenerator 6 * @author Christian Kerl <christian-kerl@web.de> 7 * @copyright Copyright (c) 2008, Christian Kerl 8 * @license http://www.opensource.org/licenses/mit-license.php MIT License 9 * @version SVN: $Id: ckSoapHandler.class.php 8064 2008-03-24 16:51:45Z chrisk $ 10 */ 2 11 3 interface ISerializable 12 /** 13 * Enter description here... 14 * 15 * @package ckWsdlGenerator 16 * @author Christian Kerl <christian-kerl@web.de> 17 */ 18 interface ckDOMSerializable 4 19 { 5 20 public function serialize(DOMDocument $document); plugins/ckWebServicePlugin/branches/ckWsdlGenerator/wsdl/ckWsdlBindingDecorator.class.php
r10020 r10021 1 1 <?php 2 /** 3 * This file is part of the ckWebServicePlugin 4 * 5 * @package ckWsdlGenerator 6 * @author Christian Kerl <christian-kerl@web.de> 7 * @copyright Copyright (c) 2008, Christian Kerl 8 * @license http://www.opensource.org/licenses/mit-license.php MIT License 9 * @version SVN: $Id: ckSoapHandler.class.php 8064 2008-03-24 16:51:45Z chrisk $ 10 */ 2 11 12 /** 13 * Enter description here... 14 * 15 * @package ckWsdlGenerator 16 * @subpackage wsdl 17 * @author Christian Kerl <christian-kerl@web.de> 18 */ 3 19 abstract class ckWsdlBindingDecorator implements ISerializable 4 20 { … … 27 43 public abstract function serialize(DOMDocument $document); 28 44 } 29 30 ?>plugins/ckWebServicePlugin/branches/ckWsdlGenerator/wsdl/ckWsdlHttpBindingDecorator.php
r10020 r10021 1 1 <?php 2 /** 3 * This file is part of the ckWebServicePlugin 4 * 5 * @package ckWsdlGenerator 6 * @author Christian Kerl <christian-kerl@web.de> 7 * @copyright Copyright (c) 2008, Christian Kerl 8 * @license http://www.opensource.org/licenses/mit-license.php MIT License 9 * @version SVN: $Id: ckSoapHandler.class.php 8064 2008-03-24 16:51:45Z chrisk $ 10 */ 2 11 12 /** 13 * Enter description here... 14 * 15 * @package ckWsdlGenerator 16 * @subpackage wsdl 17 * @author Christian Kerl <christian-kerl@web.de> 18 */ 3 19 class ckWsdlHttpBindingDecorator extends ckWsdlBindingDecorator 4 20 { … … 8 24 } 9 25 } 10 11 ?>plugins/ckWebServicePlugin/branches/ckWsdlGenerator/wsdl/ckWsdlMessage.class.php
r10020 r10021 1 1 <?php 2 /** 3 * This file is part of the ckWebServicePlugin 4 * 5 * @package ckWsdlGenerator 6 * @author Christian Kerl <christian-kerl@web.de> 7 * @copyright Copyright (c) 2008, Christian Kerl 8 * @license http://www.opensource.org/licenses/mit-license.php MIT License 9 * @version SVN: $Id: ckSoapHandler.class.php 8064 2008-03-24 16:51:45Z chrisk $ 10 */ 2 11 12 /** 13 * Enter description here... 14 * 15 * @package ckWsdlGenerator 16 * @subpackage wsdl 17 * @author Christian Kerl <christian-kerl@web.de> 18 */ 3 19 class ckWsdlMessage implements ISerializable 4 20 { plugins/ckWebServicePlugin/branches/ckWsdlGenerator/wsdl/ckWsdlOperation.class.php
r10020 r10021 1 1 <?php 2 /** 3 * This file is part of the ckWebServicePlugin 4 * 5 * @package ckWsdlGenerator 6 * @author Christian Kerl <christian-kerl@web.de> 7 * @copyright Copyright (c) 2008, Christian Kerl 8 * @license http://www.opensource.org/licenses/mit-license.php MIT License 9 * @version SVN: $Id: ckSoapHandler.class.php 8064 2008-03-24 16:51:45Z chrisk $ 10 */ 2 11 12 /** 13 * Enter description here... 14 * 15 * @package ckWsdlGenerator 16 * @subpackage wsdl 17 * @author Christian Kerl <christian-kerl@web.de> 18 */ 3 19 class ckWsdlOperation implements ISerializable 4 20 { plugins/ckWebServicePlugin/branches/ckWsdlGenerator/wsdl/ckWsdlPart.class.php
r10020 r10021 1 1 <?php 2 /** 3 * This file is part of the ckWebServicePlugin 4 * 5 * @package ckWsdlGenerator 6 * @author Christian Kerl <christian-kerl@web.de> 7 * @copyright Copyright (c) 2008, Christian Kerl 8 * @license http://www.opensource.org/licenses/mit-license.php MIT License 9 * @version SVN: $Id: ckSoapHandler.class.php 8064 2008-03-24 16:51:45Z chrisk $ 10 */ 2 11 12 /** 13 * Enter description here... 14 * 15 * @package ckWsdlGenerator 16 * @subpackage wsdl 17 * @author Christian Kerl <christian-kerl@web.de> 18 */ 3 19 class ckWsdlPart implements ISerializable 4 20 { plugins/ckWebServicePlugin/branches/ckWsdlGenerator/wsdl/ckWsdlPortType.class.php
r10020 r10021 1 1 <?php 2 /** 3 * This file is part of the ckWebServicePlugin 4 * 5 * @package ckWsdlGenerator 6 * @author Christian Kerl <christian-kerl@web.de> 7 * @copyright Copyright (c) 2008, Christian Kerl 8 * @license http://www.opensource.org/licenses/mit-license.php MIT License 9 * @version SVN: $Id: ckSoapHandler.class.php 8064 2008-03-24 16:51:45Z chrisk $ 10 */ 2 11 12 /** 13 * Enter description here... 14 * 15 * @package ckWsdlGenerator 16 * @subpackage wsdl 17 * @author Christian Kerl <christian-kerl@web.de> 18 */ 3 19 class ckWsdlPortType implements ISerializable 4 20 { plugins/ckWebServicePlugin/branches/ckWsdlGenerator/wsdl/ckWsdlSoapBindingDecorator.php
r10020 r10021 1 1 <?php 2 /** 3 * This file is part of the ckWebServicePlugin 4 * 5 * @package ckWsdlGenerator 6 * @author Christian Kerl <christian-kerl@web.de> 7 * @copyright Copyright (c) 2008, Christian Kerl 8 * @license http://www.opensource.org/licenses/mit-license.php MIT License 9 * @version SVN: $Id: ckSoapHandler.class.php 8064 2008-03-24 16:51:45Z chrisk $ 10 */ 2 11 12 /** 13 * Enter description here... 14 * 15 * @package ckWsdlGenerator 16 * @subpackage wsdl 17 * @author Christian Kerl <christian-kerl@web.de> 18 */ 3 19 class ckWsdlSoapBindingDecorator extends ckWsdlBindingDecorator 4 20 { … … 8 24 } 9 25 } 10 11 ?>plugins/ckWebServicePlugin/branches/ckWsdlGenerator/xsd/ckXsdNamespace.class.php
r10020 r10021 1 1 <?php 2 /** 3 * This file is part of the ckWebServicePlugin 4 * 5 * @package ckWsdlGenerator 6 * @author Christian Kerl <christian-kerl@web.de> 7 * @copyright Copyright (c) 2008, Christian Kerl 8 * @license http://www.opensource.org/licenses/mit-license.php MIT License 9 * @version SVN: $Id: ckSoapHandler.class.php 8064 2008-03-24 16:51:45Z chrisk $ 10 */ 2 11 3 12 ckXsdNamespace::set('xsd', 'http://www.w3.org/2001/XMLSchema'); … … 6 15 ckXsdNamespace::set('wsdl', 'http://schemas.xmlsoap.org/wsdl/'); 7 16 17 /** 18 * Enter description here... 19 * 20 * @package ckWsdlGenerator 21 * @subpackage xsd 22 * @author Christian Kerl <christian-kerl@web.de> 23 */ 8 24 class ckXsdNamespace 9 25 { plugins/ckWebServicePlugin/branches/ckWsdlGenerator/xsd/ckXsdSimpleType.php
r10020 r10021 1 1 <?php 2 /** 3 * This file is part of the ckWebServicePlugin 4 * 5 * @package ckWsdlGenerator 6 * @author Christian Kerl <christian-kerl@web.de> 7 * @copyright Copyright (c) 2008, Christian Kerl 8 * @license http://www.opensource.org/licenses/mit-license.php MIT License 9 * @version SVN: $Id: ckSoapHandler.class.php 8064 2008-03-24 16:51:45Z chrisk $ 10 */ 2 11 3 12 ckXsdSimpleType::create('int'); … … 5 14 ckXsdSimpleType::create('float'); 6 15 16 /** 17 * Enter description here... 18 * 19 * @package ckWsdlGenerator 20 * @subpackage xsd 21 * @author Christian Kerl <christian-kerl@web.de> 22 */ 7 23 class ckXsdSimpleType extends ckXsdType 8 24 { … … 28 44 } 29 45 } 30 31 ?>plugins/ckWebServicePlugin/branches/ckWsdlGenerator/xsd/ckXsdType.class.php
r10020 r10021 1 1 <?php 2 /** 3 * This file is part of the ckWebServicePlugin 4 * 5 * @package ckWsdlGenerator 6 * @author Christian Kerl <christian-kerl@web.de> 7 * @copyright Copyright (c) 2008, Christian Kerl 8 * @license http://www.opensource.org/licenses/mit-license.php MIT License 9 * @version SVN: $Id: ckSoapHandler.class.php 8064 2008-03-24 16:51:45Z chrisk $ 10 */ 2 11 12 /** 13 * Enter description here... 14 * 15 * @package ckWsdlGenerator 16 * @subpackage xsd 17 * @author Christian Kerl <christian-kerl@web.de> 18 */ 3 19 abstract class ckXsdType implements ISerializable 4 20 {