com.scene7.ipsapi.FontFieldUpdate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aem-sdk-api Show documentation
Show all versions of aem-sdk-api Show documentation
The Adobe Experience Manager SDK
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.06.06 at 01:39:50 PM UTC
//
package com.scene7.ipsapi;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for FontFieldUpdate complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="FontFieldUpdate">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="assetHandle" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="fontName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="postscriptName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="rtfName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="fontFamily" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="style" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="typeName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FontFieldUpdate", namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", propOrder = {
"assetHandle",
"fontName",
"postscriptName",
"rtfName",
"fontFamily",
"style",
"typeName",
"type"
})
public class FontFieldUpdate {
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", required = true)
protected String assetHandle;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected String fontName;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected String postscriptName;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected String rtfName;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected String fontFamily;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected String style;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected String typeName;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected String type;
/**
* Gets the value of the assetHandle property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAssetHandle() {
return assetHandle;
}
/**
* Sets the value of the assetHandle property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAssetHandle(String value) {
this.assetHandle = value;
}
/**
* Gets the value of the fontName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFontName() {
return fontName;
}
/**
* Sets the value of the fontName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFontName(String value) {
this.fontName = value;
}
/**
* Gets the value of the postscriptName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPostscriptName() {
return postscriptName;
}
/**
* Sets the value of the postscriptName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPostscriptName(String value) {
this.postscriptName = value;
}
/**
* Gets the value of the rtfName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRtfName() {
return rtfName;
}
/**
* Sets the value of the rtfName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRtfName(String value) {
this.rtfName = value;
}
/**
* Gets the value of the fontFamily property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFontFamily() {
return fontFamily;
}
/**
* Sets the value of the fontFamily property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFontFamily(String value) {
this.fontFamily = value;
}
/**
* Gets the value of the style property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStyle() {
return style;
}
/**
* Sets the value of the style property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStyle(String value) {
this.style = value;
}
/**
* Gets the value of the typeName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTypeName() {
return typeName;
}
/**
* Sets the value of the typeName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTypeName(String value) {
this.typeName = value;
}
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setType(String value) {
this.type = value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy