Package org.apache.oodt.cas.catalog.page

Examples of org.apache.oodt.cas.catalog.page.TransactionReceipt


          else
            LOG.log(Level.WARNING, "Failed to get metadata for transaction ids for catalog '" + catalogReceipt.getCatalogId() + "' : " + e.getMessage(), e);
        }
      }
      if (metadata.getHashtable().keySet().size() > 0)
        metadataSet.add(new TransactionalMetadata(new TransactionReceipt(transactionReceipt.getTransactionId(), successfulCatalogReceipts), metadata));
    }
    return new Vector<TransactionalMetadata>(metadataSet);
  }
View Full Code Here


          else
            LOG.log(Level.WARNING, "Failed to get metadata for transaction ids for catalog '" + catalog.getId() + "' : " + e.getMessage(), e);
        }
      }
      if (metadata.getHashtable().keySet().size() > 0)
        metadataSet.add(new TransactionalMetadata(new TransactionReceipt(catalogServiceTransactionId, catalogReceipts), metadata));
    }
    return new Vector<TransactionalMetadata>(metadataSet);
  }
View Full Code Here

TOP

Related Classes of org.apache.oodt.cas.catalog.page.TransactionReceipt

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.