summaryrefslogtreecommitdiff
path: root/client/Piztor/src/com/macaroon/piztor/ReqLogin.java
blob: 294cae31d9a75b9f1c0b416a1e7ffed13873b4c5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.macaroon.piztor;

//--------------------------------------//
//			authentication				//
//--------------------------------------//

public class ReqLogin extends Req{
	String user;	//username
	String pass;	//password
	
	ReqLogin(String u,String p,long time,long alive){
		super(0,0,time,alive);	//for type 0
		user = u;
		pass = p;
	}
}