use of org.eclipse.sw360.datahandler.thrift.attachments.AttachmentService in project sw360portal by sw360.
the class TestAttachmentClient method main.
public static void main(String[] args) {
try {
THttpClient thriftClient = new THttpClient("http://127.0.0.1:8080/attachmentservice/thrift");
TProtocol protocol = new TCompactProtocol(thriftClient);
AttachmentService.Iface client = new AttachmentService.Client(protocol);
} catch (Exception e) {
assert (false);
}
}
Aggregations