01: // ***************************************************************
02: // * *
03: // * File: ObjectManager.java *
04: // * *
05: // * Copyright (c) 2002 Sun Microsystems, Inc. *
06: // * All rights reserved. *
07: // * *
08: // * *
09: // * Author - alejandro.abdelnur@sun.com *
10: // * *
11: // ***************************************************************
12:
13: package com.sun.portal.common.pool;
14:
15: public interface ObjectManager {
16:
17: public Object createObject(Object param);
18:
19: public void destroyObject(Object o);
20:
21: }
|