hackedteam/rcs-console-library

View on GitHub
src/it/ht/rcs/console/update/rest/DBUpdate.as

Summary

Maintainability
Test Coverage
/**
 * This is a generated sub-class of _DBUpdate.as and is intended for behavior
 * customization.  This class is only generated when there is no file already present
 * at its target location.  Thus custom behavior that you add here will survive regeneration
 * of the super-class. 
 **/
 
package it.ht.rcs.console.update.rest
{

  import it.ht.rcs.console.DB;
  import mx.rpc.CallResponder;
  
public class DBUpdate extends _Super_DBUpdate implements IDBUpdate
{
    /**
     * Override super.init() to provide any initialization customization if needed.
     */
    protected override function preInitializeService():void
    {
        super.preInitializeService();
        // Initialization customization goes here
    }
           
    
    public function DBUpdate(host: String)
    {
      super();
      _serviceControl.baseURL = host;
    }
    
    public function all(onResult:Function=null, onFault:Function=null):void
    {
      var resp:CallResponder = DB.getCallResponder(onResult, onFault);
      resp.token = all_();
    }

    public function core_all(onResult:Function=null, onFault:Function=null):void
    {
      var resp:CallResponder = DB.getCallResponder(onResult, onFault);
      resp.token = core_all_();
    }
}

}