Skip to content

Commit

Permalink
Updated service client to v10.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Balazs Molnar authored and Balazs Molnar committed Jul 19, 2021
1 parent 2bc389b commit 0589461
Show file tree
Hide file tree
Showing 319 changed files with 5,303 additions and 4,322 deletions.
Binary file not shown.
Binary file not shown.
Binary file modified Java/Convert And Secure/bin/com/muhimbi/ws/ObjectFactory.class
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
* <sequence>
* <element name="PrintOutputType" type="{http://schemas.datacontract.org/2004/07/Muhimbi.DocumentConverter.WebService.Data}PresentationsPrintOutputType" minOccurs="0"/>
* <element name="FrameSlides" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="IncludeDocumentStructureTags" type="{http://schemas.datacontract.org/2004/07/Muhimbi.DocumentConverter.WebService.Data}BooleanEnum" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
Expand All @@ -31,7 +32,8 @@
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ConverterSpecificSettings_Presentations", namespace = "http://types.muhimbi.com/2010/11/22", propOrder = {
"printOutputType",
"frameSlides"
"frameSlides",
"includeDocumentStructureTags"
})
public class ConverterSpecificSettingsPresentations
extends ConverterSpecificSettings
Expand All @@ -42,6 +44,9 @@ public class ConverterSpecificSettingsPresentations
protected PresentationsPrintOutputType printOutputType;
@XmlElement(name = "FrameSlides")
protected Boolean frameSlides;
@XmlElement(name = "IncludeDocumentStructureTags")
@XmlSchemaType(name = "string")
protected BooleanEnum includeDocumentStructureTags;

/**
* Gets the value of the printOutputType property.
Expand Down Expand Up @@ -91,4 +96,28 @@ public void setFrameSlides(Boolean value) {
this.frameSlides = value;
}

/**
* Gets the value of the includeDocumentStructureTags property.
*
* @return
* possible object is
* {@link BooleanEnum }
*
*/
public BooleanEnum getIncludeDocumentStructureTags() {
return includeDocumentStructureTags;
}

/**
* Sets the value of the includeDocumentStructureTags property.
*
* @param value
* allowed object is
* {@link BooleanEnum }
*
*/
public void setIncludeDocumentStructureTags(BooleanEnum value) {
this.includeDocumentStructureTags = value;
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
* <element name="RevisionsAndCommentsDisplayMode" type="{http://schemas.datacontract.org/2004/07/Muhimbi.DocumentConverter.WebService.Data}RevisionsAndCommentsDisplayMode" minOccurs="0"/>
* <element name="ProcessDocumentTemplate" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="BookmarkOptions" type="{http://types.muhimbi.com/2009/10/06}BookmarkOptions_WordProcessing" minOccurs="0"/>
* <element name="IncludeDocumentStructureTags" type="{http://schemas.datacontract.org/2004/07/Muhimbi.DocumentConverter.WebService.Data}BooleanEnum" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
Expand All @@ -37,7 +38,8 @@
"revisionsAndCommentsMarkupMode",
"revisionsAndCommentsDisplayMode",
"processDocumentTemplate",
"bookmarkOptions"
"bookmarkOptions",
"includeDocumentStructureTags"
})
public class ConverterSpecificSettingsWordProcessing
extends ConverterSpecificSettings
Expand All @@ -53,6 +55,9 @@ public class ConverterSpecificSettingsWordProcessing
protected Boolean processDocumentTemplate;
@XmlElementRef(name = "BookmarkOptions", namespace = "http://types.muhimbi.com/2010/11/22", type = JAXBElement.class, required = false)
protected JAXBElement<BookmarkOptionsWordProcessing> bookmarkOptions;
@XmlElement(name = "IncludeDocumentStructureTags")
@XmlSchemaType(name = "string")
protected BooleanEnum includeDocumentStructureTags;

/**
* Gets the value of the revisionsAndCommentsMarkupMode property.
Expand Down Expand Up @@ -150,4 +155,28 @@ public void setBookmarkOptions(JAXBElement<BookmarkOptionsWordProcessing> value)
this.bookmarkOptions = value;
}

/**
* Gets the value of the includeDocumentStructureTags property.
*
* @return
* possible object is
* {@link BooleanEnum }
*
*/
public BooleanEnum getIncludeDocumentStructureTags() {
return includeDocumentStructureTags;
}

/**
* Sets the value of the includeDocumentStructureTags property.
*
* @param value
* allowed object is
* {@link BooleanEnum }
*
*/
public void setIncludeDocumentStructureTags(BooleanEnum value) {
this.includeDocumentStructureTags = value;
}

}
Loading

0 comments on commit 0589461

Please sign in to comment.