01: // ***************************************************************
02: // * *
03: // * File: PartitionObject.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 PartitionObject {
16:
17: public void setPartition(int partition);
18:
19: public int getPartition();
20:
21: }
|