Package com.serotonin.m2m2.vo

Examples of com.serotonin.m2m2.vo.User


    @DwrPermission(user = true)
    public ViewComponent addComponent(String componentName) {
        ViewComponent viewComponent = ViewComponent.newInstance(componentName);

        User user = Common.getUser();
        GraphicalView view = GraphicalViewsCommon.getUserEditView(user);
        view.addViewComponent(viewComponent);
        viewComponent.validateDataPoint(user, false);

        return viewComponent;
View Full Code Here


    @DwrPermission(user = true)
    public ProcessResult setPointComponentSettings(String pointComponentId, int dataPointId, String name,
            boolean settable, String bkgdColorOverride, boolean displayControls, int x, int y) {
        ProcessResult response = new ProcessResult();
        PointComponent pc = (PointComponent) getViewComponent(pointComponentId);
        User user = Common.getUser();

        DataPointVO dp = new DataPointDao().getDataPoint(dataPointId);
        if (dp == null || !Permissions.hasDataPointReadPermission(user, dp))
            response.addContextualMessage("settingsPointInfo", "validate.required");
View Full Code Here

        return response;
    }

    @DwrPermission(user = true)
    public List<String> getViewComponentIds() {
        User user = Common.getUser();
        List<String> result = new ArrayList<String>();
        for (ViewComponent vc : GraphicalViewsCommon.getUserEditView(user).getViewComponents())
            result.add(vc.getId());
        return result;
    }
View Full Code Here

     * @param valueStr
     * @return
     */
    @DwrPermission(user = true)
    public String setViewPoint(String viewComponentId, String valueStr) {
        User user = Common.getUser();
        GraphicalView view = GraphicalViewsCommon.getUserView(user);
        DataPointVO point = view.findDataPoint(viewComponentId);

        if (point != null) {
            // Check that setting is allowed.
View Full Code Here

        if (StringUtils.isBlank(name))
            response.addContextualMessage("compoundName", "dsEdit.validate.required");
    }

    private void saveCompoundPoints(CompoundComponent c, List<StringStringPair> childPointIds) {
        User user = Common.getUser();

        for (StringStringPair kvp : childPointIds) {
            int dataPointId = -1;
            try {
                dataPointId = Integer.parseInt(kvp.getValue());
View Full Code Here

    @DwrPermission(user = true)
    public ProcessResult saveView(String name, String xid, int anonymousAccess) {
        ProcessResult result = new ProcessResult();

        User user = Common.getUser();
        GraphicalView view = GraphicalViewsCommon.getUserEditView(user);

        view.setName(name);
        view.setXid(xid);
        view.setAnonymousAccess(anonymousAccess);
        view.validate(result);

        if (!result.getHasMessages()) {
            view.setUserId(user.getId());
            new GraphicalViewDao().saveView(view);
            result.addData("view", view);
        }

        return result;
View Full Code Here

    @SuppressWarnings("unchecked")
    @Override
    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws IOException {
        if (ServletFileUpload.isMultipartContent(request)) {
            User user = Common.getUser(request);
            GraphicalView view = GraphicalViewsCommon.getUserEditView(user);

            ServletFileUpload upload = new ServletFileUpload(new DiskFileItemFactory());

            List<FileItem> items;
View Full Code Here

* @author Matthew Lohbihler
*/
public class PointLinksDwr extends ModuleDwr {
    @DwrPermission(user = true)
    public Map<String, Object> init() {
        User user = Common.getUser();
        Map<String, Object> data = new HashMap<String, Object>();

        // Get the points that this user can access.
        List<DataPointVO> allPoints = new DataPointDao().getDataPoints(DataPointExtendedNameComparator.instance, false);
        List<IntStringPair> sourcePoints = new ArrayList<IntStringPair>();
View Full Code Here

            if (getModule().license() == null)
                ValidationUtils.reject(errors, "crowd.license");

            // The user is logged into Crowd. Make sure the username is valid in this instance.
            User user = new UserDao().getUser(username);
            if (user == null)
                ValidationUtils.rejectValue(errors, "username", "login.validation.noSuchUser");
            else {
                // Validate some stuff about the user.
                if (user.isDisabled())
                    ValidationUtils.reject(errors, "login.validation.accountDisabled");
                else {
                    if (CrowdUtils.isAuthenticated(request, response)) {
                        CrowdUtils.setCrowdAuthenticated(user);
                        return user;
View Full Code Here

public class MobileWatchListHandler extends WatchListHandler {
    public static final String KEY_WATCHLIST_DATA = "watchListData";

    @Override
    public View handleRequest(HttpServletRequest request, HttpServletResponse response, Map<String, Object> model) {
        User user = Common.getUser(request);
        WatchListDao watchListDao = new WatchListDao();

        // Check for a watchlist id parameter. If given, update the user.
        try {
            int watchListId = Integer.parseInt(request.getParameter("watchListId"));

            WatchList watchList = watchListDao.getWatchList(watchListId);
            WatchListCommon.ensureWatchListPermission(user, watchList);
            watchListDao.saveSelectedWatchList(user.getId(), watchList.getId());
        }
        catch (NumberFormatException e) {
            // no op
        }
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.