001/*
002 * The contents of this file are subject to the license and copyright
003 * detailed in the LICENSE and NOTICE files at the root of the source
004 * tree.
005 */
006package org.fcrepo.kernel.api.services.functions;
007
008import java.util.function.Supplier;
009
010/**
011 * A {@link java.util.function.Supplier} interface that guarantees the uniqueness of its provided values.
012 *
013 * @author acoburn
014 */
015public interface UniqueValueSupplier extends Supplier<String> {
016
017}