1 24 package org.objectweb.joram.shared.admin; 25 26 30 public class DeleteUser extends AdminRequest { 31 private static final long serialVersionUID = 1914179540965247852L; 32 33 34 private String userName; 35 36 private String proxId; 37 38 44 public DeleteUser(String userName, String proxId) { 45 this.userName = userName; 46 this.proxId = proxId; 47 } 48 49 50 public String getUserName() { 51 return userName; 52 } 53 54 55 public String getProxId() { 56 return proxId; 57 } 58 } 59 | Popular Tags |