*
*/
public PublisherInfo fetchPublisherInfo(String publisherID)
throws org.apache.juddi.error.RegistryException
{
PublisherInfo info = null;
if ((publisherID != null) && (connection != null))
{
try
{
Publisher publisher = PublisherTable.select(publisherID,connection);
info = new PublisherInfo();
info.setPublisherID(publisherID);
info.setNameValue(publisher.getName());
}
catch(java.sql.SQLException sqlex)
{
throw new RegistryException(sqlex);
}