This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Base utils for building ExecutionContexts | |
*/ | |
public abstract class BaseExecutionContextBuilder<T extends BaseExecutionContextBuilder> { | |
private BitSet whatsSet = new BitSet(MAX_BASE_BITS+getNumSpecificComponents()); | |
protected GeoLocationDetails location; | |
protected RequestUUID uuid; | |
protected Date receivedTime; |