summaryrefslogtreecommitdiff
path: root/DNPMPlugins/src/main/java/ATCCodes/AgentCode.java
blob: 04d60650df81e5a0b9fd35c396494013064511a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package ATCCodes;

/**
 * Common Agent Code definition
 *
 * @author Paul-Christian Volkmer
 * @since 0.1.0
 */
public interface AgentCode extends Comparable<AgentCode> {
    String getCode();

    String getName();

    CodeSystem getSystem();
}