1 23 24 29 42 43 48 49 package com.sun.enterprise.util.pool; 50 51 import java.rmi.RemoteException ; 52 53 56 public class PoolListenerAdapter 57 implements PoolListener 58 { 59 62 public void afterCreate(Object object) { 63 } 64 65 68 public void beforeDestroy(Object object) { 69 } 70 71 74 public void beforeWait(Object object) { 75 } 76 77 80 public void afterNotify(Object object) { 81 } 82 83 84 85 88 public void onRecycle() { 89 } 90 91 94 public void beforeHold() { 95 } 96 97 100 public void afterHold() { 101 } 102 103 106 public void onClose() { 107 } 108 109 } | Popular Tags |