Skip to content

Commit

Permalink
Shoring up documentation and the license for release under the SLDN u…
Browse files Browse the repository at this point in the history
…ser.
  • Loading branch information
Kevin Laude committed Feb 5, 2009
1 parent d6aa659 commit fb0ba5f
Show file tree
Hide file tree
Showing 4 changed files with 122 additions and 7 deletions.
36 changes: 35 additions & 1 deletion Common/ObjectMask.class.php
@@ -1,4 +1,31 @@
<?php
/**
* Copyright (c) 2009, SoftLayer Technologies, Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* * Neither SoftLayer Technologies, Inc. nor the names of its contributors may
* be used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/

/**
* A simple object mask implementation.
Expand Down Expand Up @@ -29,10 +56,17 @@
* For more on object mask usage in the SoftLayer API please see
* http://sldn.softlayer.com/wiki/index.php/Using_Object_Masks_in_the_SoftLayer_API .
*
* The most up to date version of this library can be found on the SoftLayer
* github public repositories: http://github.com/softlayer/ . Please post to
* the SoftLayer forums <http://forums.softlayer.com/> or open a support ticket
* in the SoftLayer customer portal if you have any questions regarding use of
* this library.
*
* @author SoftLayer Technologies, Inc. <sldn@softlayer.com>
* @copyright Copyright (c) 2008, Softlayer Technologies, Inc
* @license http://creativecommons.org/licenses/by/3.0/us/ Creative Commons Attribution 3.0 US
* @license http://sldn.softlayer.com/wiki/index.php/License
* @see SoftLayer_SoapClient::setObjectMask()
* @see SoftLayer_XmlrpcClient::setObjectMask()
*/
class SoftLayer_ObjectMask
{
Expand Down
31 changes: 29 additions & 2 deletions SoapClient.class.php
@@ -1,4 +1,31 @@
<?php
/**
* Copyright (c) 2009, SoftLayer Technologies, Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* * Neither SoftLayer Technologies, Inc. nor the names of its contributors may
* be used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/

require_once dirname(__FILE__) . '/Common/ObjectMask.class.php';
require_once dirname(__FILE__) . '/SoapClient/AsynchronousAction.class.php';
Expand Down Expand Up @@ -112,14 +139,14 @@
* SoapClient/AsynchronousAction.php for details.
*
* The most up to date version of this library can be found on the SoftLayer
* Development Network wiki: http://sldn.softlayer.com/wiki/ . Please post to
* github public repositories: http://github.com/softlayer/ . Please post to
* the SoftLayer forums <http://forums.softlayer.com/> or open a support ticket
* in the SoftLayer customer portal if you have any questions regarding use of
* this library.
*
* @author SoftLayer Technologies, Inc. <sldn@softlayer.com>
* @copyright Copyright (c) 2008, Softlayer Technologies, Inc
* @license http://creativecommons.org/licenses/by/3.0/us/ Creative Commons Attribution 3.0 US
* @license http://sldn.softlayer.com/wiki/index.php/License
* @link http://sldn.softlayer.com/wiki/index.php/The_SoftLayer_API The SoftLayer API
* @see SoftLayer_SoapClient_AsynchronousAction
*/
Expand Down
31 changes: 29 additions & 2 deletions SoapClient/AsynchronousAction.class.php
@@ -1,4 +1,31 @@
<?php
/**
* Copyright (c) 2009, SoftLayer Technologies, Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* * Neither SoftLayer Technologies, Inc. nor the names of its contributors may
* be used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/

/**
* Support for asynchronous SoftLayer SOAP API calls
Expand Down Expand Up @@ -74,14 +101,14 @@
* ----------
*
* The most up to date version of this library can be found on the SoftLayer
* Development Network wiki: http://sldn.softlayer.com/wiki/ . Please post to
* github public repositories: http://github.com/softlayer/ . Please post to
* the SoftLayer forums <http://forums.softlayer.com/> or open a support ticket
* in the SoftLayer customer portal if you have any questions regarding use of
* this library.
*
* @author SoftLayer Technologies, Inc. <sldn@softlayer.com>
* @copyright Copyright (c) 2008, Softlayer Technologies, Inc
* @license http://creativecommons.org/licenses/by/3.0/us/ Creative Commons Attribution 3.0 US
* @license http://sldn.softlayer.com/wiki/index.php/License
* @see SoftLayer_SoapClient
*/
class SoftLayer_SoapClient_AsynchronousAction
Expand Down
31 changes: 29 additions & 2 deletions XmlrpcClient.class.php
@@ -1,4 +1,31 @@
<?php
/**
* Copyright (c) 2009, SoftLayer Technologies, Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* * Neither SoftLayer Technologies, Inc. nor the names of its contributors may
* be used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/

require_once dirname(__FILE__) . '/Common/ObjectMask.class.php';

Expand Down Expand Up @@ -104,14 +131,14 @@
* }
*
* The most up to date version of this library can be found on the SoftLayer
* Development Network wiki: http://sldn.softlayer.com/wiki/ . Please post to
* github public repositories: http://github.com/softlayer/ . Please post to
* the SoftLayer forums <http://forums.softlayer.com/> or open a support ticket
* in the SoftLayer customer portal if you have any questions regarding use of
* this library.
*
* @author SoftLayer Technologies, Inc. <sldn@softlayer.com>
* @copyright Copyright (c) 2008, Softlayer Technologies, Inc
* @license http://creativecommons.org/licenses/by/3.0/us/ Creative Commons Attribution 3.0 US
* @license http://sldn.softlayer.com/wiki/index.php/License
* @link http://sldn.softlayer.com/wiki/index.php/The_SoftLayer_API The SoftLayer API
* @see SoftLayer_XmlrpcClient_AsynchronousAction
*/
Expand Down

0 comments on commit fb0ba5f

Please sign in to comment.