Changeset 1307

Show
Ignore:
Timestamp:
01/28/08 01:22:29 (6 months ago)
Author:
mikey
Message:

fixed several class loading issues

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/main/php/net/stubbles/auth/storage/stubAuthStorage.php

    r755 r1307  
    77 * @subpackage  auth_storage 
    88 */ 
     9stubClassLoader::load('net::stubbles::auth::stubAuthResult'); 
    910/** 
    1011 * Interface for storing the authentication result. 
  • trunk/src/main/php/net/stubbles/auth/strategy/stubAuthFailOverStrategy.php

    r1281 r1307  
    77 * @subpackage  auth_strategy 
    88 */ 
    9 stubClassLoader::load('net::stubbles::auth::strategy::stubAuthStrategy'); 
     9stubClassLoader::load('net::stubbles::auth::stubAuthResult', 
     10                      'net::stubbles::auth::strategy::stubAuthStrategy' 
     11); 
    1012/** 
    1113 * Authentication strategy that uses the first authenticator and the other only if the first fails. 
  • trunk/src/main/php/net/stubbles/auth/strategy/stubAuthOrStrategy.php

    r1235 r1307  
    77 * @subpackage  auth_strategy 
    88 */ 
    9 stubClassLoader::load('net::stubbles::auth::strategy::stubAuthStrategy'); 
     9stubClassLoader::load('net::stubbles::auth::stubAuthResult', 
     10                      'net::stubbles::auth::strategy::stubAuthStrategy' 
     11); 
    1012/** 
    1113 * Authentication strategy that tries all authenticators until one was successful or all have been used. 
  • trunk/src/main/php/net/stubbles/auth/strategy/stubAuthStrategy.php

    r754 r1307  
    77 * @subpackage  auth_strategy 
    88 */ 
     9stubClassLoader::load('net::stubbles::auth::authenticators::stubAuthenticator'); 
    910/** 
    1011 * Interface for authentification strategies. 
  • trunk/src/main/php/net/stubbles/events/stubLazyEventListener.php

    r1301 r1307  
    77 * @subpackage  events 
    88 */ 
    9 stubClassLoader::load('net::stubbles::events::stubEventListener'); 
     9stubClassLoader::load('net::stubbles::events::stubEvent', 
     10                      'net::stubbles::events::stubEventListener' 
     11); 
    1012/** 
    1113 * Class for lazy loading of concrete event listeners. 
  • trunk/src/main/php/net/stubbles/ipo/request/broker/annotations/stubAbstractFilterAnnotation.php

    r1232 r1307  
    77 * @subpackage  ipo_request_broker_annotations 
    88 */ 
    9 stubClassLoader::load('net::stubbles::reflection::annotations::stubAnnotation', 
     9stubClassLoader::load('net::stubbles::ipo::request::broker::stubRequestBrokerException', 
     10                      'net::stubbles::ipo::request::broker::annotations::stubFilterAnnotation', 
     11                      'net::stubbles::reflection::annotations::stubAnnotation', 
    1012                      'net::stubbles::reflection::annotations::stubAbstractAnnotation', 
    11                       'net::stubbles::ipo::request::broker::stubRequestBrokerException', 
    12                       'net::stubbles::ipo::request::broker::annotations::stubFilterAnnotation' 
     13                      'net::stubbles::reflection::stubReflectionClass' 
    1314); 
    1415/** 
  • trunk/src/main/php/net/stubbles/ipo/request/filters/stubAbstractStringFilter.php

    r1223 r1307  
    88 */ 
    99stubClassLoader::load('net::stubbles::ipo::request::filters::stubAbstractFilter', 
    10                       'net::stubbles::php::string::stubStringEncoder' 
     10                      'net::stubbles::php::string::stubStringEncoder', 
     11                      'net::stubbles::util::validators::stubValidator' 
    1112); 
    1213/** 
  • trunk/src/main/php/net/stubbles/ipo/request/filters/stubMailFilter.php

    r1301 r1307  
    77 * @subpackage  ipo_request_filters 
    88 */ 
    9 stubClassLoader::load('net::stubbles::ipo::request::filters::stubAbstractFilter'); 
     9stubClassLoader::load('net::stubbles::ipo::request::filters::stubAbstractFilter', 
     10                      'net::stubbles::util::validators::stubValidator' 
     11); 
    1012/** 
    1113 * Class for filtering mail addresses. 
  • trunk/src/main/php/net/stubbles/ipo/request/filters/stubPasswordFilter.php

    r1223 r1307  
    88 */ 
    99stubClassLoader::load('net::stubbles::ipo::request::filters::stubAbstractFilter', 
    10                       'net::stubbles::php::string::stubStringEncoder' 
     10                      'net::stubbles::php::string::stubStringEncoder', 
     11                      'net::stubbles::util::validators::stubValidator' 
    1112); 
    1213/** 
  • trunk/src/main/php/net/stubbles/ipo/request/filters/stubStringFilter.php

    r1223 r1307  
    88 */ 
    99stubClassLoader::load('net::stubbles::ipo::request::filters::stubAbstractStringFilter', 
    10                       'net::stubbles::ipo::request::filters::stubSimpleStringFilter' 
     10                      'net::stubbles::ipo::request::filters::stubSimpleStringFilter', 
     11                      'net::stubbles::util::validators::stubValidator' 
    1112); 
    1213/** 
  • trunk/src/main/php/net/stubbles/php/serializer/stubPHPSerializer.php

    r1281 r1307  
    1313                      'net::stubbles::php::serializer::stubPHPSerializerObjectMapping', 
    1414                      'net::stubbles::php::serializer::stubPHPSerializerSPLSerializableMapping', 
    15                       'net::stubbles::php::serializer::stubUnknownObject' 
     15                      'net::stubbles::php::serializer::stubUnknownObject', 
     16                      'net::stubbles::reflection::stubReflectionObject' 
    1617); 
    1718/** 
  • trunk/src/main/php/net/stubbles/php/string/stubAbstractStringEncoder.php

    r1224 r1307  
    77 * @subpackage  php_string 
    88 */ 
    9 stubClassLoader::load('net::stubbles::php::string::stubStringEncoder'); 
     9stubClassLoader::load('net::stubbles::lang::exceptions::stubIllegalArgumentException', 
     10                      'net::stubbles::php::string::stubStringEncoder' 
     11); 
    1012/** 
    1113 * Abstract base implementation for string encoders. 
  • trunk/src/main/php/net/stubbles/rdbms/persistence/eraser/stubDatabaseEraser.php

    r1303 r1307  
    77 * @subpackage  rdbms_persistence_eraser 
    88 */ 
    9 stubClassLoader::load('net::stubbles::rdbms::stubDatabaseConnection', 
     9stubClassLoader::load('net::stubbles::lang::exceptions::stubIllegalArgumentException', 
     10                      'net::stubbles::rdbms::stubDatabaseConnection', 
    1011                      'net::stubbles::rdbms::criteria::stubCriterion', 
    1112                      'net::stubbles::rdbms::criteria::stubAndCriterion', 
  • trunk/src/main/php/net/stubbles/reflection/annotations/parser/stubAnnotationStateParser.php

    r1301 r1307  
    88 * @subpackage  reflection_annotations_parser 
    99 */ 
    10 stubClassLoader::load('net::stubbles::reflection::annotations::parser::stubAnnotationParser', 
     10stubClassLoader::load('net::stubbles::reflection::stubReflectionClass', 
     11                      'net::stubbles::reflection::annotations::parser::stubAnnotationParser', 
    1112                      'net::stubbles::reflection::annotations::parser::state::stubAnnotationArgumentState', 
    1213                      'net::stubbles::reflection::annotations::parser::state::stubAnnotationDocblockState', 
  • trunk/src/main/php/net/stubbles/reflection/stubReflectionPackage.php

    r1301 r1307  
    77 * @subpackage  reflection 
    88 */ 
    9 stubClassLoader::load('net::stubbles::reflection::stubBaseReflectionClass'); 
     9stubClassLoader::load('net::stubbles::reflection::stubBaseReflectionClass', 
     10                      'net::stubbles::reflection::stubReflectionClass' 
     11); 
    1012/** 
    1113 * Extended Reflection class for packages. 
  • trunk/src/main/php/net/stubbles/service/soap/stubSoapClient.php

    r1226 r1307  
    88 */ 
    99stubClassLoader::load('net::stubbles::service::soap::stubSoapClientConfiguration', 
    10                       'net::stubbles::service::soap::stubSoapException', 
    11                       'net::stubbles::util::net::http::stubHTTPURL' 
     10                      'net::stubbles::service::soap::stubSoapException' 
    1211); 
    1312/** 
  • trunk/src/main/php/net/stubbles/service/soap/stubSoapClientConfiguration.php

    r1301 r1307  
    77 * @subpackage  service_soap 
    88 */ 
    9 stubClassLoader::load('net::stubbles::lang::exceptions::stubIllegalArgumentException'); 
     9stubClassLoader::load('net::stubbles::lang::exceptions::stubIllegalArgumentException', 
     10                      'net::stubbles::util::net::http::stubHTTPURL' 
     11); 
    1012/** 
    1113 * Configuration container for SOAP clients. 
  • trunk/src/main/php/net/stubbles/util/cache/stubAbstractCacheContainer.php

    r742 r1307  
    77 * @subpackage  util_cache 
    88 */ 
     9stubClassLoader::load('net::stubbles::util::cache::stubCacheContainer'); 
    910/** 
    1011 * Abstract base class for cache containers. 
     
    1314 * @subpackage  util_cache 
    1415 */ 
    15 abstract class stubAbstractCacheContainer extends stubSerializableObject 
     16abstract class stubAbstractCacheContainer extends stubSerializableObject implements stubCacheContainer 
    1617{ 
    1718    /** 
  • trunk/src/main/php/net/stubbles/util/stubRegistryXJConfInitializer.php

    r1281 r1307  
    77 * @subpackage  util 
    88 */ 
    9 stubClassLoader::load('net::stubbles::util::stubRegistry', 
     9stubClassLoader::load('net::stubbles::lang::exceptions::stubIllegalArgumentException', 
     10                      'net::stubbles::util::stubRegistry', 
    1011                      'net::stubbles::util::stubRegistryInitializer', 
    1112                      'net::stubbles::util::xjconf::xjconf' 
  • trunk/src/main/php/net/stubbles/util/xjconf/stubXJConfInitializer.php

    r1281 r1307  
    88 * @subpackage  util_xjconf 
    99 */ 
     10stubClassLoader::load('net::stubbles::util::xjconf::stubXJConfFacade'); 
    1011/** 
    1112 * Common interface for XJConf based initializers and factories that use the 
  • trunk/src/main/php/net/stubbles/util/xjconf/stubXJConfProxy.php

    r1301 r1307  
    77 * @subpackage  util_xjconf 
    88 */ 
    9 stubClassLoader::load('net::stubbles::util::stubFactory'); 
     9stubClassLoader::load('net::stubbles::util::stubFactory', 
     10                      'net::stubbles::util::xjconf::stubXJConfInitializer' 
     11); 
    1012/** 
    1113 * Proxy for XJConf. 
  • trunk/src/main/php/net/stubbles/websites/cache/stubWebsiteCache.php

    r1301 r1307  
    88 */ 
    99stubClassLoader::load('net::stubbles::ipo::request::stubRequest', 
    10                       'net::stubbles::ipo::response::stubResponse' 
     10                      'net::stubbles::ipo::response::stubResponse', 
     11                      'net::stubbles::ipo::session::stubSession' 
    1112); 
    1213/** 
  • trunk/src/main/php/net/stubbles/websites/xml/stubXMLProcessor.php

    r1256 r1307  
    1010stubClassLoader::load('net::stubbles::websites::processors::stubAbstractPageProcessor', 
    1111                      'net::stubbles::websites::xml::stubXMLResponse', 
     12                      'net::stubbles::ioc::stubBinder', 
    1213                      'net::stubbles::ipo::request::stubRequestPrefixDecorator', 
    1314                      'net::stubbles::ipo::response::stubBaseResponse', 
     15                      'net::stubbles::util::stubRegistry', 
    1416                      'net::stubbles::util::validators::stubRegexValidator', 
    1517                      'net::stubbles::xml::stubXMLStreamWriterFactory', 
  • trunk/src/main/php/net/stubbles/xml/serializer/annotations/stubXMLMatcherAnnotation.php

    r1301 r1307  
    99stubClassLoader::load('net::stubbles::reflection::annotations::stubAnnotation', 
    1010                      'net::stubbles::reflection::annotations::stubAbstractAnnotation', 
     11                      'net::stubbles::xml::stubXMLException', 
    1112                      'net::stubbles::xml::serializer::annotations::stubXMLMethodsAnnotation', 
    1213                      'net::stubbles::xml::serializer::annotations::stubXMLPropertiesAnnotation' 
  • trunk/src/test/AllTests.php

    r1305 r1307  
    6969        $suite->addTestSuite('RDBMSTestSuite'); 
    7070        $suite->addTestSuite('ReflectionTestSuite'); 
     71        $suite->addTestSuite('ServiceTestSuite'); 
    7172        $suite->addTestSuite('UtilTestSuite'); 
    72         $suite->addTestSuite('ServiceTestSuite'); 
    7373        $suite->addTestSuite('WebsitesTestSuite'); 
    7474        $suite->addTestSuite('VariantManagerTestSuite'); 
  • trunk/src/test/php/net/stubbles/events/stubLazyEventListenerTestCase.php

    r1235 r1307  
    99stubClassLoader::load('net::stubbles::events::stubLazyEventListener'); 
    1010require_once dirname(__FILE__) . '/TestStubCallback.php'; 
     11require_once dirname(__FILE__) . '/TestStubEventListener.php'; 
    1112class TeststubLazyEventListener extends stubLazyEventListener 
    1213{ 
  • trunk/src/test/php/net/stubbles/rdbms/persistence/eraser/stubDatabaseEraserTestCase.php

    r1303 r1307  
    77 * @subpackage  rdbms_persistence_eraser_test 
    88 */ 
    9 stubClassLoader::load('net::stubbles::rdbms::persistence::eraser::stubDatabaseEraser'); 
     9stubClassLoader::load('net::stubbles::rdbms::persistence::eraser::stubDatabaseEraser', 
     10                      'net::stubbles::rdbms::stubDatabaseResult' 
     11); 
    1012require_once dirname(__FILE__) . '/../../querybuilder/TeststubDatabaseQueryBuilder.php'; 
    1113require_once dirname(__FILE__) . '/../MockNoEntityAnnotationEntity.php'; 
  • trunk/src/test/php/net/stubbles/rdbms/persistence/finder/stubDatabaseFinderTestCase.php

    r1303 r1307  
    77 * @subpackage  rdbms_persistence_finder_test 
    88 */ 
    9 stubClassLoader::load('net::stubbles::rdbms::persistence::finder::stubDatabaseFinder'); 
     9stubClassLoader::load('net::stubbles::rdbms::persistence::finder::stubDatabaseFinder', 
     10                      'net::stubbles::rdbms::stubDatabaseResult' 
     11); 
    1012require_once dirname(__FILE__) . '/../../querybuilder/TeststubDatabaseQueryBuilder.php'; 
    1113require_once dirname(__FILE__) . '/../MockNoTableAnnotationEntity.php'; 
  • trunk/src/test/php/net/stubbles/reflection/stubReflectionParameterTestCase.php

    r1305 r1307  
    77 * @subpackage  reflection_test 
    88 */ 
    9 stubClassLoader::load('net::stubbles::reflection::stubReflectionParameter'); 
     9stubClassLoader::load('net::stubbles::reflection::stubReflectionParameter', 
     10                      'net::stubbles::reflection::annotations::stubAbstractAnnotation' 
     11); 
    1012/** 
    1113 * annotation for parameters 
  • trunk/src/test/php/net/stubbles/xml/serializer/annotations/stubXMLMatcherAnnotationTestCase.php

    r1271 r1307  
    77 * @subpackage  xml_test 
    88 */ 
    9 stubClassLoader::load('net::stubbles::xml::serializer::annotations::stubXMLMatcherAnnotation'); 
     9stubClassLoader::load('net::stubbles::xml::serializer::annotations::stubXMLMatcherAnnotation', 
     10                      'net::stubbles::reflection::stubReflectionMethod', 
     11                      'net::stubbles::reflection::stubReflectionProperty' 
     12); 
    1013 
    1114/** 
  • trunk/src/test/php/net/stubbles/xml/xsl/util/stubXSLImageDimensionsTestCase.php

    r1271 r1307  
    77 * @subpackage  xml_xsl_util_test 
    88 */ 
    9 stubClassLoader::load('net::stubbles::xml::xsl::util::stubXSLImageDimensions'); 
     9stubClassLoader::load('net::stubbles::xml::xsl::util::stubXSLImageDimensions', 
     10                      'net::stubbles::xml::stubDomXMLStreamWriter' 
     11); 
    1012/** 
    1113 * Test for net::stubbles::xml::xsl::util::stubXSLImageDimensions.