Package org.springframework.xd.rest.domain.metrics

Examples of org.springframework.xd.rest.domain.metrics.MetricResource


    return createResourceWithId(entity.getName(), entity);
  }

  @Override
  protected MetricResource instantiateResource(M entity) {
    return new MetricResource(entity.getName());
  }
View Full Code Here


    boolean result = false;
    PagedResources<MetricResource> resources = xdTemplate.counterOperations().list();
    Iterator<MetricResource> resourceIter = resources.iterator();
    while (resourceIter.hasNext()) {
      MetricResource resource = resourceIter.next();
      if (name.equals(resource.getName())) {
        result = true;
        break;
      }
    }
    return result;
View Full Code Here

TOP

Related Classes of org.springframework.xd.rest.domain.metrics.MetricResource

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.