All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.effektif.workflow.impl.workflowinstance.VariableInstanceImpl Maven / Gradle / Ivy

/*
 * Copyright 2014 Effektif GmbH.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.effektif.workflow.impl.workflowinstance;

import com.effektif.workflow.api.workflowinstance.VariableInstance;
import com.effektif.workflow.impl.data.DataTypeImpl;
import com.effektif.workflow.impl.data.TypedValueImpl;
import com.effektif.workflow.impl.workflow.VariableImpl;


/**
 * @author Tom Baeyens
 */
public class VariableInstanceImpl extends BaseInstanceImpl {

  public String id;
  public Object value;
  public VariableImpl variable;
  public DataTypeImpl type;         // never null (initialized with the variable.type)
  public VariableInstanceUpdates updates;

  public VariableInstanceImpl() {
  }

  public VariableInstanceImpl(ScopeInstanceImpl parent, VariableImpl variable, String id) {
    super(parent);
    this.id = id;
    this.variable = variable;
  }
  
  @Override
  public String toString() {
    return "("+variable.id+"="+value+")";
  }

  public VariableInstance toVariableInstance() {
    VariableInstance variableInstance = new VariableInstance();
    // TODO Decide whether variable instance IDs are needed, and copy the id if so.
    // variableInstance.setId(id);
    variableInstance.setVariableId(variable.id);
    variableInstance.setValue(value);
    variableInstance.setType(type.serialize());
    return variableInstance;
  }

  public Object getValue() {
    return value;
  }

  public void setValue(Object value) {
    this.value = value;
    if (updates!=null) {
      updates.isValueChanged = true;
      if (parent instanceof ActivityInstanceImpl) {
        parent.propagateActivityInstanceChange();
      }
    }
  }

  public void trackUpdates(boolean isNew) {
    updates = new VariableInstanceUpdates(isNew);
  }

  public TypedValueImpl getTypedValue() {
    return new TypedValueImpl(type, value);
  }

  public String getId() {
    return this.id;
  }
  public void setId(String id) {
    this.id = id;
  }
  public VariableImpl getVariable() {
    return variable;
  }
  public DataTypeImpl getType() {
    return type;
  }
  public VariableInstanceUpdates getUpdates() {
    return updates;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy