1 24 package org.objectweb.joram.shared.admin; 25 26 30 public abstract class SetRight extends AdminRequest { 31 32 private String userProxId; 33 34 private String destId; 35 36 43 public SetRight(String userProxId, String destId) { 44 this.userProxId = userProxId; 45 this.destId = destId; 46 } 47 48 49 public String getUserProxId() { 50 return userProxId; 51 } 52 53 54 public String getDestId() { 55 return destId; 56 } 57 } 58 | Popular Tags |