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

com.ociweb.pronghorn.network.http.CompositeRouteFinish Maven / Gradle / Ivy

The newest version!
package com.ociweb.pronghorn.network.http;

public interface CompositeRouteFinish {
	
	int routeId();
	
	/**
	 * Register this object for use in looking up either the 
	 * routeId or the structId
	 * 
	 * @param associatedObject
	 * @return routeId
	 */
	int routeId(Object associatedObject);
	
	CompositeRouteFinish defaultInteger(String key, long value);	
	CompositeRouteFinish defaultText(String key, String value);
	CompositeRouteFinish defaultDecimal(String key, long m, byte e);	
	CompositeRouteFinish defaultRational(String key, long numerator, long denominator);
	CompositeRouteFinish associatedObject(String key, Object associatedObject);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy