Package com.esri.gpt.server.assertion.handler

Examples of com.esri.gpt.server.assertion.handler.AsnOperationHandler


       
    // determine the operation, make the operation handler
    AsnConfig config = this.getConfiguration();
    AsnOperation operation = config.getOperations().makeOperation(context);
    context.setOperation(operation);
    AsnOperationHandler opHandler = operation.makeHandler(context);
    if (operation.getIndexReference() != null) {
      if (!operation.getIndexReference().getEnabled()) {
        String msg = "This index is disabled: "+operation.getIndexReference().getName();
        throw new AsnInvalidOperationException(msg);
      }
      opHandler.setIndexAdapter(operation.getIndexReference().makeIndexAdapter(context));
    }
   
    // establish the system part
    if (operation.getSystemPart() == null) {
      operation.setSystemPart(new AsnSystemPart());
View Full Code Here

TOP

Related Classes of com.esri.gpt.server.assertion.handler.AsnOperationHandler

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.