1 package org.smartcomps.twister.engine.priv.core.definition;
2
3 import java.util.Collection;
4
5 /***
6 * A correlation set is a set of named properties used to add contextual
7 * information to a message. The goal of a correlation set is to give
8 * a stateful meaning to message exchange (for example customer ids, order
9 * number...).
10 */
11 public interface CorrelationSet {
12
13 public String getName();
14
15 public Collection getProperties();
16 }
This page was automatically generated by Maven