Package org.geoserver.catalog

Examples of org.geoserver.catalog.Info


        return (T) sessionFactory.getCurrentSession().merge(entity);
    }
   
    protected void delete(Info entity) {
        Session session = sessionFactory.getCurrentSession();
        Info attached = (Info) session.merge(entity);
        session.delete(attached);
    }
View Full Code Here


            this.id = id;
        }

        @Override
        public Info call() throws Exception {
            Info info;
            try {
                info = template.queryForObject("select blob from object where id = :id",
                        ImmutableMap.of("id", id), configRowMapper);
            } catch (EmptyResultDataAccessException noSuchObject) {
                return null;
View Full Code Here

            for (int i = 0; i < propertyNames.length; i++) {
                propertyNamesChanged.add(propertyNames[i]);
            }
        }
       
        Info info = (Info) entity;
        Event e = new Event(info, propertyNamesChanged);
       
        if (events.get() == null) {
            events.set(new ArrayList());
        }
View Full Code Here

TOP

Related Classes of org.geoserver.catalog.Info

Copyright © 2018 www.massapicom. 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.