Package org.geotools.data.teradata
Class QueryBand
- Object
-
- QueryBand
-
public class QueryBand extends Object
Thread local table that holds transaction local query bands.- Author:
- Justin Deoliveira, OpenGeo
-
-
Field Summary
Fields Modifier and Type Field Description static StringAPPLICATIONSession query band for name of application.static StringCLIENT_HOSTLocal query band for host name executing request.static StringCLIENT_USERLocal query band for user name executing request.static StringLAYERLocal query band for layer being worked against.static StringPROCESSLocal query band for type of statement, SELECT, DELETE, etc...
-
Constructor Summary
Constructors Constructor Description QueryBand()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Map<String,String>local()Returns local query band map.static voidremove()Clears the local query band thread local.
-
-
-
Field Detail
-
APPLICATION
public static String APPLICATION
Session query band for name of application.
-
CLIENT_USER
public static String CLIENT_USER
Local query band for user name executing request.
-
CLIENT_HOST
public static String CLIENT_HOST
Local query band for host name executing request.
-
LAYER
public static String LAYER
Local query band for layer being worked against.
-
PROCESS
public static String PROCESS
Local query band for type of statement, SELECT, DELETE, etc...
-
-