Package org.apache.ambari.server.controller.internal

Examples of org.apache.ambari.server.controller.internal.RequestOperationLevel


    return foundedOSSpecifics;
  }

  private ActionExecutionContext getActionExecutionContext
          (ExecuteActionRequest actionRequest) throws AmbariException {
    RequestOperationLevel operationLevel = actionRequest.getOperationLevel();
    if (actionRequest.isCommand()) {
      ActionExecutionContext actionExecutionContext =
              new ActionExecutionContext(actionRequest.getClusterName(),
              actionRequest.getCommandName(), actionRequest.getResourceFilters(),
              actionRequest.getParameters());
View Full Code Here


        this.resourceFilters.add(resourceFilter);
      }
    }
    RequestOperationLevelEntity operationLevelEntity = entity.getRequestOperationLevel();
    if (operationLevelEntity != null) {
      this.operationLevel = new RequestOperationLevel(
          Resource.Type.valueOf(operationLevelEntity.getLevel()),
        operationLevelEntity.getClusterName(),
        operationLevelEntity.getServiceName(),
        operationLevelEntity.getHostComponentName(),
        operationLevelEntity.getHostName()
View Full Code Here

TOP

Related Classes of org.apache.ambari.server.controller.internal.RequestOperationLevel

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.