ingo@25: /* ingo@25: * Copyright (c) 2011 by Intevation GmbH ingo@25: * ingo@25: * This program is free software under the LGPL (>=v2.1) ingo@25: * Read the file LGPL.txt coming with the software for details ingo@25: * or visit http://www.gnu.org/licenses/ if it does not exist. ingo@25: */ teichmann@5835: package org.dive4elements.river.client.shared.model; ingo@25: ingo@25: import java.io.Serializable; ingo@25: ingo@25: ingo@25: public interface User ingo@25: extends Serializable ingo@25: { ingo@25: String identifier(); ingo@25: ingo@25: String getName(); ingo@25: ingo@25: void setName(String name); ingo@25: ingo@25: void setIdentifier(String identifier); ingo@25: } ingo@25: // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :