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

springdao.support.DaoPropertyEditor Maven / Gradle / Ivy

package springdao.support;

import java.beans.PropertyEditorSupport;
import org.springframework.util.StringUtils;
import springdao.RepositoryManager;

/**
 *
 * @author Kent Yeh
 */
public class DaoPropertyEditor extends PropertyEditorSupport {

    private final RepositoryManager daoManager;

    public DaoPropertyEditor(RepositoryManager daoManager) {
        this.daoManager = daoManager;
    }

    public RepositoryManager getDaoManager() {
        return daoManager;
    }

    @Override
    public String getAsText() {
        return getValue() == null ? "" : getValue().toString();
    }

    @Override
    public void setAsText(String text) throws IllegalArgumentException {
        try {
            setValue(StringUtils.hasText(text) ? daoManager.findByPrimaryKey(text) : null);
        } catch (RuntimeException e) {
            setValue(null);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy