1 26 package org.objectweb.joram.mom.proxies; 27 28 import fr.dyade.aaa.agent.*; 29 30 public class ProxyRequestGroupNot extends Notification { 31 32 private RequestNot[] requests; 33 34 public ProxyRequestGroupNot(RequestNot[] array) { 35 persistent = false; 36 requests = array; 37 } 38 39 public RequestNot[] getRequests() { 40 return requests; 41 } 42 } 43 | Popular Tags |