Class ConverterTransformType
- java.lang.Object
-
- net.webpdf.wsclient.schema.operation.ConverterTransformType
-
public class ConverterTransformType extends Object
<?xml version="1.0" encoding="UTF-8"?><p xmlns:p383362_="https://jakarta.ee/xml/ns/jaxb" xmlns:p837822_="http://jaxb2-commons.dev.java.net/basic/inheritance" xmlns:tns="http://schema.webpdf.de/1.0/operation" xmlns:xs="http://www.w3.org/2001/XMLSchema">This element defines a set of transformations to be applied to the document before further converter operations are performed. For example, an XSLT transformation could be applied to an XML document to transform it to HTML before converting that HTML content to a PDF document. This element currently recognizes two forms of transformations: <ul><li>XSLT transformation - a generic transformation to any output format.</li> Optimally, the transformation creates a document format (such as HTML) that the downstream conversion can convert to a PDF document. The generic transformation can contain an arbitrary number of XSLT elements, defined as <code><resources></code>, each of which is successively applied to the result of the preceding transformation. <li>XInvoice transformation - XML data in XInvoice format (CII or UBL) transformed into a visual image by means of transformation.</li></ul> Normally, no further specification is necessary here, because a standard layout for the visual image of an X-invoice is stored on the server. However, if a different layout is to be used, this must be specified via the <code><visualization></code> element. The file used there must be an XLST stylesheet, which creates the XInvoice data as HTML output. </p>Java class for ConverterTransformType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ConverterTransformType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <choice> <element name="xslTransformation" type="{http://schema.webpdf.de/1.0/operation}XslTransformationType"/> <element name="xRechnung" type="{http://schema.webpdf.de/1.0/operation}XRechnungType"/> </choice> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected XRechnungTypexRechnungprotected XslTransformationTypexslTransformation
-
Constructor Summary
Constructors Constructor Description ConverterTransformType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description XRechnungTypegetXRechnung()Gets the value of the xRechnung property.XslTransformationTypegetXslTransformation()Gets the value of the xslTransformation property.booleanisSetXRechnung()booleanisSetXslTransformation()voidsetXRechnung(XRechnungType value)Sets the value of the xRechnung property.voidsetXslTransformation(XslTransformationType value)Sets the value of the xslTransformation property.
-
-
-
Field Detail
-
xslTransformation
protected XslTransformationType xslTransformation
-
xRechnung
protected XRechnungType xRechnung
-
-
Method Detail
-
getXslTransformation
public XslTransformationType getXslTransformation()
Gets the value of the xslTransformation property.- Returns:
- possible object is
XslTransformationType
-
setXslTransformation
public void setXslTransformation(XslTransformationType value)
Sets the value of the xslTransformation property.- Parameters:
value- allowed object isXslTransformationType
-
isSetXslTransformation
public boolean isSetXslTransformation()
-
getXRechnung
public XRechnungType getXRechnung()
Gets the value of the xRechnung property.- Returns:
- possible object is
XRechnungType
-
setXRechnung
public void setXRechnung(XRechnungType value)
Sets the value of the xRechnung property.- Parameters:
value- allowed object isXRechnungType
-
isSetXRechnung
public boolean isSetXRechnung()
-
-