OSDN Git Service

ダウンロード失敗をIOExceptionで返すように変更。
[coroid/inqubus.git] / frontend / src / saccubus / converter / filegetter / LoginInfo.java
1 /*
2  * To change this template, choose Tools | Templates
3  * and open the template in the editor.
4  */
5 package saccubus.converter.filegetter;
6
7 import saccubus.converter.profile.Proxy;
8
9 /**
10  *
11  * @author yuki
12  */
13 public class LoginInfo {
14
15     private final String mail;
16     private final String pass;
17     private final Proxy proxy;
18
19     public LoginInfo(String mail, String pass, Proxy proxy) {
20         this.mail = mail;
21         this.pass = pass;
22         this.proxy = proxy;
23     }
24
25     public String getMail() {
26         return mail;
27     }
28
29     public String getPass() {
30         return pass;
31     }
32
33     public Proxy getProxy() {
34         return proxy;
35     }
36 }