* @return the string publisher Id
* @throws SQLException
* the sQL exception
*/
public String registerPublisher(String pubName) throws SQLException {
PublisherInfo pInfo = new PublisherInfo();
String pubID = pubName + "_" + System.currentTimeMillis();
pInfo.setPublisherID(pubID);
pInfo.setPublisherName(pubName);
odbDAO.addPublisher(pInfo);
return pubID;
}