comparison flys-client/src/main/java/de/intevation/flys/client/shared/model/User.java @ 25:2da6be38d8b6

Added a User interface and a default implementation to handle users in this client. flys-client/trunk@1411 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Mon, 07 Mar 2011 13:40:37 +0000
parents
children
comparison
equal deleted inserted replaced
24:8825ce0a537e 25:2da6be38d8b6
1 /*
2 * Copyright (c) 2011 by Intevation GmbH
3 *
4 * This program is free software under the LGPL (>=v2.1)
5 * Read the file LGPL.txt coming with the software for details
6 * or visit http://www.gnu.org/licenses/ if it does not exist.
7 */
8 package de.intevation.flys.client.shared.model;
9
10 import java.io.Serializable;
11
12
13 public interface User
14 extends Serializable
15 {
16 String identifier();
17
18 String getName();
19
20 void setName(String name);
21
22 void setIdentifier(String identifier);
23 }
24 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org