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

org.macrocloud.kernel.toolkit.beans.BeanProperty Maven / Gradle / Ivy

There is a newer version: 1.1.0-RELEASE
Show newest version
package org.macrocloud.kernel.toolkit.beans;

import lombok.AllArgsConstructor;
import lombok.Getter;


/**
 * Bean属性.
 *
 */

@Getter
@AllArgsConstructor
public class BeanProperty {
	
	/** The name. */
	private final String name;
	
	/** The type. */
	private final Class type;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy