01: /*
02: * Copyright Aduna (http://www.aduna-software.com/) (c) 2007.
03: *
04: * Licensed under the Aduna BSD-style license.
05: */
06: package org.openrdf.sail.inferencer.fc.config;
07:
08: import org.openrdf.sail.config.DelegatingSailImplConfigBase;
09: import org.openrdf.sail.config.SailImplConfig;
10:
11: /**
12: * @author Arjohn Kampman
13: */
14: public class ForwardChainingRDFSInferencerConfig extends
15: DelegatingSailImplConfigBase {
16:
17: public ForwardChainingRDFSInferencerConfig() {
18: super (ForwardChainingRDFSInferencerFactory.SAIL_TYPE);
19: }
20:
21: public ForwardChainingRDFSInferencerConfig(SailImplConfig delegate) {
22: super(ForwardChainingRDFSInferencerFactory.SAIL_TYPE, delegate);
23: }
24: }
|