All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.evasion.module.common.entity.IAccount Maven / Gradle / Ivy

The newest version!
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package com.evasion.module.common.entity;

import com.evasion.entity.Person;
import java.util.Date;

/**
 *
 * @author sglon
 */
public interface IAccount {

    Long getId();

    void setId(Long id);

    String getEmail();

    void setEmail(String email);

    Person getPerson();

    void setPerson(Person person);

    Date getCreationDate();

    Date getLastLogin();

    void setPassword(String password);

    String getUsername();

    void setUsername(String username);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy