All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.bigdime.core.handler.HandlerNode Maven / Gradle / Ivy

There is a newer version: 0.9.3
Show newest version
/**
 * 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