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

public class Req{
	int type;		//request type
	String token;		//authentciation
	String uname;       //username
	long time;		//current time
	long alive;		//alive time
	Req(int t,String k,String name,long tm,long av){
		type = t;
		token = k;
		uname = name;
		time = tm;
		alive = av;
	}
}