blob: 10c0c7525f85271744ee420cf8ec99eaf4f864d8 [file] [log] [blame]
package org.onlab.onos.core;
/**
* Application identifier.
*/
public interface ApplicationId {
/**
* Returns the application id.
* @return a short value
*/
short id();
/**
* Returns the applications supplied identifier.
* @return a string identifier
*/
String name();
}