blob: 8a29f47184b9b0712b1fb2a3e4f82a42095cd162 [file] [log] [blame]
Sho SHIMIZUfbc80e52015-04-28 10:41:58 -07001/*
2 * Copyright 2015 Open Networking Laboratory
3 *
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 */
16package org.onosproject.net.flow.criteria;
17
Hyunsun Mooncf732fb2015-08-22 21:04:23 -070018import org.onlab.packet.TpPort;
19
Sho SHIMIZUfbc80e52015-04-28 10:41:58 -070020import java.util.Objects;
21
22import static com.google.common.base.MoreObjects.toStringHelper;
23
24/**
25 * Implementation of UDP port criterion (16 bits unsigned integer).
26 */
27public final class UdpPortCriterion implements Criterion {
Hyunsun Mooncf732fb2015-08-22 21:04:23 -070028 private final TpPort udpPort;
Sho SHIMIZUfbc80e52015-04-28 10:41:58 -070029 private final Type type;
30
31 /**
32 * Constructor.
33 *
Hyunsun Mooncf732fb2015-08-22 21:04:23 -070034 * @param udpPort the UDP port to match
Sho SHIMIZUfbc80e52015-04-28 10:41:58 -070035 * @param type the match type. Should be either Type.UDP_SRC or
36 * Type.UDP_DST
37 */
Hyunsun Mooncf732fb2015-08-22 21:04:23 -070038 UdpPortCriterion(TpPort udpPort, Type type) {
39 this.udpPort = udpPort;
Sho SHIMIZUfbc80e52015-04-28 10:41:58 -070040 this.type = type;
41 }
42
43 @Override
44 public Type type() {
45 return this.type;
46 }
47
48 /**
49 * Gets the UDP port to match.
50 *
Hyunsun Mooncf732fb2015-08-22 21:04:23 -070051 * @return the UDP port to match
Sho SHIMIZUfbc80e52015-04-28 10:41:58 -070052 */
Hyunsun Mooncf732fb2015-08-22 21:04:23 -070053 public TpPort udpPort() {
Sho SHIMIZUfbc80e52015-04-28 10:41:58 -070054 return this.udpPort;
55 }
56
57 @Override
58 public String toString() {
59 return toStringHelper(type().toString())
60 .add("udpPort", udpPort).toString();
61 }
62
63 @Override
64 public int hashCode() {
Thomas Vachuska6c8eff32015-05-27 16:11:44 -070065 return Objects.hash(type().ordinal(), udpPort);
Sho SHIMIZUfbc80e52015-04-28 10:41:58 -070066 }
67
68 @Override
69 public boolean equals(Object obj) {
70 if (this == obj) {
71 return true;
72 }
73 if (obj instanceof UdpPortCriterion) {
74 UdpPortCriterion that = (UdpPortCriterion) obj;
75 return Objects.equals(udpPort, that.udpPort) &&
76 Objects.equals(type, that.type);
77 }
78 return false;
79 }
80}