Sho SHIMIZU
Committed by Gerrit Code Review

Describe the release in which APIs are tagged as deprecated

Change-Id: I6fd0ebba07bcc45237682e083b59a807a720b4fb
...@@ -197,6 +197,7 @@ public interface TrafficTreatment { ...@@ -197,6 +197,7 @@ public interface TrafficTreatment {
197 * 197 *
198 * @param etherType an ether type 198 * @param etherType an ether type
199 * @return a treatment builder. 199 * @return a treatment builder.
200 + * @deprecated in Drake Release
200 */ 201 */
201 @Deprecated 202 @Deprecated
202 Builder popMpls(int etherType); 203 Builder popMpls(int etherType);
...@@ -246,6 +247,7 @@ public interface TrafficTreatment { ...@@ -246,6 +247,7 @@ public interface TrafficTreatment {
246 * 247 *
247 * @param type the table type 248 * @param type the table type
248 * @return a treatement builder 249 * @return a treatement builder
250 + * @deprecated in Cardinal Release
249 */ 251 */
250 @Deprecated 252 @Deprecated
251 Builder transition(FlowRule.Type type); 253 Builder transition(FlowRule.Type type);
......
...@@ -399,6 +399,7 @@ public final class Criteria { ...@@ -399,6 +399,7 @@ public final class Criteria {
399 * 399 *
400 * @param sigType optical signal type (8 bits unsigned integer) 400 * @param sigType optical signal type (8 bits unsigned integer)
401 * @return match criterion 401 * @return match criterion
402 + * @deprecated in Cardinal Release
402 */ 403 */
403 @Deprecated 404 @Deprecated
404 public static Criterion matchOpticalSignalType(short sigType) { 405 public static Criterion matchOpticalSignalType(short sigType) {
......
...@@ -22,6 +22,8 @@ import static com.google.common.base.MoreObjects.toStringHelper; ...@@ -22,6 +22,8 @@ import static com.google.common.base.MoreObjects.toStringHelper;
22 /** 22 /**
23 * Implementation of optical signal type criterion (8 bits unsigned 23 * Implementation of optical signal type criterion (8 bits unsigned
24 * integer). 24 * integer).
25 + *
26 + * @deprecated in Cardinal Release
25 */ 27 */
26 @Deprecated 28 @Deprecated
27 public final class OpticalSignalTypeCriterion implements Criterion { 29 public final class OpticalSignalTypeCriterion implements Criterion {
......
...@@ -42,6 +42,7 @@ public class FlowRuleIntent extends Intent { ...@@ -42,6 +42,7 @@ public class FlowRuleIntent extends Intent {
42 * 42 *
43 * @param appId application id 43 * @param appId application id
44 * @param flowRules flow rules to be set. 44 * @param flowRules flow rules to be set.
45 + * @deprecated in Cardinal Release
45 */ 46 */
46 @Deprecated 47 @Deprecated
47 public FlowRuleIntent(ApplicationId appId, List<FlowRule> flowRules) { 48 public FlowRuleIntent(ApplicationId appId, List<FlowRule> flowRules) {
......