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

org.apache.juneau.jsonschema.JsonSchemaBeanPropertyMeta Maven / Gradle / Ivy

// ***************************************************************************************************************************
// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements.  See the NOTICE file *
// * distributed with this work for additional information regarding copyright ownership.  The ASF licenses this file        *
// * to you 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 org.apache.juneau.jsonschema;

import static org.apache.juneau.common.internal.ThrowableUtils.*;

import org.apache.juneau.*;
import org.apache.juneau.annotation.*;
import org.apache.juneau.collections.*;
import org.apache.juneau.parser.*;

/**
 * Metadata on bean properties specific to the JSON-Schema pulled from the {@link Schema @Schema} annotation
 * on the bean property.
 *
 * 
See Also:
*/ public class JsonSchemaBeanPropertyMeta extends ExtendedBeanPropertyMeta { /** * Default instance. */ public static final JsonSchemaBeanPropertyMeta DEFAULT = new JsonSchemaBeanPropertyMeta(); private final JsonMap schema; /** * Constructor. * * @param bpm The metadata of the bean property of this additional metadata. * @param mp JSON-schema metadata provider (for finding information about other artifacts). */ public JsonSchemaBeanPropertyMeta(BeanPropertyMeta bpm, JsonSchemaMetaProvider mp) { super(bpm); this.schema = new JsonMap(); try { bpm.forEachAnnotation(Schema.class, x -> true, x -> schema.append(SchemaAnnotation.asMap(x))); } catch (ParseException e) { throw asRuntimeException(e); } } private JsonSchemaBeanPropertyMeta() { super(null); this.schema = JsonMap.EMPTY_MAP; } /** * Returns the schema information gathered from all the {@link Schema @Schema} annotations on the bean property. * * @return The schema information as a generic map. Never null. */ protected JsonMap getSchema() { return schema; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy