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

develop.toolkit.world.person.Account Maven / Gradle / Ivy

The newest version!
package develop.toolkit.world.person;

import develop.toolkit.world.normal.Password;

import java.io.Serializable;

/**
 * 账号
 *
 * @author qiushui on 2019-02-26.
 */
@SuppressWarnings("unused")
public interface Account extends Serializable {

    /**
     * 获得账号
     */
    String getAccount();

    /**
     * 获得密码
     */
    Password getPassword();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy