Package org.platformlayer.core.model

Examples of org.platformlayer.core.model.ConfigureAction


  @Override
  public JobData notifyChange(ProjectAuthorization auth, PlatformLayerKey itemKey, ManagedItemState newState)
      throws OpsException {
    switch (newState) {
    case CREATION_REQUESTED: {
      ConfigureAction action = new ConfigureAction();
      return operations.enqueueOperation(action, auth, itemKey);
    }

    case DELETE_REQUESTED: {
      DeleteAction action = new DeleteAction();
View Full Code Here


    super("configure");
  }

  @Override
  public Object runCommand() throws PlatformLayerClientException {
    ConfigureAction action = new ConfigureAction();
    return runAction(path, action);
  }
View Full Code Here

TOP

Related Classes of org.platformlayer.core.model.ConfigureAction

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.