SaveBusiness request = (SaveBusiness)regObject;
String generic = request.getGeneric();
AuthInfo authInfo = request.getAuthInfo();
Vector businessVector = request.getBusinessEntityVector();
Vector uploadRegVector = request.getUploadRegisterVector();
UUIDGen uuidgen = UUIDGenFactory.getUUIDGen();
// UploadRegistry functionality is not currently supported.
if ((uploadRegVector != null) && (uploadRegVector.size() > 0))
throw new UnsupportedException("save_business: "+
"UploadRegistry is not supported.");
// aquire a jUDDI datastore instance
DataStore dataStore = DataStoreFactory.getDataStore();
try
{
dataStore.beginTrans();
// Validate authentication parameters
Publisher publisher = getPublisher(authInfo,dataStore);
String publisherID = publisher.getPublisherID();
String authorizedName = publisher.getName();
// Validate request parameters & execute
for (int i=0; i<businessVector.size(); i++)
{
// Move the BusinessEntity into a form we can work with easily
BusinessEntity business = (BusinessEntity)businessVector.elementAt(i);
String businessKey = business.getBusinessKey();
// If a BusinessKey was specified then make sure it's a valid one.
if ((businessKey != null) && (businessKey.length() > 0) && (!dataStore.isValidBusinessKey(businessKey)))
throw new InvalidKeyPassedException("save_business: "+
"businessKey="+businessKey);
// If a BusinessKey was specified then make sure 'publisherID' controls it.
if ((businessKey != null) && (businessKey.length() > 0) && (!dataStore.isBusinessPublisher(businessKey,publisherID)))
throw new UserMismatchException("save_business: "+
"userID="+publisherID+", "+
"businessKey="+businessKey);
// Normally, a valid tModelKey MUST be specified for the keyedReference
// to be valid. However, in the case of a keyedReference that is used in
// a categoryBag, the tModelKey may be omitted or specified as a
// zero-length string to indicate that the taxonomy being used is
// uddi-org:general_keywords. When it is omitted in this manner, the UDDI
// registry will insert the proper key during the save_xx operation.
// - UDDI Programmers API v2.04 Section 4.3.5.1 Specifying keyedReferences
//
CategoryBag categoryBag = business.getCategoryBag();
if (categoryBag != null)
{
Vector keyedRefVector = categoryBag.getKeyedReferenceVector();
if (keyedRefVector != null)
{
int vectorSize = keyedRefVector.size();
if (vectorSize > 0)
{
for (int j=0; j<vectorSize; j++)
{
KeyedReference keyedRef = (KeyedReference)keyedRefVector.elementAt(j);
String key = keyedRef.getTModelKey();
// A null or zero-length tModelKey is treated as
// though the tModelKey for uddiorg:general_keywords
// had been specified.
//
if ((key == null) || (key.trim().length() == 0))
keyedRef.setTModelKey(TModel.GENERAL_KEYWORDS_TMODEL_KEY);
}
}
}
}
}
for (int i=0; i<businessVector.size(); i++)
{
// move the BusinessEntity into a form we can work with easily
BusinessEntity business = (BusinessEntity)businessVector.elementAt(i);
String businessKey = business.getBusinessKey();
// If the new BusinessEntity has a BusinessKey then it must already
// exists so delete the old one. It a BusinessKey isn't specified then
// this is a new BusinessEntity so create a new BusinessKey for it.
//
if ((businessKey != null) && (businessKey.length() > 0))
{
dataStore.deleteBusiness(businessKey);
}
else
{
business.setBusinessKey(uuidgen.uuidgen());
}
// check if the business has DiscoveryURL with
// useType as 'businessEntity' if not create one
// and add it to the business object.