com.clickntap.developers.LibraryClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of click_framework Show documentation
Show all versions of click_framework Show documentation
Java Framework based on Spring Framework, Freemarker and Simplicity
package com.clickntap.developers;
import com.caucho.hessian.client.HessianProxyFactory;
public class LibraryClient implements Library {
public Library library;
public LibraryClient(String url) throws Exception {
library = (Library) new HessianProxyFactory().create(Library.class, url);
}
public void publishVersion(String json) throws Exception {
library.publishVersion(json);
}
public String downloadVersion(String version) throws Exception {
return library.downloadVersion(version);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy