1 24 package org.objectweb.joram.mom.notifications; 25 26 import fr.dyade.aaa.agent.AgentId; 27 28 29 33 public class SetRightRequest extends AdminRequest 34 { 35 36 private AgentId client; 37 42 private int right; 43 44 45 53 public SetRightRequest(String id, AgentId client, int right) 54 { 55 super(id); 56 this.client = client; 57 this.right = right; 58 } 59 60 61 62 public AgentId getClient() 63 { 64 return client; 65 } 66 67 72 public int getRight() 73 { 74 return right; 75 } 76 } 77 | Popular Tags |