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.http.webclient.repository.extract;
07:
08: import org.openrdf.http.webclient.StatementSpecification;
09: import org.openrdf.rio.RDFFormat;
10:
11: /**
12: * @author Herko ter Horst
13: */
14: public class ExtractionSettings extends StatementSpecification {
15:
16: private RDFFormat resultFormat = RDFFormat.RDFXML;
17:
18: public RDFFormat getResultFormat() {
19: return resultFormat;
20: }
21:
22: public void setResultFormat(RDFFormat resultFormat) {
23: this.resultFormat = resultFormat;
24: }
25: }
|