summaryrefslogtreecommitdiff
path: root/client/Piztor/src/com/macaroon/piztor/ReqLocation.java
diff options
context:
space:
mode:
Diffstat (limited to 'client/Piztor/src/com/macaroon/piztor/ReqLocation.java')
-rw-r--r--client/Piztor/src/com/macaroon/piztor/ReqLocation.java8
1 files changed, 5 insertions, 3 deletions
diff --git a/client/Piztor/src/com/macaroon/piztor/ReqLocation.java b/client/Piztor/src/com/macaroon/piztor/ReqLocation.java
index ee4824c..4ed1ffc 100644
--- a/client/Piztor/src/com/macaroon/piztor/ReqLocation.java
+++ b/client/Piztor/src/com/macaroon/piztor/ReqLocation.java
@@ -5,10 +5,12 @@ package com.macaroon.piztor;
//--------------------------------------//
public class ReqLocation extends Req{
- int gid; //group id;
+ int company; //group id;
+ int section;
- ReqLocation(String token,String name,int groupid,long time,long alive){
+ ReqLocation(String token,String name,int com,int sec,long time,long alive){
super(2,token,name,time,alive); //for type 2
- gid = groupid;
+ company = com;
+ section = sec;
}
} \ No newline at end of file