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

com.bazaarvoice.ostrich.ServiceEndPointPredicate Maven / Gradle / Ivy

There is a newer version: 2.1.0
Show newest version
package com.bazaarvoice.ostrich;

/**
 * A predicate interface for {@link ServiceEndPoint} instances.
 * 

* NOTE: This interface could obviously be replaced by a Guava Predicate, but the goal is to not include any * 3rd party library classes in the public interface of Ostrich so that's not acceptable. */ public interface ServiceEndPointPredicate { boolean apply(ServiceEndPoint endPoint); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy