Sho SHIMIZU
Committed by Gerrit Code Review

Add @Beta annotation because APIs is not stabilized yet

Change-Id: Id6111180be6c21a5287e2b53abacdfb43931abd4
...@@ -15,10 +15,12 @@ ...@@ -15,10 +15,12 @@
15 */ 15 */
16 package org.onosproject.net.resource.device; 16 package org.onosproject.net.resource.device;
17 17
18 +import com.google.common.annotations.Beta;
18 import org.onosproject.net.intent.IntentId; 19 import org.onosproject.net.intent.IntentId;
19 20
20 import java.util.Set; 21 import java.util.Set;
21 22
23 +@Beta
22 public interface IntentSetMultimap { 24 public interface IntentSetMultimap {
23 25
24 /** 26 /**
......
...@@ -15,6 +15,7 @@ ...@@ -15,6 +15,7 @@
15 */ 15 */
16 package org.onosproject.store.resource.impl; 16 package org.onosproject.store.resource.impl;
17 17
18 +import com.google.common.annotations.Beta;
18 import org.apache.felix.scr.annotations.Activate; 19 import org.apache.felix.scr.annotations.Activate;
19 import org.apache.felix.scr.annotations.Component; 20 import org.apache.felix.scr.annotations.Component;
20 import org.apache.felix.scr.annotations.Deactivate; 21 import org.apache.felix.scr.annotations.Deactivate;
...@@ -42,6 +43,7 @@ import static org.slf4j.LoggerFactory.getLogger; ...@@ -42,6 +43,7 @@ import static org.slf4j.LoggerFactory.getLogger;
42 */ 43 */
43 @Component(immediate = true, enabled = true) 44 @Component(immediate = true, enabled = true)
44 @Service 45 @Service
46 +@Beta
45 public class ConsistentIntentSetMultimap implements IntentSetMultimap { 47 public class ConsistentIntentSetMultimap implements IntentSetMultimap {
46 private final Logger log = getLogger(getClass()); 48 private final Logger log = getLogger(getClass());
47 49
......