{"id":18427146,"url":"https://github.com/nowisesys/batchelor-java","last_synced_at":"2025-10-23T21:46:39.635Z","repository":{"id":141471750,"uuid":"167965047","full_name":"nowisesys/batchelor-java","owner":"nowisesys","description":"Java GUI application for Batchelor (0.8.x branch)","archived":false,"fork":false,"pushed_at":"2019-01-28T14:00:11.000Z","size":564,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-16T08:27:29.711Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nowisesys.png","metadata":{"files":{"readme":"README","changelog":null,"contributing":null,"funding":null,"license":"COPYING","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS","dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-01-28T13:15:24.000Z","updated_at":"2019-01-28T13:59:12.000Z","dependencies_parsed_at":"2024-08-17T21:45:09.193Z","dependency_job_id":null,"html_url":"https://github.com/nowisesys/batchelor-java","commit_stats":null,"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nowisesys%2Fbatchelor-java","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nowisesys%2Fbatchelor-java/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nowisesys%2Fbatchelor-java/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nowisesys%2Fbatchelor-java/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nowisesys","download_url":"https://codeload.github.com/nowisesys/batchelor-java/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248769401,"owners_count":21158810,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-06T05:09:47.056Z","updated_at":"2025-10-23T21:46:39.520Z","avatar_url":"https://github.com/nowisesys.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n   ----------------------------------------------------------------------------\n    BatchelorWebService - Java (TM) library for the Batchelor Web Service API.\n   ----------------------------------------------------------------------------\n\n** INTRODUCTION:\n\n   This library makes it an easy task to write client side applications that\n   integrates with Batchelor (the batch job queue manager) thru its web\n   service interfaces (currently the SOAP and RESTful service are supported).\n   \n   The purpose is to present a simple to use API that allows end users to\n   communicate with the web service, without having to get dirty in all\n   details of encoding/decoding messages passed between your application\n   and the server. \n\n   The target audience are people writing client side applications or\n   integrating Batchelor in business-to-business systems. Those who likes\n   to roll their own bindings can still do so.\n\n** VERSION:\n\n   This is version is 1.0.6 of the library, released 2018-07-25. The major and \n   minor numbers are based on the remote API it implements, while the revision \n   gets incremented on each release. \n   \n   Works together with the batchelor 0.8.x releases. \n   \n** DIRECTORIES:\n   \n   The client directory contains the core web service library. The explorer \n   directory contains a working sample GUI application built on Swing and SPI \n   using the library that can be extended by implementing custom display classes\n   for viewing the browse tree nodes content.\n   \n** API:\n\n   The package se.uu.bmc.it.batchelor contains common classes and interfaces.\n   All service specific classes (REST and SOAP) is found in their own packages.\n   \n   An simple example showing how to use the REST service class with FOA as \n   the response encoding method:\n   \n     import java.rmi.RemoteException;\n     import java.net.URL;\n     \n     import se.uu.bmc.it.batchelor.*;\n     import se.uu.bmc.it.batchelor.rest.*;\n     \n     class RestServiceClient {\n         \n\t static {\n\t     // \n\t     // Content handling must be initialized once and is global for the \n\t     // whole application and its entire lifetime.\n\t     // \n\t     ContentHandlerFactory factory = ResponseDecoderFactory.getInstance();\n             HttpURLConnection.setContentHandlerFactory(factory);\t\n\t }\n\t \n         private BatchelorRestClient client;\n         \n\t public RestServiceClient(URL url) {\n\t     client = new RestWebService(url, ResponseEncoder.FOA);\n\t }\n\t \n\t // ... methods calling client.XXX()\n\t \n     }\n     \n   The kind of web service interfaces that can be used dependence on how\n   the server (that runs batchelor) is configured.\n\n** DEPENDENCIES:\n\n   *) FOA encoding/decoding requires the foa-java library available for\n      download from http://it.bmc.uu.se/andlov/proj/foa-java (recommended).\n      \n   *) Oracle Java JDK \u003e= 1.8 or equivalent.\n   \n** LICENSE:\n\n   BatchelorWebService is licensed under GPL with the classpath exception.\n   This means that you are free to use this library even in commercial \n   applications (closed source), see the files COPYING and COPYING.CLASSPATH \n   for details.\n   \n   The license gives you permission to (freely) link to and use this library\n   in unmodified form. If you use source code from this library, then the you \n   have to release your work as open source as well.\n   \n** COPYRIGHT:\n\n   Unless otherwise stated, this library is copyright (C) 2009-2018 by Anders\n   Lövgren and the Computing Department at BMC, Uppsala Biomedical Centre,\n   Uppsala University (with equally shared rights).\n\n** ABOUT BATCHELOR:\n\n   See the project homepage: http://it.bmc.uu.se/andlov/proj/sci/batchelor/\n   \n// Anders Lövgren, 2009-04-04\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnowisesys%2Fbatchelor-java","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnowisesys%2Fbatchelor-java","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnowisesys%2Fbatchelor-java/lists"}