Packageorg.springextensions.actionscript.security
SVN browsingSimpleSecurityStageProcessor.as
FisheyeSimpleSecurityStageProcessor.as
Classpublic class SimpleSecurityStageProcessor
InheritanceSimpleSecurityStageProcessor Inheritance AbstractStageProcessor

An IStageProcessor implementation that uses an ISecurityManagerFactory instance to create ISecurityManager instances for the stage components passed to its process() method.

This IStageProcessor creates a PropertyValueBasedObjectSelector by default.

See also

PropertyValueBasedObjectSelector


Documentation reference: the simplesecuritystageprocessor class

Sample project: security (source)


Public Properties
 PropertyDefined by
 Inheriteddocument : Object
The MXML document associated with the current IStageProcessor.
AbstractStageProcessor
 InheritedisDisposed : Boolean
AbstractStageProcessor
 InheritedobjectSelector : IObjectSelector
The specified IObjectSelector instance.
AbstractStageProcessor
  securityManagerFactory : ISecurityManagerFactory
The ISecurityManagerFactory implementation responsible for creating ISecurityManager instances for the stage components passed to the current SimpleSecurityStageProcessor
SimpleSecurityStageProcessor
Public Methods
 MethodDefined by
  
Creates a new SimpleSecurityStageProcessor
SimpleSecurityStageProcessor
 Inherited
dispose():void
AbstractStageProcessor
  
process(object:Object):Object
Invokes the createInstance() method on the securityManagerFactory instance with the specified object.
SimpleSecurityStageProcessor
Protected Methods
 MethodDefined by
 Inherited
AbstractStageProcessor
Property detail
securityManagerFactoryproperty
securityManagerFactory:ISecurityManagerFactory  [read-write]

The ISecurityManagerFactory implementation responsible for creating ISecurityManager instances for the stage components passed to the current SimpleSecurityStageProcessor

The default value is a SimpleSecurityManagerFactory instance.

Implementation
    public function get securityManagerFactory():ISecurityManagerFactory
    public function set securityManagerFactory(value:ISecurityManagerFactory):void

See also

Constructor detail
SimpleSecurityStageProcessor()constructor
public function SimpleSecurityStageProcessor()

Creates a new SimpleSecurityStageProcessor

Method detail
process()method
public override function process(object:Object):Object

Invokes the createInstance() method on the securityManagerFactory instance with the specified object.

Parameters
object:Object

Returns
Object

See also