{"id":18745974,"url":"https://github.com/eclipse-uprotocol/up-java","last_synced_at":"2025-04-12T21:33:22.206Z","repository":{"id":166587095,"uuid":"636234394","full_name":"eclipse-uprotocol/up-java","owner":"eclipse-uprotocol","description":"uProtocol Language Specific Library for Java","archived":false,"fork":false,"pushed_at":"2024-08-09T20:06:25.000Z","size":575,"stargazers_count":10,"open_issues_count":9,"forks_count":14,"subscribers_count":8,"default_branch":"main","last_synced_at":"2025-03-26T16:03:26.004Z","etag":null,"topics":["core","java","uprotocol"],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/eclipse-uprotocol.png","metadata":{"files":{"readme":"README.adoc","changelog":null,"contributing":"CONTRIBUTING.adoc","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-05-04T11:56:52.000Z","updated_at":"2024-12-11T21:10:25.000Z","dependencies_parsed_at":null,"dependency_job_id":"ec503776-ff26-4152-a477-c573591927f2","html_url":"https://github.com/eclipse-uprotocol/up-java","commit_stats":null,"previous_names":["eclipse-uprotocol/uprotocol-sdk-java","eclipse-uprotocol/uprotocol-java","eclipse-uprotocol/up-java"],"tags_count":19,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eclipse-uprotocol%2Fup-java","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eclipse-uprotocol%2Fup-java/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eclipse-uprotocol%2Fup-java/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eclipse-uprotocol%2Fup-java/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/eclipse-uprotocol","download_url":"https://codeload.github.com/eclipse-uprotocol/up-java/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248636577,"owners_count":21137486,"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":["core","java","uprotocol"],"created_at":"2024-11-07T16:20:15.953Z","updated_at":"2025-04-12T21:33:17.195Z","avatar_url":"https://github.com/eclipse-uprotocol.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"= Eclipse uProtocol Java Library\n:toc:\n\n== Overview\n\nThis library implements the https://github.com/eclipse-uprotocol/uprotocol-spec/blob/main/languages.adoc[uProtocol Language Specific Library Requirements] for Java defined in https://github.com/eclipse-uprotocol/uprotocol-spec/tree/main[uProtocol Specifications]. The library is organized into packages that are described in \u003c\u003csdk-packages\u003e\u003e below and organized by the layers of the protocol.\n\nEach package contains a README.adoc file that describes the purpose of the package and how to use it.\n\nThe module contains the factory methods, serializers, and validators for all data types defined in the specifications, and any data models that either haven't or couldn't be defined in up-core-api yet.\n\n== Getting Started\n\n=== Importing the Library\n \nTo pull the Library from maven central, setting ${uprotocol.version} to the latest version of this library in your pom.xml file:\n[source]\n----\n\u003c!-- uProtocol Core --\u003e\n\u003cdependency\u003e\n    \u003cgroupId\u003eorg.eclipse.uprotocol\u003c/groupId\u003e\n    \u003cartifactId\u003eup-java\u003c/artifactId\u003e\n    \u003cversion\u003e${uprotocol.version}\u003c/version\u003e\n\u003c/dependency\u003e\n----\n\n=== Using The Library\n\n.SDK Packages\n[#sdk-packages,width=100%,cols=\"1,2,5\",options=\"header\"]\n|===\n\n| Package | Protocol Layer | Purpose\n\n| xref:src/main/java/org/eclipse/uprotocol/communication/README.adoc[`*client*`]\n| https://github.com/eclipse-uprotocol/up-spec/tree/main/up-l3[Application Layer (uP-L3)]\n| Top level client-facing interfaces to communication with USubscription, UDiscovery, and UTwin services.\n\n| xref:src/main/java/org/eclipse/uprotocol/communication/README.adoc[`*communication*`]\n| https://github.com/eclipse-uprotocol/up-spec/tree/main/up-l2[communication layer (uP-L2)] \n| Common implementation of communication messaging patterns (publisher, subscriber, Rpcclient, RpcServer, etc..) tha t is build on top of the L1 transport interface (see below)\n\n| link:src/main/java/org/eclipse/uprotocol/transport/README.adoc[`*transport*`] \n| https://github.com/eclipse-uprotocol/uprotocol-spec/blob/main/up-l1/README.adoc[Transport Layer (uP-L1)] \n| Interface and data model for how to send() and receive() messages in a common way across various transport technologies (ex. zenoh, mqtt, http, etc...). the interface is implemented by transports (ex. up-transport-android-java), and the interface is then used to build the uProtocol layer 2 communication layer implementation.\n\n| link:src/main/java/org/eclipse/uprotocol/uri/README.adoc[`*uuri*`]\n| Basics \n| uProtocol addressing scheme (UUri) builders, validators, and serializers. \n\n\n| link:src/main/java/org/eclipse/uprotocol/uuid/README.adoc[`*uuid*`]\n| Basics\n| uProtocol unique identifier builders, validators, and serializers.\n\n| link:src/main/java/org/eclipse/uprotocol/cloudevent/README.adoc[`*cloudevent*`] \n| Legacy\n| A representation of uProtocol messages used in older versions of the specifications kept for backwards compatibility.\n\n|===\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feclipse-uprotocol%2Fup-java","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feclipse-uprotocol%2Fup-java","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feclipse-uprotocol%2Fup-java/lists"}