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

org.apache.juneau.rest.labels.BeanDescription Maven / Gradle / Ivy

There is a newer version: 9.0.1
Show newest version
// ***************************************************************************************************************************
// * 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.rest.labels;

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

/**
 * Simple serializable bean description.
 *
 * 

* Given a particular class type, this serializes the class into the fully-qualified class name and the properties * associated with the class. * *

* Useful for rendering simple information about a bean during REST OPTIONS requests. */ @Bean(properties="type,properties") public final class BeanDescription { /** The bean class type. */ public String type; /** The bean properties. */ public BeanPropertyDescription[] properties; /** * Constructor * * @param c The bean class type. */ public BeanDescription(Class c) { type = c.getName(); BeanMeta bm = BeanContext.DEFAULT.getBeanMeta(c); properties = new BeanPropertyDescription[bm.getPropertyMetas().size()]; int i = 0; for (BeanPropertyMeta pm : bm.getPropertyMetas()) properties[i++] = new BeanPropertyDescription(pm.getName(), pm.getClassMeta()); } /** * Information about a bean property. */ public static class BeanPropertyDescription { /** The bean property name. */ public String name; /** The bean property filtered class type. */ public String type; /** * Constructor. * * @param name The bean property name. * @param type The bean property class type. */ public BeanPropertyDescription(String name, ClassMeta type) { this.name = name; this.type = type.getSerializedClassMeta(null).toString(); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy