View Javadoc

1   package org.kuali.common.jdbc.threads;
2   
3   import org.kuali.common.jdbc.JdbcService;
4   import org.kuali.common.jdbc.context.ExecutionContext;
5   
6   public class SqlBucketContext {
7   
8   	SqlBucket bucket;
9   	ExecutionContext context;
10  	JdbcService service;
11  
12  	public SqlBucket getBucket() {
13  		return bucket;
14  	}
15  
16  	public void setBucket(SqlBucket bucket) {
17  		this.bucket = bucket;
18  	}
19  
20  	public ExecutionContext getContext() {
21  		return context;
22  	}
23  
24  	public void setContext(ExecutionContext context) {
25  		this.context = context;
26  	}
27  
28  	public JdbcService getService() {
29  		return service;
30  	}
31  
32  	public void setService(JdbcService service) {
33  		this.service = service;
34  	}
35  
36  }