5860ef1160ae43fe3606a582c8e7d7ae842820eb
[controller.git] / third-party / openflowj_netty / src / main / java / org / openflow / protocol / action / OFActionVendor.java
1 /**
2 *    Copyright (c) 2008 The Board of Trustees of The Leland Stanford Junior
3 *    University
4 *
5 *    Licensed under the Apache License, Version 2.0 (the "License"); you may
6 *    not use this file except in compliance with the License. You may obtain
7 *    a copy of the License at
8 *
9 *         http://www.apache.org/licenses/LICENSE-2.0
10 *
11 *    Unless required by applicable law or agreed to in writing, software
12 *    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 *    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 *    License for the specific language governing permissions and limitations
15 *    under the License.
16 **/
17
18 package org.openflow.protocol.action;
19
20
21 import org.jboss.netty.buffer.ChannelBuffer;
22
23 /**
24  *
25  * @author David Erickson (daviderickson@cs.stanford.edu)
26  */
27 public abstract class OFActionVendor extends OFAction {
28     public static int MINIMUM_LENGTH = 8;
29
30     protected int vendor;
31
32     public OFActionVendor() {
33         super();
34         super.setType(OFActionType.VENDOR);
35         super.setLength((short) MINIMUM_LENGTH);
36     }
37
38     /**
39      * @return the vendor
40      */
41     public int getVendor() {
42         return vendor;
43     }
44
45     /**
46      * @param vendor the vendor to set
47      */
48     public void setVendor(int vendor) {
49         this.vendor = vendor;
50     }
51
52     @Override
53     public void readFrom(ChannelBuffer data) {
54         super.readFrom(data);
55         this.vendor = data.readInt();
56     }
57
58     @Override
59     public void writeTo(ChannelBuffer data) {
60         super.writeTo(data);
61         data.writeInt(this.vendor);
62     }
63
64     @Override
65     public int hashCode() {
66         final int prime = 379;
67         int result = super.hashCode();
68         result = prime * result + vendor;
69         return result;
70     }
71
72     @Override
73     public boolean equals(Object obj) {
74         if (this == obj) {
75             return true;
76         }
77         if (!super.equals(obj)) {
78             return false;
79         }
80         if (!(obj instanceof OFActionVendor)) {
81             return false;
82         }
83         OFActionVendor other = (OFActionVendor) obj;
84         if (vendor != other.vendor) {
85             return false;
86         }
87         return true;
88     }
89
90     @Override
91     public String toString() {
92         return super.toString() + "; vendor=" + vendor;
93     }
94 }