Adding a note that Application ID's must be non-negative, this constraint is already written into the default implementation.

Change-Id: I4f8e9e5bb85d80d6533b4c8c7a089fe4f04dbbd4
diff --git a/core/api/src/main/java/org/onosproject/core/ApplicationId.java b/core/api/src/main/java/org/onosproject/core/ApplicationId.java
index f7f8dfa..b15c9c8 100644
--- a/core/api/src/main/java/org/onosproject/core/ApplicationId.java
+++ b/core/api/src/main/java/org/onosproject/core/ApplicationId.java
@@ -22,7 +22,7 @@
 public interface ApplicationId {
 
     /**
-     * Returns the application id.
+     * Returns the application id. This must be non-negative.
      * @return a short value
      */
     short id();