01: /*
02: * Copyright 2001 Sun Microsystems, Inc. All rights reserved.
03: * PROPRIETARY/CONFIDENTIAL. Use of this product is subject to license terms.
04: */
05:
06: package com.sun.portal.search.admin.model;
07:
08: import com.iplanet.am.console.base.model.AMModel;
09: import java.util.Set;
10:
11: public interface CSServiceModel extends AMModel {
12: /*
13: * Method to make the model collect and cache the different attribute
14: * schemas.
15: */
16: void process();
17:
18: Set getInstances();
19:
20: }
|