blob: 6c4a8c287dcc84d9c81968127d10aafe31dae93a [file] [log] [blame]
Frank Wang72c5e432016-09-23 17:20:49 +08001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
Frank Wang72c5e432016-09-23 17:20:49 +08003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package org.onosproject.net.flow.instructions;
18
19import com.google.common.base.MoreObjects;
20import org.onosproject.net.flow.AbstractExtension;
21import java.util.Arrays;
Frank Wang72c5e432016-09-23 17:20:49 +080022
23/**
24 * Unresolved extension treatment.
25 */
26public class UnresolvedExtensionTreatment extends AbstractExtension implements ExtensionTreatment {
27
28 private byte[] bytes;
29 private ExtensionTreatmentType unresolvedTreatmentType;
30
31 /**
32 * Creates a new unresolved extension treatment with given data in byte form.
33 *
Ray Milkeyef794342016-11-09 16:20:29 -080034 * @param arraybyte byte data for treatment
Frank Wang72c5e432016-09-23 17:20:49 +080035 * @param type unresolved extension data type
36 */
37 public UnresolvedExtensionTreatment(byte[] arraybyte, ExtensionTreatmentType type) {
38 this.bytes = arraybyte;
39 this.unresolvedTreatmentType = type;
40 }
41
42 @Override
43 public ExtensionTreatmentType type() {
44 return ExtensionTreatmentType.ExtensionTreatmentTypes.UNRESOLVED_TYPE.type();
45 }
46
47 @Override
48 public void deserialize(byte[] data) {
49 bytes = data;
50 }
51
52 @Override
53 public byte[] serialize() {
54 return bytes;
55 }
56
57 @Override
58 public int hashCode() {
Yuta HIGUCHIfbd9ae92018-01-24 23:39:06 -080059 return Arrays.hashCode(bytes);
Frank Wang72c5e432016-09-23 17:20:49 +080060 }
61
62 @Override
63 public boolean equals(Object obj) {
64 if (this == obj) {
65 return true;
66 }
67 if (obj instanceof UnresolvedExtensionTreatment) {
68 UnresolvedExtensionTreatment that = (UnresolvedExtensionTreatment) obj;
69 return Arrays.equals(bytes, that.bytes);
70 }
71 return false;
72 }
73
74 @Override
75 public String toString() {
76 return MoreObjects.toStringHelper(getClass())
77 .add("bytes", bytes)
78 .add("unresolvedTreatmentType", unresolvedTreatmentType)
79 .toString();
80 }
81}