blob: 3fab53fd4e966a53979df0d5e009099a14caafa0 [file] [log] [blame]
package org.onlab.onos;
/**
* 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();
}