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

org.codehaus.jackson.annotate.JsonCreator Maven / Gradle / Ivy

Go to download

bundle wrapper for json libs: http://jackson.codehaus.org/ http://www.json.org/java/ https://github.com/FasterXML/jackson-datatype-json-org

The newest version!
package org.codehaus.jackson.annotate;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Marker annotation that can be used to define constructors and factory
 * methods as one to use for instantiating new instances of the associated
 * class.
 */
@Target({ElementType.METHOD, ElementType.CONSTRUCTOR})
@Retention(RetentionPolicy.RUNTIME)
@JacksonAnnotation
public @interface JsonCreator
{
    // no values, since there's no property
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy