Package org.apache.juddi.monitor

Examples of org.apache.juddi.monitor.MonitorData


   */
  public RegistryObject insert(RegistryObject regObject)
    throws RegistryException
  {
    Connection connection = null;
    MonitorData data = (MonitorData)regObject;

    try
    {
      // grab a JDBC connection
      connection = ConnectionManager.aquireConnection();
View Full Code Here


    if (connection != null)
    {
      try
      {
        MonitorData data = new MonitorData("123.234.345.456", "testFunction");

        data.setAuthToken("");
        data.setUddiVersion(IRegistry.UDDI_V2_GENERIC);
        data.setFault("None");

        // begin a new transaction
        txn.begin(connection);

        // insert a new monitor log
View Full Code Here

TOP

Related Classes of org.apache.juddi.monitor.MonitorData

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.