blob: 5482c66014fc7d485b2a3dcc2d8627ee7ee482d4 [file] [log] [blame]
tom2482e6f2014-10-01 16:51:48 -07001package org.onlab.onos.net;
2
tom2482e6f2014-10-01 16:51:48 -07003/**
4 * Represents an entity that carries arbitrary annotations.
5 */
6public interface Annotated {
7
8 /**
tomf5d85d42014-10-02 05:27:56 -07009 * Returns the key/value annotations.
tom2482e6f2014-10-01 16:51:48 -070010 *
tomf5d85d42014-10-02 05:27:56 -070011 * @return key/value annotations
tom2482e6f2014-10-01 16:51:48 -070012 */
tomf5d85d42014-10-02 05:27:56 -070013 Annotations annotations();
tom2482e6f2014-10-01 16:51:48 -070014
15}