// Copyright (c) 2003-present, Jodd Team (http://jodd.org)
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// 1. Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
package jodd.json;
import jodd.Jodd;
import jodd.json.meta.JSON;
import jodd.json.meta.JsonAnnotationManager;
import java.lang.annotation.Annotation;
/**
* Jodd JSON module.
*/
public class JoddJson {
public static final String DEFAULT_CLASS_METADATA_NAME = "__class";
/**
* Annotation used for marking the properties.
*/
public static Class<? extends Annotation> jsonAnnotation = JSON.class;
/**
* Default JSON type serializers.
*/
public static TypeJsonSerializerMap defaultSerializers = new TypeJsonSerializerMap();
/**
* Specifies if 'class' metadata is used. When set, class metadata
* is used by {@link jodd.json.JsonSerializer} and all objects
* will have additional field with the class type in the resulting JSON.
* {@link jodd.json.JsonParser} will also consider this flag to build
* correct object type. If <code>null</code>, class information is not used.
*/
public static String classMetadataName = null;
/**
* Defines default behavior of a {@link jodd.json.JsonSerializer}.
* If set to <code>true</code>, objects will be serialized
* deep, so all collections and arrays will get serialized.
*/
public static boolean deepSerialization = false;
/**
* Defines if parser will use extended paths information
* and path matching.
*/
public static boolean useAltPathsByParser = false;
/**
* List of excluded types for serialization.
*/
public static Class[] excludedTypes = null;
/**
* List of excluded types names for serialization. Type name
* can contain wildcards (<code>*</code> and <code>?</code>).
*/
public static String[] excludedTypeNames = null;
/**
* When <code>true</code>, then search for first annotated
* class or interface and use it's data.
*/
public static boolean serializationSubclassAware = true;
/**
* Default JSON annotation manager.
*/
public static JsonAnnotationManager annotationManager = new JsonAnnotationManager();
// ---------------------------------------------------------------- module
static {
init();
}
public static void init() {
Jodd.init(JoddJson.class);
}
}