return bean;
}
public HostTrustBO getHostTrustBO() {
Object premium = load("com.intel.mtwilson.as.premium.PremiumHostTrustBO");
HostTrustBO bean;
if( premium != null ) {
bean = (HostTrustBO)premium;
}
else {
bean = new HostTrustBO();
}
HostBO hostBO = getHostBO();
bean.setHostBO(hostBO);
return bean;
}