I can't build scout from SVN - ServiceBindingImpl seems to be missing.
Attached is a stub impl. Probably doesn't conform to local standards, but I'm learning :)
let me know how this project prefers patches, and the coding standards.
package org.apache.ws.scout.registry.infomodel;
import javax.xml.registry.infomodel.ServiceBinding;
import javax.xml.registry.infomodel.SpecificationLink;
import javax.xml.registry.infomodel.Service;
import javax.xml.registry.JAXRException;
import javax.xml.registry.LifeCycleManager;
import java.util.Collection;
/**
* Stub implementation of ServiceBinding so we can compile
*
*/
public class ServiceBindingImpl extends RegistryEntryImpl implements
ServiceBinding {
public ServiceBindingImpl(LifeCycleManager lifeCycleManager)
{
super(lifeCycleManager);
}
public void setService(Service svc) {
}
public void addSpecificationLink(SpecificationLink specificationLink)
throws JAXRException {
}
public void addSpecificationLinks(Collection specificationLinks) throws
JAXRException {
}
public String getAccessURI() throws JAXRException {
return null;
}
public Service getService() throws JAXRException {
return null;
}
public Collection getSpecificationLinks() throws JAXRException {
return null;
}
public ServiceBinding getTargetBinding() throws JAXRException {
return null;
}
public void removeSpecificationLink(SpecificationLink specificationLink)
throws JAXRException {
}
public void removeSpecificationLinks(Collection specificationLinks) throws
JAXRException {
}
public void setAccessURI(String uri) throws JAXRException {
}
public void setTargetBinding(ServiceBinding binding) throws JAXRException {
}
public boolean getValidateURI() throws JAXRException {
return false;
}
public void setValidateURI(boolean validate) throws JAXRException {
}
}
geir
-- Geir Magnusson Jr +1-203-665-6437 [EMAIL PROTECTED]
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
