Skip to content

Commit

Permalink
Issue #2 - configuration example.
Browse files Browse the repository at this point in the history
  • Loading branch information
highsource committed Sep 12, 2014
1 parent bf075a2 commit 0e9b484
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions tests/wps/src/main/resources/config.jsnx
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<jsonix:output fileName="${module.name}.js"/>
<jsonix:output fileName="${module.name}.compact.js" compact="true"/>

<!-- package mapping produces a module -->

<jsonix:module name="WPS_V_1_0_0"/>

<jsonix:module name="WPS_V_1_0_0">
<jsonix:space name="WPS_V_1_0_0" package="net.opengis.wps.v_1_0_0"/>
</jsonix:module>

<!-- Module may contain several spaces -->
<jsonix:module name="WPS_V_1_0_0_OWS_V_1_0_0">
<!-- Name defaults to the name of the base space -->
<jsonix:space name="WPS_V_1_0_0_OWS" base="OWS_V_1_0_0">
<!-- If include is present it says "include just that, nothing else" -->
<!-- You can further reduce the inclusion with jsonix:exclude -->
<jsonix:include>
<!-- All the elements statically reachable/required by the source module -->
<jsonix:dependenciesOfSpace name="WPS_V_1_0_0"/>
<!-- root element -->
<jsonix:elementInfo name="wps:DescribeProcess" xmlns:wps="http://www.opengis.net/wps/1.0.0" scope="..."/>
<!-- specific type -->
<jsonix:typeInfo name="Execute"/>
<jsonix:propertyInfo name="ProcessBriefType.wsdl"/>
</jsonix:include>
<jsonix:exclude/>
</jsonix:space>
</jsonix:module>

0 comments on commit 0e9b484

Please sign in to comment.