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

com.fasterxml.jackson.annotation.JsonAnyGetter Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
/*
 * Copyright © 2019 Dominokit
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.fasterxml.jackson.annotation;

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 a non-static, no-argument method to be an "any
 * getter"; accessor for getting a set of key/value pairs, to be serialized as part of containing
 * POJO (similar to unwrapping) along with regular property values it has. This typically serves as
 * a counterpart to "any setter" mutators (see {@link JsonAnySetter}). Note that the return type of
 * annotated methods must be {@link java.util.Map}).
 *
 * 

As with {@link JsonAnySetter}, only one property should be annotated with this annotation; if * multiple methods are annotated, an exception may be thrown. */ @Target({ElementType.ANNOTATION_TYPE, ElementType.METHOD}) @Retention(RetentionPolicy.RUNTIME) @JacksonAnnotation public @interface JsonAnyGetter { /** * Optional argument that defines whether this annotation is active or not. The only use for value * 'false' if for overriding purposes. Overriding may be necessary when used with "mix-in * annotations" (aka "annotation overrides"). For most cases, however, default value of "true" is * just fine and should be omitted. * * @since 2.9 * @return boolean */ boolean enabled() default true; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy