-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Initial name & number Registry Requirements
In order to ensure that there is no overlap of assignment of names and/or numbers of uEs, this commit will add in basic rules for reserving names/numbers for specific purposes. Fixes #67 Co-authored-by: Kai Hudalla <kai.hudalla@bosch.com>
- Loading branch information
1 parent
e953cb2
commit b9640d2
Showing
3 changed files
with
63 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
/* | ||
* SPDX-FileCopyrightText: 2024 Contributors to the Eclipse Foundation | ||
* | ||
* See the NOTICE file(s) distributed with this work for additional | ||
* information regarding copyright ownership. | ||
* | ||
* This program and the accompanying materials are made available under | ||
* the terms of the Apache License Version 2.0 which is available at | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* SPDX-FileType: SOURCE | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
syntax = "proto3"; | ||
|
||
package uprotocol.core.ustreamer.v1; | ||
|
||
import "uprotocol/uoptions.proto"; | ||
|
||
option java_package = "org.eclipse.uprotocol.core.ustreamer.v1"; | ||
option java_outer_classname = "UStreamerProto"; | ||
option java_multiple_files = true; | ||
|
||
// Enables generation of generic service attributes in C++ | ||
option cc_generic_services = true; | ||
|
||
// uStreamer Service | ||
service uTwin { | ||
option (uprotocol.service_name) = "core.ustreamer"; // Service name | ||
option (uprotocol.service_version_major) = 1; | ||
option (uprotocol.service_version_minor) = 0; | ||
option (uprotocol.service_id) = 4; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters