1 23 package org.objectweb.joram.mom.proxies; 24 25 import fr.dyade.aaa.agent.*; 26 27 public class ReturnConnectionNot extends Notification { 28 29 private OpenConnectionNot not; 30 31 private ConnectionContext ctx; 32 33 public ReturnConnectionNot( 34 OpenConnectionNot not, 35 ConnectionContext ctx) { 36 persistent = false; 37 this.not = not; 38 this.ctx = ctx; 39 } 40 41 public void Return() { 42 not.Return(ctx); 43 } 44 } 45 | Popular Tags |