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

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

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

public interface ServiceEndPoint {
    /** The name of the service. */
    String getServiceName();

    /**
     * An opaque identifier for this end point.
     * 

* The format of this identifier and information (if any) contained within it is application specific. Ostrich * does not introspect into this at all. */ String getId(); /** An optional payload provided by the user that registered the service. */ String getPayload(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy