![JAR search and dependency download from the Maven repository](/logo.png)
com.ociweb.pronghorn.network.http.CompositeRouteFinish Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Pronghorn Show documentation
Show all versions of Pronghorn Show documentation
Primary dependency for any project using the Pronghorn framework
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