Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove SDV-202 references #37

Merged
merged 1 commit into from
Nov 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public class UCloudEventAttributes {
* Construct the properties object.
*
* @param hash an HMAC generated on the data portion of the CloudEvent message using the device key.
* @param priority uProtocol Prioritization classifications defined at QoS in SDV-202.
* @param priority uProtocol Prioritization classifications.
* @param ttl How long this event should live for after it was generated (in milliseconds).
* Events without this attribute (or value is 0) MUST NOT timeout.
* @param token Oauth2 access token to perform the access request defined in the request message.
Expand Down Expand Up @@ -88,7 +88,7 @@ public Optional<String> hash() {
}

/**
* uProtocol Prioritization classifications defined at QoS in SDV-202.
* uProtocol Prioritization classifications.
* @return Returns an Optional priority attribute.
*/
public Optional<Priority> priority() {
Expand Down Expand Up @@ -133,8 +133,8 @@ public UCloudEventAttributesBuilder withHash(String hash) {
}

/**
* add a uProtocol Prioritization classifications defined at QoS in SDV-202.
* @param priority uProtocol Prioritization classifications defined at QoS in SDV-202.
* add a uProtocol Prioritization classifications.
* @param priority uProtocol Prioritization classifications.
* @return Returns the UCloudEventAttributesBuilder with the configured priority.
*/
public UCloudEventAttributesBuilder withPriority(Priority priority) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public void test_create_base_cloud_event_with_datacontenttype_and_schema() {

final CloudEvent cloudEvent = cloudEventBuilder.build();

// test all attributes match the table in SDV-202
// test all attributes
assertEquals("1.0", cloudEvent.getSpecVersion().toString());
assertEquals("testme", cloudEvent.getId());
assertEquals(source, cloudEvent.getSource().toString());
Expand Down