Skip to content

Commit

Permalink
removed troublesome properties
Browse files Browse the repository at this point in the history
  • Loading branch information
wick-ed committed Nov 27, 2014
1 parent e22feac commit b38204c
Showing 1 changed file with 8 additions and 49 deletions.
57 changes: 8 additions & 49 deletions src/AppserverIo/Appserver/Application/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,14 @@
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* @link https://github.com/appserver-io/appserver
* @link http://www.appserver.io
*
* @property \AppserverIo\Storage\StorageInterface $data Application's data storage
* @property \AppserverIo\Storage\GenericStackable $classLoaders Stackable holding all class loaders this application has registered
* @property \AppserverIo\Appserver\Application\Interfaces\ContextInterface $initialContext The initial context instance
* @property \AppserverIo\Storage\GenericStackable $managers Stackable of managers for this application
* @property string $name Name of the application
* @property \AppserverIo\Psr\Naming\NamingDirectoryInterface $namingDirectory The naming directory instance
* @property \AppserverIo\Storage\GenericStackable $virtualHosts Stackable containing all virtual hosts used for this application
*/
class Application extends \Thread implements ApplicationInterface
{
Expand All @@ -69,55 +77,6 @@ class Application extends \Thread implements ApplicationInterface
*/
const TIME_TO_LIVE = 1;

/**
* Application's data storage
*
* @var \AppserverIo\Storage\StorageInterface $data
*/
protected $data;

/**
* Stackable holding all class loaders this application has registered
*
* @var \AppserverIo\Storage\GenericStackable $classLoaders
*/
protected $classLoaders;

/**
* The initial context instance
*
* @var \AppserverIo\Appserver\Application\Interfaces\ContextInterface $initialContext
*/
protected $initialContext;

/**
* Stackable of managers for this application
*
* @var \AppserverIo\Storage\GenericStackable $managers
*/
protected $managers;

/**
* Name of the application
*
* @var string $name
*/
protected $name;

/**
* The naming directory instance
*
* @var \AppserverIo\Psr\Naming\NamingDirectoryInterface $namingDirectory
*/
protected $namingDirectory;

/**
* Stackable containing all virtual hosts used for this application
*
* @var \AppserverIo\Storage\GenericStackable $virtualHosts
*/
protected $virtualHosts;

/**
* Initializes the application context.
*/
Expand Down

0 comments on commit b38204c

Please sign in to comment.