Package com.github.mrcritical.ironcache.internal.model.requests

Examples of com.github.mrcritical.ironcache.internal.model.requests.CachesUrl


   */
  @Override
  public List<Cache> listCaches() {
    try {

      return objectMapper.readValue(requestFactory.buildGetRequest(new CachesUrl(hostName, projectId)).execute()
          .getContent(), new TypeReference<List<Cache>>() {
      });

    } catch (final Exception e) {
      throw Throwables.propagate(e);
View Full Code Here

TOP

Related Classes of com.github.mrcritical.ironcache.internal.model.requests.CachesUrl

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.