View Javadoc
1 package org.smartcomps.twister.engine.priv.core.dynamic; 2 3 /*** 4 * A pair of key/value hold by a process instance to form the key of this 5 * instance. Therefore a process instance can be found using the values 6 * of its ValuedProperty objects, uniquely when they are grouped through 7 * a CorrelationSet. 8 * @see org.smartcomps.twister.engine.priv.core.dynamic.ProcessInstance, org.smartcomps.twister.engine.priv.core.definition.CorrelationRef 9 */ 10 public interface ValuedProperty { 11 12 public String getName(); 13 public void setName(String name); 14 15 public String getValue(); 16 public void setValue(String value); 17 18 }

This page was automatically generated by Maven