Package rabbit.data.internal.xml.schema.events

Examples of rabbit.data.internal.xml.schema.events.CommandEventType


  public CommandEventConverter() {
  }

  @Override
  protected CommandEventType doConvert(CommandEvent element) {
    CommandEventType type = new CommandEventType();
    type.setCommandId(element.getExecutionEvent().getCommand().getId());
    type.setCount(1);
    return type;
  }
View Full Code Here


  public CommandEventTypeMerger() {
  }

  @Override
  protected CommandEventType doMerge(CommandEventType t1, CommandEventType t2) {
    CommandEventType result = new CommandEventType();
    result.setCommandId(t1.getCommandId());
    result.setCount(t1.getCount() + t2.getCount());
    return result;
  }
View Full Code Here

TOP

Related Classes of rabbit.data.internal.xml.schema.events.CommandEventType

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.