1 package yukihane.inqubus.saccubus.prompt;
3 import saccubus.worker.profile.CommentProfile;
4 import saccubus.worker.profile.LoginProfile;
5 import yukihane.inqubus.config.ConfigCommentProfile;
6 import yukihane.inqubus.config.ConfigDownloadProfile;
7 import yukihane.inqubus.config.ConfigLoginProfile;
10 * さきゅばすのコマンドプロンプト仕様にあわせるためのDownloadProfile実装
13 class DownloadProfileImpl extends ConfigDownloadProfile {
15 private final LoginProfile loginProfile;
16 private final CommentProfile commentProfile;
18 DownloadProfileImpl(final String mail, final String pass, final long time) {
19 this.loginProfile = new ConfigLoginProfile() {
22 public String getMail() {
27 public String getPassword() {
32 this.commentProfile = new ConfigCommentProfile() {
35 public long getBackLogPoint() {
42 public LoginProfile getLoginProfile() {
47 public CommentProfile getCommentProfile() {
48 return this.commentProfile;