public Notification( NotificationLevel level, TaskCategory category, Date time, String message, boolean completed) { this.uid = CodeGenerator.generateCode(); this.level = level; this.category = category; this.time = time; this.message = message; this.completed = completed; }
@Override public void execute() { executeSql("update mapview set valuetype=mapvaluetype where valuetype is null"); executeSql("update mapview set legendtype=maplegendtype where legendtype is null"); executeSql("update mapview set legendsetid=maplegendsetid where legendsetid is null"); executeSql("alter table mapview drop column mapvaluetype"); executeSql("alter table mapview drop column maplegendtype"); executeSql("alter table mapview drop column maplegendsetid"); executeSql("alter table mapview drop column bounds"); executeSql("alter table mapview drop column code"); executeSql("alter table mapview drop column periodtypeid"); executeSql("update mapview set layer='thematic1' where layer is null"); executeSql("update mapview set valuetype='dataElement' where valuetype='dataelement'"); executeSql("alter table mapview alter column opacity type double precision"); String sql = "select mapviewid, name, userid, longitude, latitude, zoom from mapview where mapviewid not in (" + "select mapviewid from mapmapviews)"; BatchHandler<Map> batchHandler = batchHandlerFactory.createBatchHandler(MapBatchHandler.class).init(); try { ResultSet rs = statementManager.getHolder().getStatement().executeQuery(sql); while (rs.next()) { log.info("Upgrading map view..."); User user = null; int userId = rs.getInt("userid"); int mapViewId = rs.getInt("mapviewid"); if (userId != 0) { user = new User(); user.setId(userId); } String uid = CodeGenerator.generateCode(); Map map = new Map( rs.getString("name"), user, rs.getDouble("longitude"), rs.getDouble("latitude"), rs.getInt("zoom")); map.setUid(uid); int mapId = batchHandler.insertObject(map, true); statementManager .getHolder() .executeUpdate( "insert into mapmapviews (mapid,mapviewid,sort_order) values(" + mapId + "," + mapViewId + ",0);"); log.info("Upgraded map view: " + map); } } catch (Exception ex) { log.debug("Error", ex); return; } finally { batchHandler.flush(); } executeSql("alter table mapview drop column name"); executeSql("alter table mapview drop column userid"); executeSql("alter table mapview drop column longitude"); executeSql("alter table mapview drop column latitude"); executeSql("alter table mapview drop column zoom"); }
public Notification() { this.uid = CodeGenerator.generateCode(); }