001 /** 002 * 003 * Copyright 2003-2004 The Apache Software Foundation 004 * 005 * Licensed under the Apache License, Version 2.0 (the "License"); 006 * you may not use this file except in compliance with the License. 007 * You may obtain a copy of the License at 008 * 009 * http://www.apache.org/licenses/LICENSE-2.0 010 * 011 * Unless required by applicable law or agreed to in writing, software 012 * distributed under the License is distributed on an "AS IS" BASIS, 013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 014 * See the License for the specific language governing permissions and 015 * limitations under the License. 016 */ 017 018 // 019 // This source code implements specifications defined by the Java 020 // Community Process. In order to remain compliant with the specification 021 // DO NOT add / change / or delete method signatures! 022 // 023 package javax.xml.registry.infomodel; 024 025 import java.util.Collection; 026 import javax.xml.registry.JAXRException; 027 028 /** 029 * @version $Revision$ $Date$ 030 */ 031 public interface Organization extends RegistryObject { 032 void addChildOrganization(Organization organization) throws JAXRException; 033 034 void addChildOrganizations(Collection organizations) throws JAXRException; 035 036 void addService(Service service) throws JAXRException; 037 038 void addServices(Collection services) throws JAXRException; 039 040 void addUser(User user) throws JAXRException; 041 042 void addUsers(Collection users) throws JAXRException; 043 044 int getChildOrganizationCount() throws JAXRException; 045 046 Collection getChildOrganizations() throws JAXRException; 047 048 Collection getDescendantOrganizations() throws JAXRException; 049 050 Organization getParentOrganization() throws JAXRException; 051 052 PostalAddress getPostalAddress() throws JAXRException; 053 054 User getPrimaryContact() throws JAXRException; 055 056 Organization getRootOrganization() throws JAXRException; 057 058 Collection getServices() throws JAXRException; 059 060 Collection getTelephoneNumbers(String phoneType) throws JAXRException; 061 062 Collection getUsers() throws JAXRException; 063 064 void removeChildOrganization(Organization organization) throws JAXRException; 065 066 void removeChildOrganizations(Collection organizations) throws JAXRException; 067 068 void removeService(Service service) throws JAXRException; 069 070 void removeServices(Collection services) throws JAXRException; 071 072 void removeUser(User user) throws JAXRException; 073 074 void removeUsers(Collection users) throws JAXRException; 075 076 void setPostalAddress(PostalAddress address) throws JAXRException; 077 078 void setPrimaryContact(User primaryContact) throws JAXRException; 079 080 void setTelephoneNumbers(Collection phoneNumbers) throws JAXRException; 081 }