blob: 81bbed4930f8956d3de1e541bc8573041712e6f4 [file] [log] [blame]
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -08001/**
Ray Milkey269ffb92014-04-03 14:43:30 -07002 * Copyright 2011, Big Switch Networks, Inc.
3 * Originally created by David Erickson, Stanford 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 **/
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080017
Jonathan Hartdeda0ba2014-04-03 11:14:12 -070018package net.onrc.onos.core.packet;
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080019
20import java.util.Arrays;
21
Pavlin Radoslavovc9bacee2014-04-11 19:02:17 -070022import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
23
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080024/**
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080025 * @author David Erickson (daviderickson@cs.stanford.edu)
26 */
27public class DHCPOption {
28 protected byte code;
29 protected byte length;
30 protected byte[] data;
31
32 /**
33 * @return the code
34 */
35 public byte getCode() {
36 return code;
37 }
38
39 /**
40 * @param code the code to set
41 */
42 public DHCPOption setCode(byte code) {
43 this.code = code;
44 return this;
45 }
46
47 /**
48 * @return the length
49 */
50 public byte getLength() {
51 return length;
52 }
53
54 /**
55 * @param length the length to set
56 */
57 public DHCPOption setLength(byte length) {
58 this.length = length;
59 return this;
60 }
61
62 /**
63 * @return the data
64 */
Pavlin Radoslavovc9bacee2014-04-11 19:02:17 -070065 @SuppressFBWarnings(value = "EI_EXPOSE_REP",
66 justification = "TODO: Return a copy of the object?")
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080067 public byte[] getData() {
68 return data;
69 }
70
71 /**
72 * @param data the data to set
73 */
Pavlin Radoslavovc9bacee2014-04-11 19:02:17 -070074 @SuppressFBWarnings(value = "EI_EXPOSE_REP2",
75 justification = "TODO: Store a copy of the object?")
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -080076 public DHCPOption setData(byte[] data) {
77 this.data = data;
78 return this;
79 }
80
81 /* (non-Javadoc)
82 * @see java.lang.Object#hashCode()
83 */
84 @Override
85 public int hashCode() {
86 final int prime = 31;
87 int result = 1;
88 result = prime * result + code;
89 result = prime * result + Arrays.hashCode(data);
90 result = prime * result + length;
91 return result;
92 }
93
94 /* (non-Javadoc)
95 * @see java.lang.Object#equals(java.lang.Object)
96 */
97 @Override
98 public boolean equals(Object obj) {
Ray Milkeyb29e6262014-04-09 16:02:14 -070099 if (this == obj) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800100 return true;
Ray Milkeyb29e6262014-04-09 16:02:14 -0700101 }
102 if (obj == null) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800103 return false;
Ray Milkeyb29e6262014-04-09 16:02:14 -0700104 }
105 if (!(obj instanceof DHCPOption)) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800106 return false;
Ray Milkeyb29e6262014-04-09 16:02:14 -0700107 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800108 DHCPOption other = (DHCPOption) obj;
Ray Milkeyb29e6262014-04-09 16:02:14 -0700109 if (code != other.code) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800110 return false;
Ray Milkeyb29e6262014-04-09 16:02:14 -0700111 }
112 if (!Arrays.equals(data, other.data)) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800113 return false;
Ray Milkeyb29e6262014-04-09 16:02:14 -0700114 }
115 if (length != other.length) {
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800116 return false;
Ray Milkeyb29e6262014-04-09 16:02:14 -0700117 }
Umesh Krishnaswamy345ee992012-12-13 20:29:48 -0800118 return true;
119 }
120
121 /* (non-Javadoc)
122 * @see java.lang.Object#toString()
123 */
124 @Override
125 public String toString() {
126 return "DHCPOption [code=" + code + ", length=" + length + ", data="
127 + Arrays.toString(data) + "]";
128 }
129}