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

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

There is a newer version: 1.0.5
Show newest version
package develop.toolkit.world.person;

import develop.toolkit.base.struct.Password;

import java.io.Serializable;

/**
 * 账号
 *
 * @author qiushui on 2019-02-26.
 */
public interface Account extends Serializable {

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy