01: /*
02: * Copyright 2005 Sun Microsystems, Inc. All
03: * rights reserved. Use of this product is subject
04: * to license terms. Federal Acquisitions:
05: * Commercial Software -- Government Users
06: * Subject to Standard License Terms and
07: * Conditions.
08: *
09: * Sun, Sun Microsystems, the Sun logo, and Sun ONE
10: * are trademarks or registered trademarks of Sun Microsystems,
11: * Inc. in the United States and other countries.
12: */
13:
14: package com.sun.portal.wsrp.common.registry;
15:
16: import com.sun.portal.wsrp.WSRPException;
17: import java.util.List;
18:
19: public interface WSRPOrganization extends RegistryElement {
20: public void addProducer(WSRPProducer producer);
21:
22: public void addPortlet(WSRPPortlet portlet);
23:
24: public List getProducers();
25:
26: public List getPortlets();
27:
28: public void removeProducer(WSRPProducer producer);
29:
30: public void removePortlet(WSRPPortlet portlet);
31:
32: public void setPersonName(String personName);
33:
34: public String getPersonName();
35:
36: public void setPersonPhoneNo(String number);
37:
38: public String getPersonPhoneNo();
39:
40: public void setEmail(String email);
41:
42: public String getEmail();
43:
44: }
|