com.sleepycat.persist.evolve.EvolveConfigBeanInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of je Show documentation
Show all versions of je Show documentation
Berkley Database Java Edition - build and runtime support.
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2002, 2013 Oracle and/or its affiliates. All rights reserved.
*
*/
package com.sleepycat.persist.evolve;
import com.sleepycat.util.ConfigBeanInfoBase;
import java.beans.BeanDescriptor;
import java.beans.PropertyDescriptor;
public class EvolveConfigBeanInfo extends ConfigBeanInfoBase {
@Override
public BeanDescriptor getBeanDescriptor() {
return getBdescriptor(EvolveConfig.class);
}
@Override
public PropertyDescriptor[] getPropertyDescriptors() {
return getPdescriptor(EvolveConfig.class);
}
}