Package com.serotonin.m2m2.vo

Examples of com.serotonin.m2m2.vo.User


        new WatchListDao().saveWatchList(watchList);
    }

    @DwrPermission(user = true)
    public void moveUp(int pointId) {
        User user = Common.getUser();
        WatchList watchList = getWatchList(user);
        WatchListCommon.ensureWatchListEditPermission(user, watchList);
        List<DataPointVO> points = watchList.getPointList();

        DataPointVO point;
View Full Code Here


        new WatchListDao().saveWatchList(watchList);
    }

    @DwrPermission(user = true)
    public void moveDown(int pointId) {
        User user = Common.getUser();
        WatchList watchList = getWatchList(user);
        WatchListCommon.ensureWatchListEditPermission(user, watchList);
        List<DataPointVO> points = watchList.getPointList();

        DataPointVO point;
View Full Code Here

        return data;
    }

    private void prepareWatchList(WatchList watchList, User user) {
        int access = watchList.getUserAccess(user);
        User owner = new UserDao().getUser(watchList.getUserId());
        for (DataPointVO point : watchList.getPointList())
            updateSetPermission(point, access, owner);
    }
View Full Code Here

    @DwrPermission(user = true)
    public void getChartData(int[] pointIds, int fromYear, int fromMonth, int fromDay, int fromHour, int fromMinute,
            int fromSecond, boolean fromNone, int toYear, int toMonth, int toDay, int toHour, int toMinute,
            int toSecond, boolean toNone) {
        User user = Common.getUser();
        DateTimeZone dtz = user.getDateTimeZoneInstance();
        DateTime from = createDateTime(fromYear, fromMonth, fromDay, fromHour, fromMinute, fromSecond, fromNone, dtz);
        DateTime to = createDateTime(toYear, toMonth, toDay, toHour, toMinute, toSecond, toNone, dtz);
        DataExportDefinition def = new DataExportDefinition(pointIds, from, to);
        user.setDataExportDefinition(def);
    }
View Full Code Here

    public static final String KEY_USER_WATCHLISTS = "userWatchLists";
    public static final String KEY_USERNAME = "username";

    @Override
    public View handleRequest(HttpServletRequest request, HttpServletResponse response, Map<String, Object> model) {
        User user = Common.getUser(request);
        prepareModel(request, model, user);
        return null;
    }
View Full Code Here

                if (changed)
                    watchListDao.saveWatchList(watchList);
            }

            User watchListUser = userDao.getUser(watchList.getUserId());
            String username;
            if(watchListUser == null){
              username = Common.translate("watchlist.userDNE");
            }else{
              username = watchListUser.getUsername();
            }
            //Add the Username to the name to know who's it is
            watchListUsers.add(new IntStringPair(watchList.getId(), username));
            userWatchLists.add(new IntStringPair(watchList.getId(), watchList.getName() + " (" + username + ")"));
           
View Full Code Here

    @Override
    public void jsonRead(JsonReader reader, JsonObject jsonObject) throws JsonException {
        String username = jsonObject.getString("user");
        if (StringUtils.isBlank(username))
            throw new TranslatableJsonException("emport.error.missingValue", "user");
        User user = new UserDao().getUser(username);
        if (user == null)
            throw new TranslatableJsonException("emport.error.missingUser", username);
        userId = user.getId();

        JsonArray jsonDataPoints = jsonObject.getJsonArray("dataPoints");
        if (jsonDataPoints != null) {
            pointList.clear();
            DataPointDao dataPointDao = new DataPointDao();
View Full Code Here

     *
     * @param viewId
     * @return
     */
    public List<ViewComponentState> getViewPointData(boolean edit) {
        User user = Common.getUser();

        GraphicalView view;
        if (edit)
            view = GraphicalViewsCommon.getUserEditView(user);
        else
View Full Code Here

        return view.getViewUsers();
    }

    @DwrPermission(user = true)
    public void deleteViewShare() {
        User user = Common.getUser();
        GraphicalView view = GraphicalViewsCommon.getUserView(user);
        new GraphicalViewDao().removeUserFromView(view.getId(), user.getId());
    }
View Full Code Here

    // View editing
    //
    @DwrPermission(user = true)
    public Map<String, Object> editInit() {
        Map<String, Object> result = new HashMap<String, Object>();
        User user = Common.getUser();

        // Users with which to share.
        result.put("shareUsers", getShareUsers(user));

        // Users already sharing with.
View Full Code Here

TOP

Related Classes of com.serotonin.m2m2.vo.User

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.