OSDN Git Service

動画変換クラスのクラス名変更
[coroid/inqubus.git] / frontend / src / saccubus / worker / profile / LoginProfile.java
1 package saccubus.worker.profile;
2
3 /**
4  * ニコニコ動画サービスへのログイン情報を保持するためのプロファイルです.
5  * @author yuki
6  */
7 public interface LoginProfile {
8
9     /** @return ログインID(メールアドレス). */
10     public String getMail();
11
12     /** @return ログインパスワード. */
13     public String getPassword();
14 }