io.bigdime.core.handler.HandlerNode Maven / Gradle / Ivy
/**
* Copyright (C) 2015 Stubhub.
*/
package io.bigdime.core.handler;
import io.bigdime.core.Handler;
public class HandlerNode {
private Handler handler;
private HandlerNode next;
public HandlerNode(Handler handler) {
this.handler = handler;
}
public Handler getHandler() {
return handler;
}
public HandlerNode getNext() {
return next;
}
public void setNext(HandlerNode next) {
this.next = next;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy