io.github.nichetoolkit.rest.constant.XmlConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest-toolkit-utils Show documentation
Show all versions of rest-toolkit-utils Show documentation
Rest toolkit utils project for Spring Boot
The newest version!
package io.github.nichetoolkit.rest.constant;
/**
* XmlConstants
* The xml constants interface.
* @author Cyan ([email protected])
* @since Jdk1.8
*/
public interface XmlConstants {
/**
* XML_HEADERS_KEY
* {@link java.lang.String} The constant XML_HEADERS_KEY
field.
* @see java.lang.String
*/
String XML_HEADERS_KEY = "com.sun.xml.internal.bind.xmlHeaders";
/**
* XML_HEADERS_VALUE
* {@link java.lang.String} The constant XML_HEADERS_VALUE
field.
* @see java.lang.String
*/
String XML_HEADERS_VALUE = "";
/**
* XML_DECLARATION
* {@link java.lang.String} The constant XML_DECLARATION
field.
* @see java.lang.String
*/
String XML_DECLARATION = "com.sun.xml.internal.bind.xmlDeclaration";
}