0caf9ff165102435f9f5ec9a650e47d607415c3e
[controller.git] / third-party / openflowj_netty / src / main / java / org / openflow / protocol / OFMatchWithSwDpid.java
1 /**
2  *    Copyright 2013, Big Switch Networks, Inc.
3  *
4  *    Licensed under the Apache License, Version 2.0 (the "License"); you may
5  *    not use this file except in compliance with the License. You may obtain
6  *    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, WITHOUT
12  *    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13  *    License for the specific language governing permissions and limitations
14  *    under the License.
15  **/
16
17 package org.openflow.protocol;
18
19 import org.openflow.util.HexString;
20
21 public class OFMatchWithSwDpid {
22     protected OFMatch ofMatch;
23     protected long  switchDataPathId;
24
25     public OFMatchWithSwDpid() {
26         this.ofMatch = new OFMatch();
27         this.switchDataPathId = 0;
28     }
29     
30     public OFMatchWithSwDpid(OFMatch ofm, long swDpid) {
31         this.ofMatch = ofm.clone();
32         this.switchDataPathId = swDpid;
33     }
34     public OFMatch getOfMatch() {
35                 return ofMatch;
36         }
37
38         public void setOfMatch(OFMatch ofMatch) {
39                 this.ofMatch = ofMatch.clone();
40         }
41
42         public long getSwitchDataPathId() {
43         return this.switchDataPathId;
44     }
45
46     public OFMatchWithSwDpid setSwitchDataPathId(long dpid) {
47         this.switchDataPathId = dpid;
48         return this;
49     }
50     
51     @Override
52     public String toString() {
53         return "OFMatchWithSwDpid [" + HexString.toHexString(switchDataPathId) + ofMatch + "]";
54     }
55 }