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

Examples of org.linkedin.glu.orchestration.engine.delta.SystemEntryValue


        boolean isInError = entryDelta.getDeltaState() == SystemEntryDelta.DeltaState.ERROR;

        Map<String, Object> valueMap = new HashMap<String, Object>();
        for(Map.Entry<String, SystemEntryValue> entry : entryDelta.getValues().entrySet())
        {
          SystemEntryValue sev = entry.getValue();
          Object value = sev.getCurrentValue();
          if(value == null || isInError)
          {
            if(sev.getExpectedValue() != null)
              value = sev.getExpectedValue();
          }
          if(value instanceof Externable)
            value = ((Externable) value).toExternalRepresentation();
          valueMap.put(entry.getKey(), value);
        }
View Full Code Here

TOP

Related Classes of org.linkedin.glu.orchestration.engine.delta.SystemEntryValue

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.