Packageorg.springextensions.actionscript.cairngorm.business
SVN browsingAbstractBusinessDelegate.as
FisheyeAbstractBusinessDelegate.as
Classpublic class AbstractBusinessDelegate
ImplementsIBusinessDelegate
SubclassesAbstractDataTranslatorAwareBusinessDelegate

AbstractBusinessDelegate acts as a base class for business delegates. It defines a "service" and a "responder" property.



Public Properties
 PropertyDefined by
  responder : IResponder
Returns the current IResponder iinstance for this delegate.
AbstractBusinessDelegate
  service : *
Returns the current service for this delegate.
AbstractBusinessDelegate
Public Methods
 MethodDefined by
  
AbstractBusinessDelegate(service:* = null, responder:IResponder = null)
Creates a new AbstractBusinessDelegate object.
AbstractBusinessDelegate
Property detail
responderproperty
responder:IResponder  [read-write]

Returns the current IResponder iinstance for this delegate.

Implementation
    public function get responder():IResponder
    public function set responder(value:IResponder):void
serviceproperty 
service:*  [read-write]

Returns the current service for this delegate.

Implementation
    public function get service():*
    public function set service(value:*):void
Constructor detail
AbstractBusinessDelegate()constructor
public function AbstractBusinessDelegate(service:* = null, responder:IResponder = null)

Creates a new AbstractBusinessDelegate object.

Parameters
service:* (default = null) — the service
 
responder:IResponder (default = null) — the responder that will handle the remote call