This commit is contained in:
Jörg Prante 2019-03-15 16:45:18 +01:00
parent 03df23e89c
commit a44c1b38a9
2 changed files with 8 additions and 0 deletions

View file

@ -1,5 +1,9 @@
package org.xbib.z3950.api; package org.xbib.z3950.api;
/**
* Client provider.
* @param <C> the client type parameter
*/
public interface ClientProvider<C extends Client> { public interface ClientProvider<C extends Client> {
C getClient(); C getClient();

View file

@ -0,0 +1,4 @@
/**
* API for Z39.50 applications.
*/
package org.xbib.z3950.api;