1 16 package org.apache.juddi.datatype.response; 17 18 import java.util.Vector ; 19 20 import org.apache.juddi.datatype.RegistryObject; 21 22 25 public class ServiceInfos implements RegistryObject 26 { 27 Vector serviceInfoVector; 28 29 32 public ServiceInfos() 33 { 34 } 35 36 39 public ServiceInfos(int size) 40 { 41 this.serviceInfoVector = new Vector (size); 42 } 43 44 47 public void addServiceInfo(ServiceInfo info) 48 { 49 if (this.serviceInfoVector == null) 50 this.serviceInfoVector = new Vector (); 51 this.serviceInfoVector.add(info); 52 } 53 54 57 public void setServiceInfoVector(Vector infos) 58 { 59 this.serviceInfoVector = infos; 60 } 61 62 65 public Vector getServiceInfoVector() 66 { 67 return this.serviceInfoVector; 68 } 69 70 73 public String toString() 74 { 75 StringBuffer buffer = new StringBuffer (); 76 77 if (this.serviceInfoVector != null) 78 for (int i=0; i<this.serviceInfoVector.size(); i++) 79 buffer.append(this.serviceInfoVector.elementAt(i)); 80 81 return buffer.toString(); 82 } 83 } | Popular Tags |