blob: 1dc4b38caa7a661063ab2fc367e31ecdc8b8d051 [file] [log] [blame]
package org.onlab.onos.net;
import java.util.Set;
/**
* Represents an set of simple key/value string annotations.
*/
public interface Annotations {
/**
* Returns the set of keys for available annotations.
*
* @return annotation keys
*/
public Set<String> keys();
/**
* Returns the value of the specified annotation.
*
* @param key annotation key
* @return annotation value
*/
public String value(String key);
}