Project

General

Profile

Download (542 Bytes) Statistics
| Branch: | Tag: | Revision:
1
package org.bgbm.biovel.drf.checklist;
2

    
3
import org.bgbm.biovel.drf.client.ServiceProviderInfo;
4
import org.bgbm.biovel.drf.query.IQueryClient;
5

    
6

    
7
public abstract class AggregateChecklistClient<QC extends IQueryClient> extends BaseChecklistClient<QC> {
8

    
9
	public AggregateChecklistClient() {
10
		super();
11
	}
12

    
13
	public AggregateChecklistClient(String checklistInfoJson) throws DRFChecklistException {
14
		super(checklistInfoJson);
15
	}
16

    
17
	public AggregateChecklistClient(ServiceProviderInfo spiInfo) throws DRFChecklistException {
18
		super(spiInfo);
19
	}
20

    
21
}
(1-1/12)