Package org.geoserver.config.hibernate.beans

Examples of org.geoserver.config.hibernate.beans.LoggingInfoImplHb.copyFrom()


    public void setLogging(LoggingInfo entity) {
        LoggingInfoImplHb old = (LoggingInfoImplHb) getLogging();
        if (old == null) {
            entityManager.persist(entity);
        } else {
            old.copyFrom(entity);
            entityManager.merge(old);
        }
    }

    public LoggingInfo getLogging() {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.