blob: 5482c66014fc7d485b2a3dcc2d8627ee7ee482d4 [file] [log] [blame]
package org.onlab.onos.net;
/**
* Represents an entity that carries arbitrary annotations.
*/
public interface Annotated {
/**
* Returns the key/value annotations.
*
* @return key/value annotations
*/
Annotations annotations();
}