1 16 package org.apache.juddi.datatype.business; 17 18 import org.apache.juddi.datatype.RegistryObject; 19 20 27 public class BusinessEntityExt implements RegistryObject 28 { 29 BusinessEntity businessEntity; 30 31 35 public BusinessEntityExt() 36 { 37 } 38 39 45 public BusinessEntityExt(BusinessEntity business) 46 { 47 this.businessEntity = business; 48 } 49 50 55 public BusinessEntity getBusinessEntity() 56 { 57 return this.businessEntity; 58 } 59 60 65 public void setBusinessEntity(BusinessEntity newValue) 66 { 67 this.businessEntity = newValue; 68 } 69 } | Popular Tags |