This repository was archived by the owner on Apr 22, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +215
-225
lines changed
java/eu/geoknow/generator/workflow/beans
webapp/js/settings/named-graphs Expand file tree Collapse file tree 3 files changed +215
-225
lines changed Original file line number Diff line number Diff line change 266266 </executions >
267267 </plugin >
268268
269- <!-- To generate JAVA classes of the ontology models I tried to use this
270- plugin to automatoicalluy create java clasess, but I didnt succeed in reading
271- the configuration file <plugin> <groupId>org.apache.jena</groupId> <artifactId>jena-maven-tools</artifactId>
272- <version>0.8</version> <configuration> <includes> <include>src/main/vocabs/framework-ontology_0.1.2.ttl</include>
273- <include>src/main/vocabs/ldsi-schema_0.1.1.ttl</include> <include>src/main/vocabs/sparql-service-description.ttl</include>
274- </includes> <fileOptions> <source> <input>src/main/vocabs/framework-ontology_0.1.2.ttl</input>
275- <class-name>LDIWO</class-name> <config-file>src/main/vocabs/schemagen-config.xml</config-file>
276- <output>src/main/java/com/ontos/ldiw/vocabulary</output> </source> <source>
277- <input>src/main/vocabs/ldsi-schema_0.1.1.ttl</input> <class-name>LDIS</class-name>
278- <package-name>com.ontos.ldiw.vocabulary</package-name> <output>src/main/java/com/ontos/ldiw/vocabulary</output>
279- <ontology>true</ontology> </source> <source> <input>src/main/vocabs/sparql-service-description.ttl</input>
280- <class-name>SD</class-name> <package-name>com.ontos.ldiw.vocabulary</package-name>
281- <output>src/main/java/com/ontos/ldiw/vocabulary</output> </source> </fileOptions>
282- </configuration> <executions> <execution> <id>schemagen</id> <goals> <goal>translate</goal>
283- </goals> </execution> </executions> </plugin> -->
269+
284270 </plugins >
285271 </build >
286272
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ public class StepExecutionDetail {
1616 private String startTime ;
1717 private String duration ;
1818 private int readCount ;
19- private int writeCoun ;
19+ private int writeCount ;
2020 private int filterCount ;
2121 private int readSkipCount ;
2222 private int processSkipCount ;
@@ -29,8 +29,8 @@ public int getReadCount() {
2929 return readCount ;
3030 }
3131
32- public int getWriteCoun () {
33- return writeCoun ;
32+ public int getWriteCount () {
33+ return writeCount ;
3434 }
3535
3636 public int getCommitCount () {
@@ -89,8 +89,8 @@ public void setReadCount(int readCount) {
8989 this .readCount = readCount ;
9090 }
9191
92- public void setWriteCoun (int writeCoun ) {
93- this .writeCoun = writeCoun ;
92+ public void setWriteCount (int writeCount ) {
93+ this .writeCount = writeCount ;
9494 }
9595
9696 public void setCommitCount (int commitCount ) {
You can’t perform that action at this time.
0 commit comments