CMSgov/dpc-app

View on GitHub
dpc-macaroons/src/main/java/gov/cms/dpc/macaroons/CaveatSupplier.java

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
package gov.cms.dpc.macaroons;

/**
 * Interface for generating a {@link MacaroonCaveat} when required
 */
@FunctionalInterface
public interface CaveatSupplier {
    /**
     * Freshly generated {@link MacaroonCaveat}
     * @return - {@link MacaroonCaveat}
     */
    MacaroonCaveat get();
}