com.patternity.graphic.behavioral.Collaboration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of smartrics-RestFixtureExtensions Show documentation
Show all versions of smartrics-RestFixtureExtensions Show documentation
Extensions of the RestFixture.
An extension is a RestFixture with some specific/bespoke behaviour not generic enough to make it to the RestFixture itself.
package com.patternity.graphic.behavioral;
import com.patternity.graphic.dag.Node;
/**
* Represents a collaboration between agents
*
* @author cyrille martraire
*/
public interface Collaboration {
void append(Node node);
}