1 16 package org.apache.juddi.datatype.service; 17 18 import java.util.Vector ; 19 20 import org.apache.juddi.datatype.RegistryObject; 21 22 25 public class BusinessServices implements RegistryObject 26 { 27 Vector businessServiceVector; 28 29 32 public BusinessServices() 33 { 34 } 35 36 39 public BusinessServices(int size) 40 { 41 this.businessServiceVector = new Vector (size); 42 } 43 44 47 public void addBusinessService(BusinessService service) 48 { 49 if (this.businessServiceVector == null) 50 this.businessServiceVector = new Vector (); 51 this.businessServiceVector.add(service); 52 } 53 54 57 58 61 public void setBusinessServiceVector(Vector services) 62 { 63 this.businessServiceVector = services; 64 } 65 66 69 public Vector getBusinessServiceVector() 70 { 71 return this.businessServiceVector; 72 } 73 } | Popular Tags |