view artifacts-common/src/main/java/de/intevation/artifacts/common/model/User.java @ 440:b8e19b790b92

Extracted README-ish ChangeLog entry for contrib/run.sh to proper place (contrib/README).
author Felix Wolfsteller <felix.wolfsteller@intevation.de>
date Wed, 17 Oct 2012 22:24:58 +0200
parents 901f384ddad9
children
line wrap: on
line source
package de.intevation.artifacts.common.model;

import java.io.Serializable;

/**
 * An interface that describes a user of the system.
 *
 * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a>
 */
public interface User extends Serializable {

    /**
     * This method returns the firstname of the user.
     *
     * @return the firstname.
     */
    public String getFirstName();


    /**
     * Sets the user's firstname.
     *
     * @param firstName The user's firstname.
     */
    public void setFirstName(String firstName);


    /**
     * This method returns the lastname of the user.
     *
     * @return the lastname.
     */
    public String getLastName();


    /**
     * Sets the user's lastname.
     *
     * @param lastName The user's lastname.
     */
    public void setLastName(String lastName);
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org