Skip to content
Snippets Groups Projects
Agent.java 135 B
package agents;

import behaviors.Cyclic;

public sealed interface Agent
permits CyclicAgent, ThreePhasedAgent{

    String getId();
}