Skip to content

Commit 5778dda

Browse files
committed
Updating wsdl and pom for Cascade CMS 8.9
1 parent 7718b9a commit 5778dda

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

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.8</version>
6+
<version>8.9</version>
77

88
<dependencies>
99
<dependency>

src/java/wsdl/asset-operation.wsdl

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -991,6 +991,7 @@
991991
<extension base="impl:operationResult">
992992
<sequence>
993993
<element name="subscribers" minOccurs="1" maxOccurs="1" type="impl:assetIdentifiers"/>
994+
<element name="manualSubscribers" minOccurs="1" maxOccurs="1" type="impl:assetIdentifiers"/>
994995
</sequence>
995996
</extension>
996997
</complexContent>
@@ -1199,11 +1200,26 @@
11991200
One is REQUIRED -->
12001201
<element name="siteId" maxOccurs="1" minOccurs="0" nillable="true" type="xsd:string"/>
12011202
<element name="siteName" maxOccurs="1" minOccurs="0" nillable="true" type="xsd:string"/>
1203+
<!-- Content Tags assigned to the asset
1204+
NOT REQUIRED -->
1205+
<element name="tags" maxOccurs="1" minOccurs="0" nillable="true" type="impl:tags"/>
12021206
</sequence>
12031207
</extension>
12041208
</complexContent>
12051209
</complexType>
12061210

1211+
<complexType name="tags">
1212+
<sequence>
1213+
<element name="tag" minOccurs="0" maxOccurs="unbounded" nillable="true" type="impl:tag"/>
1214+
</sequence>
1215+
</complexType>
1216+
1217+
<complexType name="tag">
1218+
<sequence>
1219+
<element name="name" minOccurs="0" maxOccurs="1" nillable="true" type="xsd:string"/>
1220+
</sequence>
1221+
</complexType>
1222+
12071223
<!-- The following concrete types extend folder-contained-asset -->
12081224
<complexType name="reference">
12091225
<complexContent>
@@ -1949,6 +1965,11 @@
19491965
<element name="editorConfigurationId" minOccurs="0" maxOccurs="1" type="xsd:string"/>
19501966
<element name="editorConfigurationPath" minOccurs="0" maxOccurs="1" type="xsd:string"/>
19511967

1968+
<!-- Priority: publishSetId > publishSetPath
1969+
NOT REQUIRED -->
1970+
<element name="publishSetId" minOccurs="0" maxOccurs="1" type="xsd:string"/>
1971+
<element name="publishSetPath" minOccurs="0" maxOccurs="1" type="xsd:string"/>
1972+
19521973
<!-- The array of contentTypePageConfigurations
19531974
NOT REQUIRED - if not specified, the default publish mode "all-destinations" is used for each pageConfiguration
19541975
- ignored in Global area -->
@@ -3205,6 +3226,9 @@
32053226
<!-- Whether or not to include access rights information
32063227
NOT REQUIRED default: false -->
32073228
<element name="indexAccessRights" minOccurs="0" maxOccurs="1" type="xsd:boolean"/>
3229+
<!-- Whether or not to include tags
3230+
NOT REQUIRED default: false -->
3231+
<element name="indexTags" minOccurs="0" maxOccurs="1" type="xsd:boolean"/>
32083232
<!-- When this is "true", an element "user-information" will be added towards the
32093233
bottom of the rendered XML including information about the user's login, full
32103234
name and group memberships
@@ -3753,6 +3777,8 @@
37533777

37543778
<!-- Similar to the GUI - you can choose to unpublish the asset instead of publishing it. Not required. Default: false -->
37553779
<element name="unpublish" minOccurs="0" maxOccurs="1" nillable="true" type="xsd:boolean"/>
3780+
<element name="publishRelatedAssets" minOccurs="0" maxOccurs="1" nillable="true" type="xsd:boolean"/>
3781+
<element name="publishRelatedPublishSet" minOccurs="0" maxOccurs="1" nillable="true" type="xsd:boolean"/>
37563782
</sequence>
37573783
</complexType>
37583784

0 commit comments

Comments
 (0)