Package org.dmd.dmp.shared.generated.dmo

Examples of org.dmd.dmp.shared.generated.dmo.ActionRequestDMO


        super(new ActionRequestDMO(), org.dmd.dmp.server.generated.DmpSchemaAG._ActionRequest);
    }

    // Generated from: org.dmd.dmg.generators.BaseDMWGeneratorNewest.dumpWrapper(BaseDMWGeneratorNewest.java:449)
    public ActionRequestDMW(DmcTypeModifierMV mods) {
        super(new ActionRequestDMO(mods), org.dmd.dmp.server.generated.DmpSchemaAG._ActionRequest);
    }
View Full Code Here


        value.serializeIt(dos);
    }

    @Override
    public ActionRequestDMO deserializeValue(DmcInputStreamIF dis) throws Exception {
        ActionRequestDMO rc = (ActionRequestDMO)dis.getDMOInstance(dis);
        rc.deserializeIt(dis);
        return(rc);
    }
View Full Code Here

   * This method returns a new action request that has its request ID, session and
   * action name initialized. The action name is taken from the action trigger.
   * The actionTrigger is also set on the ActionRequest
   */
  public ActionRequestDMO getActionRequest(ActionTriggerInfo ati){
    ActionRequestDMO request = new ActionRequestDMO();
    setTracking(request);
    request.addRequestID(requestID++);
    request.setSessionID(sessionID);
    request.setActionName(ati.getActionName());
    request.setActionTrigger(ati);

    return(request);
  }
View Full Code Here

            logger.finest("Having event channel priming response - cancelling timer.");
         
          primingTimer.cancel();
        }
        else{
          ActionRequestDMO request = getPrimeEventChannelRequest(new PrimeEventChannelATI());
          sendPrimeEventChannelRequest(request);
         
          if (controllerTracing)
            logger.finest("Event channel priming request sent...");
        }
View Full Code Here

   
  }
 
  @Override
    protected ActionRequestDMO getPrimeEventChannelRequest(ActionTriggerInfo ati){
        ActionRequestDMO request = this.getActionRequest(ati);
        request.setHandlerID(0);
        request.setNotifyOriginator(true);
        return(request);
    }
View Full Code Here

TOP

Related Classes of org.dmd.dmp.shared.generated.dmo.ActionRequestDMO

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.