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

org.glassfish.jersey.moxy.json.MoxyJsonConfig Maven / Gradle / Ivy

/*
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 *
 * Copyright (c) 2012-2015 Oracle and/or its affiliates. All rights reserved.
 *
 * The contents of this file are subject to the terms of either the GNU
 * General Public License Version 2 only ("GPL") or the Common Development
 * and Distribution License("CDDL") (collectively, the "License").  You
 * may not use this file except in compliance with the License.  You can
 * obtain a copy of the License at
 * http://glassfish.java.net/public/CDDL+GPL_1_1.html
 * or packager/legal/LICENSE.txt.  See the License for the specific
 * language governing permissions and limitations under the License.
 *
 * When distributing the software, include this License Header Notice in each
 * file and include the License file at packager/legal/LICENSE.txt.
 *
 * GPL Classpath Exception:
 * Oracle designates this particular file as subject to the "Classpath"
 * exception as provided by Oracle in the GPL Version 2 section of the License
 * file that accompanied this code.
 *
 * Modifications:
 * If applicable, add the following below the License Header, with the fields
 * enclosed by brackets [] replaced by your own identifying information:
 * "Portions Copyright [year] [name of copyright owner]"
 *
 * Contributor(s):
 * If you wish your version of this file to be governed by only the CDDL or
 * only the GPL Version 2, indicate your decision by adding "[Contributor]
 * elects to include this software in this distribution under the [CDDL or GPL
 * Version 2] license."  If you don't indicate a single choice of license, a
 * recipient has the option to distribute your version of this file under
 * either the CDDL, the GPL Version 2 or to extend the choice of license to
 * its licensees as provided above.  However, if you add GPL Version 2 code
 * and therefore, elected the GPL Version 2 license, then the option applies
 * only if the new code is made subject to such option by the copyright
 * holder.
 */
package org.glassfish.jersey.moxy.json;

import java.util.Map;

import javax.ws.rs.ext.ContextResolver;

import javax.xml.bind.Marshaller;

import org.eclipse.persistence.jaxb.MarshallerProperties;
import org.eclipse.persistence.jaxb.UnmarshallerProperties;
import org.eclipse.persistence.oxm.XMLConstants;

import jersey.repackaged.com.google.common.collect.Maps;

/**
 * Configuration class for MOXy JSON provider.
 *
 * @author Michal Gajdos
 */
public final class MoxyJsonConfig {

    private final Map marshallerProperties = Maps.newHashMap();
    private final Map unmarshallerProperties = Maps.newHashMap();

    /**
     * Create a new configuration for {@link org.eclipse.persistence.jaxb.rs.MOXyJsonProvider} and initialize default properties.
     *
     * @see #MoxyJsonConfig(boolean)
     */
    public MoxyJsonConfig() {
        this(true);
    }

    /**
     * Create a new configuration for {@link org.eclipse.persistence.jaxb.rs.MOXyJsonProvider}. If the
     * {@code initDefaultProperties} is set to {@code true} then the following values are set:
     * 
    *
  • {@link javax.xml.bind.Marshaller#JAXB_FORMATTED_OUTPUT} - {@code false}
  • *
  • {@link org.eclipse.persistence.jaxb.JAXBContextProperties#JSON_INCLUDE_ROOT} - {@code false}
  • *
  • {@link org.eclipse.persistence.jaxb.MarshallerProperties#JSON_MARSHAL_EMPTY_COLLECTIONS} - {@code true}
  • *
  • {@link org.eclipse.persistence.jaxb.JAXBContextProperties#JSON_NAMESPACE_SEPARATOR} - * {@link org.eclipse.persistence.oxm.XMLConstants#DOT}
  • *
* * @param initDefaultProperties flag to determine whether the default values of properties mentioned above should be set or * not. */ public MoxyJsonConfig(final boolean initDefaultProperties) { if (initDefaultProperties) { // javax.xml.bind.Marshaller.JAXB_FORMATTED_OUTPUT setFormattedOutput(false); // org.eclipse.persistence.jaxb.JAXBContextProperties.JSON_INCLUDE_ROOT setIncludeRoot(false); // org.eclipse.persistence.jaxb.MarshallerProperties.JSON_MARSHAL_EMPTY_COLLECTIONS setMarshalEmptyCollections(true); // org.eclipse.persistence.jaxb.JAXBContextProperties.JSON_NAMESPACE_SEPARATOR setNamespaceSeparator(XMLConstants.DOT); } } /** * Copy constructor. * * @param that config to make a copy of. */ private MoxyJsonConfig(final MoxyJsonConfig that) { this.marshallerProperties.putAll(that.marshallerProperties); this.unmarshallerProperties.putAll(that.unmarshallerProperties); } /** * Set the value of the property for both {@code Marshaller} / {@code Unmarshaller}. * * @param name name of the property. * @param value value of the property. * @return a {@code MoxyJsonConfig} instance. */ public MoxyJsonConfig property(final String name, final Object value) { marshallerProperty(name, value); unmarshallerProperty(name, value); return this; } /** * Set the value of the property for used {@code Marshaller}. * * @param name name of the property. * @param value value of the property. * @return a {@code MoxyJsonConfig} instance. */ public MoxyJsonConfig marshallerProperty(final String name, final Object value) { marshallerProperties.put(name, value); return this; } /** * Set the value of the property for used {@code Unmarshaller}. * * @param name name of the property. * @param value value of the property. * @return a {@code MoxyJsonConfig} instance. */ public MoxyJsonConfig unmarshallerProperty(final String name, final Object value) { unmarshallerProperties.put(name, value); return this; } /** * Add properties from the given map to the existing marshaller properties. * * @param marshallerProperties map of marshaller properties. * @return a {@code MoxyJsonConfig} instance. */ public MoxyJsonConfig setMarshallerProperties(final Map marshallerProperties) { this.marshallerProperties.putAll(marshallerProperties); return this; } /** * Add properties from the given map to the existing unmarshaller properties. * * @param unmarshallerProperties map of unmarshaller properties. * @return a {@code MoxyJsonConfig} instance. */ public MoxyJsonConfig setUnmarshallerProperties(final Map unmarshallerProperties) { this.unmarshallerProperties.putAll(unmarshallerProperties); return this; } /** * Get marshaller properties. * * @return mutable map of marshaller properties. */ public Map getMarshallerProperties() { return marshallerProperties; } /** * Get unmarshaller properties. * * @return mutable map of unmarshaller properties. */ public Map getUnmarshallerProperties() { return unmarshallerProperties; } /** * @see org.eclipse.persistence.jaxb.rs.MOXyJsonProvider#getAttributePrefix() */ public String getAttributePrefix() { return (String) marshallerProperties.get(MarshallerProperties.JSON_ATTRIBUTE_PREFIX); } /** * @see org.eclipse.persistence.jaxb.rs.MOXyJsonProvider#setAttributePrefix(String) */ public MoxyJsonConfig setAttributePrefix(final String attributePrefix) { if (attributePrefix != null) { marshallerProperties.put(MarshallerProperties.JSON_ATTRIBUTE_PREFIX, attributePrefix); unmarshallerProperties.put(UnmarshallerProperties.JSON_ATTRIBUTE_PREFIX, attributePrefix); } else { marshallerProperties.remove(MarshallerProperties.JSON_ATTRIBUTE_PREFIX); unmarshallerProperties.remove(UnmarshallerProperties.JSON_ATTRIBUTE_PREFIX); } return this; } /** * @see org.eclipse.persistence.jaxb.rs.MOXyJsonProvider#isFormattedOutput() */ public boolean isFormattedOutput() { return (Boolean) marshallerProperties.get(Marshaller.JAXB_FORMATTED_OUTPUT); } /** * @see org.eclipse.persistence.jaxb.rs.MOXyJsonProvider#setFormattedOutput(boolean) */ public MoxyJsonConfig setFormattedOutput(final boolean formattedOutput) { marshallerProperties.put(Marshaller.JAXB_FORMATTED_OUTPUT, formattedOutput); return this; } /** * @see org.eclipse.persistence.jaxb.rs.MOXyJsonProvider#isIncludeRoot() */ public boolean isIncludeRoot() { return (Boolean) marshallerProperties.get(MarshallerProperties.JSON_INCLUDE_ROOT); } /** * @see org.eclipse.persistence.jaxb.rs.MOXyJsonProvider#setIncludeRoot(boolean) */ public MoxyJsonConfig setIncludeRoot(final boolean includeRoot) { marshallerProperties.put(MarshallerProperties.JSON_INCLUDE_ROOT, includeRoot); unmarshallerProperties.put(UnmarshallerProperties.JSON_INCLUDE_ROOT, includeRoot); return this; } /** * @see org.eclipse.persistence.jaxb.rs.MOXyJsonProvider#isMarshalEmptyCollections() */ public boolean isMarshalEmptyCollections() { return (Boolean) marshallerProperties.get(MarshallerProperties.JSON_MARSHAL_EMPTY_COLLECTIONS); } /** * @see org.eclipse.persistence.jaxb.rs.MOXyJsonProvider#setMarshalEmptyCollections(boolean) */ public MoxyJsonConfig setMarshalEmptyCollections(final boolean marshalEmptyCollections) { marshallerProperties.put(MarshallerProperties.JSON_MARSHAL_EMPTY_COLLECTIONS, marshalEmptyCollections); return this; } /** * @see org.eclipse.persistence.jaxb.rs.MOXyJsonProvider#getNamespacePrefixMapper() */ public Map getNamespacePrefixMapper() { return (Map) marshallerProperties.get(MarshallerProperties.NAMESPACE_PREFIX_MAPPER); } /** * @see org.eclipse.persistence.jaxb.rs.MOXyJsonProvider#setNamespacePrefixMapper(java.util.Map) */ public MoxyJsonConfig setNamespacePrefixMapper(final Map namespacePrefixMapper) { if (namespacePrefixMapper != null) { marshallerProperties.put(MarshallerProperties.NAMESPACE_PREFIX_MAPPER, namespacePrefixMapper); unmarshallerProperties.put(UnmarshallerProperties.JSON_NAMESPACE_PREFIX_MAPPER, namespacePrefixMapper); } else { marshallerProperties.remove(MarshallerProperties.NAMESPACE_PREFIX_MAPPER); unmarshallerProperties.remove(UnmarshallerProperties.JSON_NAMESPACE_PREFIX_MAPPER); } return this; } /** * @see org.eclipse.persistence.jaxb.rs.MOXyJsonProvider#getNamespaceSeparator() */ public char getNamespaceSeparator() { return (Character) marshallerProperties.get(MarshallerProperties.JSON_NAMESPACE_SEPARATOR); } /** * @see org.eclipse.persistence.jaxb.rs.MOXyJsonProvider#setNamespaceSeparator(char) */ public MoxyJsonConfig setNamespaceSeparator(final char namespaceSeparator) { marshallerProperties.put(MarshallerProperties.JSON_NAMESPACE_SEPARATOR, namespaceSeparator); unmarshallerProperties.put(UnmarshallerProperties.JSON_NAMESPACE_SEPARATOR, namespaceSeparator); return this; } /** * @see org.eclipse.persistence.jaxb.rs.MOXyJsonProvider#getValueWrapper() */ public String getValueWrapper() { return (String) marshallerProperties.get(MarshallerProperties.JSON_VALUE_WRAPPER); } /** * @see org.eclipse.persistence.jaxb.rs.MOXyJsonProvider#setValueWrapper(String) */ public MoxyJsonConfig setValueWrapper(final String valueWrapper) { if (valueWrapper != null) { marshallerProperties.put(MarshallerProperties.JSON_VALUE_WRAPPER, valueWrapper); unmarshallerProperties.put(UnmarshallerProperties.JSON_VALUE_WRAPPER, valueWrapper); } else { marshallerProperties.remove(MarshallerProperties.JSON_VALUE_WRAPPER); unmarshallerProperties.remove(UnmarshallerProperties.JSON_VALUE_WRAPPER); } return this; } /** * Create a {@link ContextResolver context resolver} for a current state of this {@code MoxyJsonConfig}. * * @return context resolver for this config. */ public ContextResolver resolver() { return new ContextResolver() { private final MoxyJsonConfig config = new MoxyJsonConfig(MoxyJsonConfig.this); @Override public MoxyJsonConfig getContext(final Class type) { return config; } }; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy