All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.honeybadger.com.github.mustachejava.util.Wrapper Maven / Gradle / Ivy

There is a newer version: 2.1.2
Show newest version
package com.github.mustachejava.util;

import java.util.List;

/**
 * Call a wrapped name on a set of scopes.
 */
public interface Wrapper {
  Object call(List scopes) throws GuardException;
}