Skip to content

Commit ebf04ff

Browse files
committed
Updating wsdl and pom for 8.7
1 parent eee26e1 commit ebf04ff

File tree

3 files changed

+71
-6
lines changed

3 files changed

+71
-6
lines changed

.classpath

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,26 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
3-
<classpathentry kind="src" output="target/classes" path="src/java"/>
4-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
5-
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER"/>
3+
<classpathentry kind="src" output="target/test-classes" path="src/java">
4+
<attributes>
5+
<attribute name="optional" value="true"/>
6+
<attribute name="maven.pomderived" value="true"/>
7+
</attributes>
8+
</classpathentry>
9+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6">
10+
<attributes>
11+
<attribute name="maven.pomderived" value="true"/>
12+
</attributes>
13+
</classpathentry>
14+
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
15+
<attributes>
16+
<attribute name="maven.pomderived" value="true"/>
17+
</attributes>
18+
</classpathentry>
619
<classpathentry kind="src" output="target/classes" path="target/generated-sources/axistools/wsdl2java">
720
<attributes>
821
<attribute name="optional" value="true"/>
22+
<attribute name="maven.pomderived" value="true"/>
23+
<attribute name="ignore_optional_problems" value="true"/>
924
</attributes>
1025
</classpathentry>
1126
<classpathentry kind="output" path="target/classes"/>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>Cascade-Java-Web-Services-Example-Project</groupId>
55
<artifactId>Cascade-Java-Web-Services-Example-Project</artifactId>
6-
<version>8.6</version>
6+
<version>8.7</version>
77

88
<dependencies>
99
<dependency>

src/java/wsdl/asset-operation.wsdl

Lines changed: 52 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1199,8 +1199,6 @@
11991199
One is REQUIRED -->
12001200
<element name="siteId" maxOccurs="1" minOccurs="0" nillable="true" type="xsd:string"/>
12011201
<element name="siteName" maxOccurs="1" minOccurs="0" nillable="true" type="xsd:string"/>
1202-
<element name="reviewOnSchedule" maxOccurs="1" minOccurs="0" nillable="true" type="xsd:boolean"/>
1203-
<element name="reviewEvery" maxOccurs="1" minOccurs="0" nillable="true" type="xsd:nonNegativeInteger"/>
12041202
</sequence>
12051203
</extension>
12061204
</complexContent>
@@ -1691,6 +1689,17 @@
16911689
<element name="spellCheckEnabled" minOccurs="1" maxOccurs="1" type="xsd:boolean"/>
16921690
<element name="linkCheckEnabled" minOccurs="1" maxOccurs="1" type="xsd:boolean"/>
16931691
<element name="accessibilityCheckEnabled" minOccurs="1" maxOccurs="1" type="xsd:boolean"/>
1692+
<!-- REQUIRED Determines whether naming rules are inherited from the system preferences.
1693+
If true, the rule properties will be ignored when saving, but old values are preserved.
1694+
Otherwise, null values will be defaulted to appropriate values when saving.
1695+
Naming rules read from a site may be null. -->
1696+
<element name="inheritNamingRules" minOccurs="1" maxOccurs="1" type="xsd:boolean"/>
1697+
<!-- Depending on inheritNamingRules, this is Optional. Defines what case a name can be. -->
1698+
<element name="namingRuleCase" minOccurs="0" maxOccurs="1" nillable="true" type="impl:namingRuleCase"/>
1699+
<!-- Depending on inheritNamingRules, this is Optional. Defines how spaces are handled for names -->
1700+
<element name="namingRuleSpacing" minOccurs="0" maxOccurs="1" nillable="true" type="impl:namingRuleSpacing"/>
1701+
<!-- Depending on inheritNamingRules, this is Optional. Defines the asset types that enforce naming rules -->
1702+
<element name="namingRuleAssets" minOccurs="0" maxOccurs="1" nillable="true" type="impl:namingRuleAssets"/>
16941703
<!-- The root folder id and containers idds - used only when reading a site. Unused in other cases
16951704
NOT REQUIRED ignored -->
16961705
<element name="rootFolderId" minOccurs="0" maxOccurs="1" type="xsd:string" nillable="true"/>
@@ -1709,6 +1718,42 @@
17091718
</complexContent>
17101719
</complexType>
17111720

1721+
<simpleType name="namingRuleCase">
1722+
<restriction base="xsd:string">
1723+
<enumeration value="ANY"/>
1724+
<enumeration value="LOWER"/>
1725+
<enumeration value="UPPER"/>
1726+
</restriction>
1727+
</simpleType>
1728+
1729+
<simpleType name="namingRuleSpacing">
1730+
<restriction base="xsd:string">
1731+
<enumeration value="SPACE"/>
1732+
<enumeration value="REMOVE"/>
1733+
<enumeration value="HYPHEN"/>
1734+
<enumeration value="UNDERSCORE"/>
1735+
</restriction>
1736+
</simpleType>
1737+
1738+
<complexType name="namingRuleAssets">
1739+
<sequence>
1740+
<element name="namingRuleAsset" minOccurs="0" maxOccurs="unbounded" type="impl:namingRuleAsset"/>
1741+
</sequence>
1742+
</complexType>
1743+
1744+
<simpleType name="namingRuleAsset">
1745+
<restriction base="xsd:string">
1746+
<enumeration value="block"/>
1747+
<enumeration value="file"/>
1748+
<enumeration value="folder"/>
1749+
<enumeration value="page"/>
1750+
<enumeration value="symlink"/>
1751+
<enumeration value="template"/>
1752+
<enumeration value="reference"/>
1753+
<enumeration value="format"/>
1754+
</restriction>
1755+
</simpleType>
1756+
17121757
<simpleType name="recycleBinExpiration">
17131758
<restriction base="xsd:string">
17141759
<enumeration value="1"/>
@@ -2944,6 +2989,9 @@
29442989
<!-- Whether or not this is an edit type workflow
29452990
NOT REQUIRED default: false -->
29462991
<element name="edit" maxOccurs="1" minOccurs="0" type="xsd:boolean"/>
2992+
<!-- Whether or not this is a move type workflow
2993+
NOT REQUIRED default: false -->
2994+
<element name="move" maxOccurs="1" minOccurs="0" type="xsd:boolean"/>
29472995
<!-- The naming behavior when an instance of this workflow is created
29482996
REQUIRED -->
29492997
<element name="namingBehavior" maxOccurs="1" minOccurs="1" type="impl:workflowNamingBehavior"/>
@@ -2990,6 +3038,8 @@
29903038
NOT REQUIRED -->
29913039
<element name="metadataSetId" type="xsd:string" maxOccurs="1" minOccurs="0"/>
29923040
<element name="metadataSetPath" maxOccurs="1" minOccurs="0" type="xsd:string"/>
3041+
<element name="reviewOnSchedule" maxOccurs="1" minOccurs="0" nillable="true" type="xsd:boolean"/>
3042+
<element name="reviewEvery" maxOccurs="1" minOccurs="0" nillable="true" type="xsd:nonNegativeInteger"/>
29933043
</sequence>
29943044
</extension>
29953045
</complexContent>

0 commit comments

Comments
 (0)