Package com.iisigroup.cap.operation

Examples of com.iisigroup.cap.operation.Operation


*/
public abstract class FormHandler extends HandlerPlugin {

  @Override
  public IResult execute(IRequest params) {
    Operation oper = getOperation();
    if (oper != null) {
      OpStepContext ctx = new OpStepContext(OperationStep.NEXT);
      oper.execute(ctx, params, this);
      return ctx.getResult();
    }
    return null;
  }
View Full Code Here


    return null;
  }

  @Override
  public IResult execute(IRequest params) {
    Operation oper = getOperation(params);
    if (oper != null) {
      OpStepContext ctx = new OpStepContext(OperationStep.NEXT);
      oper.execute(ctx, params, this);
      return ctx.getResult();
    }
    return null;
  }// ;
View Full Code Here

TOP

Related Classes of com.iisigroup.cap.operation.Operation

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.