Package org.linkedin.glu.orchestration.engine.delta.impl

Examples of org.linkedin.glu.orchestration.engine.delta.impl.InternalSystemEntryDelta


                                     int distance)
  {
    Transition transition = addTransition(entryDelta, action, toState, false);
    if(distance > 0)
    {
      InternalSystemEntryDelta parentEntryDelta =
        _systemModelDelta.findExpectedParentEntryDelta(entryDelta.getKey());
      if(parentEntryDelta != null)
      {
        Transition parentTransition =
          addTransition(parentEntryDelta, action, toState, true);
View Full Code Here


  @Override
  @SuppressWarnings("unchecked")
  public void addSteps(ICompositeStepBuilder<ActionDescriptor> builder)
  {
    InternalSystemEntryDelta entryDelta = getSystemEntryDelta();

    if(entryDelta == null)
      return;

    InternalActionDescriptor actionDescriptor;

    if(INSTALL_SCRIPT_ACTION.equals(getAction()))
    {
      ScriptLifecycleInstallActionDescriptor ad = new ScriptLifecycleInstallActionDescriptor();
      SystemEntry expectedEntry = entryDelta.getExpectedEntry();
      if(!expectedEntry.isDefaultParent())
        ad.setParent(expectedEntry.getParent());
      ad.setScript(expectedEntry.getScript());
      Map initParameters = (Map) expectedEntry.getInitParameters();
      if(initParameters == null)
View Full Code Here

TOP

Related Classes of org.linkedin.glu.orchestration.engine.delta.impl.InternalSystemEntryDelta

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.