This commit is contained in:
Rob Davies 2013-11-12 08:22:19 +00:00
parent d2ddd1dcad
commit 4183e6e47c
1 changed files with 9 additions and 0 deletions

View File

@ -32,6 +32,7 @@ public abstract class TransportServerSupport extends ServiceSupport implements T
private URI bindLocation; private URI bindLocation;
private TransportAcceptListener acceptListener; private TransportAcceptListener acceptListener;
protected Map<String, Object> transportOptions; protected Map<String, Object> transportOptions;
protected boolean allowLinkStealing;
public TransportServerSupport() { public TransportServerSupport() {
} }
@ -89,5 +90,13 @@ public abstract class TransportServerSupport extends ServiceSupport implements T
this.transportOptions = transportOptions; this.transportOptions = transportOptions;
} }
@Override
public boolean isAllowLinkStealing() {
return allowLinkStealing;
}
public void setAllowLinkStealing(boolean allowLinkStealing) {
this.allowLinkStealing = allowLinkStealing;
}
} }