view gwt-client/src/main/java/org/dive4elements/river/client/shared/model/DataCageTree.java @ 9520:b188255f08b3

Allow to filter datacage entries by module-roles of current user. Hide Sinfo, Uinfo and Minfo branches if user does not have those modules.
author gernotbelger
date Mon, 01 Oct 2018 16:21:20 +0200
parents 4b29bb2c785f
children
line wrap: on
line source
/* Copyright (C) 2011, 2012, 2013 by Bundesanstalt für Gewässerkunde
 * Software engineering by Intevation GmbH
 *
 * This file is Free Software under the GNU AGPL (>=v3)
 * and comes with ABSOLUTELY NO WARRANTY! Check out the
 * documentation coming with Dive4Elements River for details.
 */

package org.dive4elements.river.client.shared.model;

import java.io.Serializable;

public class DataCageTree implements Serializable {

    private static final long serialVersionUID = 1L;

    public interface Visitor {
        boolean accept(DataCageNode node);
    }

    private DataCageNode root;

    public DataCageTree() {
    }

    public DataCageTree(final DataCageNode root) {
        this.root = root;
    }

    public void setRoot(final DataCageNode root) {
        this.root = root;
    }

    public DataCageNode getRoot() {
        return this.root;
    }
}

http://dive4elements.wald.intevation.org