Examples of MetricAttributes


Examples of org.apache.ws.muws.metric.MetricAttributes

         getComplexProperty( ExampleConstants.RESOURCE_PROP_QNAME_CAPACITY, RESOURCE_ID );
      assertNotNull( propElems );
      assertTrue( propElems.length == 1 );
      assertEquals( ExampleConstants.INITIAL_PROP_VALUE__CAPACITY.toString(  ),
                    propElems[0].getValue(  ) );
      MetricAttributes metricAttribs = MetricUtils.getMetricAttributes( propElems[0] );
      Date             lastUpdated = metricAttribs.getLastUpdated(  );
      assertNotNull( lastUpdated );
      assertTrue( "LastUpdated metric attrib value not within three seconds of current time.",
                  ( new Date(  ).getTime(  ) - lastUpdated.getTime(  ) ) < 3000 );
   }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.