Mark AD-SAL interfaces as deprecated
[controller.git] / opendaylight / adsal / sal / api / src / main / java / org / opendaylight / controller / sal / action / Enqueue.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.controller.sal.action;
10
11 import javax.xml.bind.annotation.XmlAccessType;
12 import javax.xml.bind.annotation.XmlAccessorType;
13 import javax.xml.bind.annotation.XmlElement;
14 import javax.xml.bind.annotation.XmlRootElement;
15
16 import org.opendaylight.controller.sal.core.NodeConnector;
17
18 @XmlRootElement
19 @XmlAccessorType(XmlAccessType.NONE)
20 @Deprecated
21 public class Enqueue extends Action {
22     private static final long serialVersionUID = 1L;
23     @XmlElement
24     private NodeConnector port;
25     @XmlElement
26     private int queue;
27
28     /* Dummy constructor for JAXB */
29     @SuppressWarnings("unused")
30     private Enqueue() {
31     }
32
33     public Enqueue(NodeConnector port) {
34         type = ActionType.ENQUEUE;
35         this.port = port;
36         this.queue = 0;
37     }
38
39     public Enqueue(NodeConnector port, int queue) {
40         type = ActionType.ENQUEUE;
41         this.port = port;
42         this.queue = queue;
43     }
44
45     public NodeConnector getPort() {
46         return port;
47     }
48
49     public int getQueue() {
50         return queue;
51     }
52
53     @Override
54     public String toString() {
55         return String.format("%s[%s:%s]", type, port, queue);
56     }
57 }