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 RelatedBusinessInfos implements RegistryObject 26 { 27 private Vector relatedBusinessInfoVector; 28 29 32 public RelatedBusinessInfos() 33 { 34 } 35 36 39 public RelatedBusinessInfos(int size) 40 { 41 this.relatedBusinessInfoVector = new Vector (size); 42 } 43 44 47 public void addRelatedBusinessInfo(RelatedBusinessInfo info) 48 { 49 if (this.relatedBusinessInfoVector == null) 50 this.relatedBusinessInfoVector = new Vector (); 51 this.relatedBusinessInfoVector.add(info); 52 } 53 54 57 public void setRelatedBusinessInfoVector(Vector infos) 58 { 59 this.relatedBusinessInfoVector = infos; 60 } 61 62 65 public Vector getRelatedBusinessInfoVector() 66 { 67 return this.relatedBusinessInfoVector; 68 } 69 } 70 | Popular Tags |