All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.docx4j.jaxb.ProviderProperties Maven / Gradle / Ivy

Go to download

docx4j is a library which helps you to work with the Office Open XML file format as used in docx documents, pptx presentations, and xlsx spreadsheets.

There is a newer version: 11.4.11
Show newest version
package org.docx4j.jaxb;

import java.util.HashMap;
import java.util.Map;

/**
 * Allows you to set provider-specific properties.
 * 
 * This should generally not be necessary.
 *  
 * For JAXB Reference Implementation specific properties, see 
 * https://github.com/gf-metro/jaxb/blob/master/jaxb-ri/runtime/impl/src/main/java/com/sun/xml/bind/api/JAXBRIContext.java#L437
 * 
 * For MOXy specific properties, see 
 * https://github.com/eclipse/eclipselink.runtime/blob/master/moxy/org.eclipse.persistence.moxy/src/org/eclipse/persistence/jaxb/JAXBContextProperties.java
 * 
 * @author jharrop
 * @since 3.3.3
 */
public class ProviderProperties {

	private static Map providerProperties = new HashMap(); 	

	/** 
	 * Return the Map in which you can set provider-specific properties. 
	 * 
	 * @since 3.3.3 
	 */
	public static Map getProviderProperties() {
		
		return providerProperties;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy