Skip to content
Snippets Groups Projects
Commit 154a3679 authored by Mike Cohen's avatar Mike Cohen
Browse files

Avoid serializing channel to json

parent c9cb0253
No related branches found
No related tags found
No related merge requests found
......@@ -139,6 +139,7 @@ public class OFSwitchImpl implements IOFSwitch {
return this.attributes.containsKey(name);
}
@JsonIgnore
public Channel getChannel() {
return this.channel;
}
......@@ -451,6 +452,7 @@ public class OFSwitchImpl implements IOFSwitch {
* switch list from being modified out from under the listeners.
* @return
*/
@JsonIgnore
public Lock getListenerReadLock() {
return listenerLock.readLock();
}
......@@ -462,6 +464,7 @@ public class OFSwitchImpl implements IOFSwitch {
* message from the switch.
* @return
*/
@JsonIgnore
public Lock getListenerWriteLock() {
return listenerLock.writeLock();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment