diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 31013c131..16097a63a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,8 +21,8 @@ jobs: strategy: fail-fast: false matrix: - java: [ 11, 13, 15, 16 ] - spring-boot-version: [ 2.7.8 ] + java: [ 11, 13, 15, 16, 17 ] + spring-boot-version: [ 2.7.8, 3.1.2 ] experimental: [ false ] include: - java: 11 @@ -37,6 +37,9 @@ jobs: - java: 11 spring-boot-version: 2.3.6.RELEASE experimental: false + - java: 17 + spring-boot-version: 3.1.2 + experimental: false env: GOVER: "1.20" GOOS: linux diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 074ec6b57..baeb066b6 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -30,7 +30,7 @@ jobs: strategy: fail-fast: false # Keep running if one leg fails. matrix: - java: [ 11, 13, 15, 16 ] + java: [ 11, 13, 15, 16, 17 ] env: GOVER: "1.20" GOOS: linux diff --git a/.sdkmanrc b/.sdkmanrc new file mode 100644 index 000000000..2ba2e9d2c --- /dev/null +++ b/.sdkmanrc @@ -0,0 +1,3 @@ +# Enable auto-env through the sdkman_auto_env config +# Add key=value pairs of SDKs to use below +java=11.0.19-tem \ No newline at end of file diff --git a/README.md b/README.md index 9c0dfb5ec..1fe922997 100644 --- a/README.md +++ b/README.md @@ -18,11 +18,8 @@ This is the Dapr SDK for Java, including the following features: ## Getting Started ### Pre-Requisites -* JDK 11 or above - the published jars are compatible with Java 8: - * [Microsoft JDK 11](https://docs.microsoft.com/en-us/java/openjdk/download#openjdk-11) - * [AdoptOpenJDK 11 - LTS](https://adoptopenjdk.net/) - * [Oracle's JDK 11 - LTS](https://www.oracle.com/java/technologies/javase-jdk11-downloads.html) - * [OpenJDK](https://openjdk.java.net/) +* SDKMAN! installed (recommended): + * [SDKMAN!](https://sdkman.io) * Java IDE installed: * [IntelliJ](https://www.jetbrains.com/idea/download/) * [Eclipse](https://www.eclipse.org/downloads/) @@ -41,6 +38,10 @@ This is the Dapr SDK for Java, including the following features: * [New Maven project in IntelliJ](https://www.jetbrains.com/help/idea/maven-support.html#create_new_maven_project) * [Maven in 5 minutes](https://maven.apache.org/guides/getting-started/maven-in-five-minutes.html) +### Install JDK + +If using [SDKMAN!](https://sdkman.io), execute `sdk env install` to install the required JDK. + ### Importing Dapr's Java SDK For a Maven project, add the following to your `pom.xml` file: ```xml @@ -52,19 +53,19 @@ For a Maven project, add the following to your `pom.xml` file: io.dapr dapr-sdk - 1.8.0 + 1.9.0 io.dapr dapr-sdk-actors - 1.8.0 + 1.9.0 io.dapr dapr-sdk-springboot - 1.8.0 + 1.9.0 ... @@ -78,11 +79,11 @@ For a Gradle project, add the following to your `build.gradle` file: dependencies { ... // Dapr's core SDK with all features, except Actors. - compile('io.dapr:dapr-sdk:1.8.0') + compile('io.dapr:dapr-sdk:1.9.0') // Dapr's SDK for Actors (optional). - compile('io.dapr:dapr-sdk-actors:1.8.0') + compile('io.dapr:dapr-sdk-actors:1.9.0') // Dapr's SDK integration with SpringBoot (optional). - compile('io.dapr:dapr-sdk-springboot:1.8.0') + compile('io.dapr:dapr-sdk-springboot:1.9.0') } ``` diff --git a/daprdocs/content/en/java-sdk-docs/_index.md b/daprdocs/content/en/java-sdk-docs/_index.md index dc26c0369..d387251a6 100644 --- a/daprdocs/content/en/java-sdk-docs/_index.md +++ b/daprdocs/content/en/java-sdk-docs/_index.md @@ -4,6 +4,11 @@ title: "Dapr Java SDK" linkTitle: "Java" weight: 1000 description: Java SDK packages for developing Dapr applications +cascade: + github_repo: https://github.com/dapr/java-sdk + github_subdir: daprdocs/content/en/java-sdk-docs + path_base_for_github_subdir: content/en/developing-applications/sdks/java/ + github_branch: master --- ## Pre-requisites @@ -31,19 +36,19 @@ For a Maven project, add the following to your `pom.xml` file: io.dapr dapr-sdk - 1.8.0 + 1.9.0 io.dapr dapr-sdk-actors - 1.8.0 + 1.9.0 io.dapr dapr-sdk-springboot - 1.8.0 + 1.9.0 ... @@ -57,11 +62,11 @@ For a Gradle project, add the following to your `build.gradle` file: dependencies { ... // Dapr's core SDK with all features, except Actors. - compile('io.dapr:dapr-sdk:1.8.0') + compile('io.dapr:dapr-sdk:1.9.0') // Dapr's SDK for Actors (optional). - compile('io.dapr:dapr-sdk-actors:1.8.0') + compile('io.dapr:dapr-sdk-actors:1.9.0') // Dapr's SDK integration with SpringBoot (optional). - compile('io.dapr:dapr-sdk-springboot:1.8.0') + compile('io.dapr:dapr-sdk-springboot:1.9.0') } ``` diff --git a/docs/allclasses-index.html b/docs/allclasses-index.html index a27240c11..38e875f00 100644 --- a/docs/allclasses-index.html +++ b/docs/allclasses-index.html @@ -2,10 +2,10 @@ - -All Classes (dapr-sdk-parent 1.8.0 API) + +All Classes (dapr-sdk-parent 1.9.0 API) - + @@ -15,20 +15,20 @@ - + + @@ -186,12 +186,30 @@

All Classes

  • DaprProtos.BulkStateItem
  • DaprProtos.BulkStateItem.Builder
  • DaprProtos.BulkStateItemOrBuilder
  • +
  • DaprProtos.DecryptRequest
  • +
  • DaprProtos.DecryptRequest.Builder
  • +
  • DaprProtos.DecryptRequestOptions
  • +
  • DaprProtos.DecryptRequestOptions.Builder
  • +
  • DaprProtos.DecryptRequestOptionsOrBuilder
  • +
  • DaprProtos.DecryptRequestOrBuilder
  • +
  • DaprProtos.DecryptResponse
  • +
  • DaprProtos.DecryptResponse.Builder
  • +
  • DaprProtos.DecryptResponseOrBuilder
  • DaprProtos.DeleteBulkStateRequest
  • DaprProtos.DeleteBulkStateRequest.Builder
  • DaprProtos.DeleteBulkStateRequestOrBuilder
  • DaprProtos.DeleteStateRequest
  • DaprProtos.DeleteStateRequest.Builder
  • DaprProtos.DeleteStateRequestOrBuilder
  • +
  • DaprProtos.EncryptRequest
  • +
  • DaprProtos.EncryptRequest.Builder
  • +
  • DaprProtos.EncryptRequestOptions
  • +
  • DaprProtos.EncryptRequestOptions.Builder
  • +
  • DaprProtos.EncryptRequestOptionsOrBuilder
  • +
  • DaprProtos.EncryptRequestOrBuilder
  • +
  • DaprProtos.EncryptResponse
  • +
  • DaprProtos.EncryptResponse.Builder
  • +
  • DaprProtos.EncryptResponseOrBuilder
  • DaprProtos.ExecuteActorStateTransactionRequest
  • DaprProtos.ExecuteActorStateTransactionRequest.Builder
  • DaprProtos.ExecuteActorStateTransactionRequestOrBuilder
  • @@ -258,6 +276,9 @@

    All Classes

  • DaprProtos.InvokeServiceRequest
  • DaprProtos.InvokeServiceRequest.Builder
  • DaprProtos.InvokeServiceRequestOrBuilder
  • +
  • DaprProtos.PauseWorkflowRequest
  • +
  • DaprProtos.PauseWorkflowRequest.Builder
  • +
  • DaprProtos.PauseWorkflowRequestOrBuilder
  • DaprProtos.PublishEventRequest
  • DaprProtos.PublishEventRequest.Builder
  • DaprProtos.PublishEventRequestOrBuilder
  • @@ -270,6 +291,9 @@

    All Classes

  • DaprProtos.PubsubSubscriptionRules
  • DaprProtos.PubsubSubscriptionRules.Builder
  • DaprProtos.PubsubSubscriptionRulesOrBuilder
  • +
  • DaprProtos.PurgeWorkflowRequest
  • +
  • DaprProtos.PurgeWorkflowRequest.Builder
  • +
  • DaprProtos.PurgeWorkflowRequestOrBuilder
  • DaprProtos.QueryStateItem
  • DaprProtos.QueryStateItem.Builder
  • DaprProtos.QueryStateItemOrBuilder
  • @@ -279,6 +303,9 @@

    All Classes

  • DaprProtos.QueryStateResponse
  • DaprProtos.QueryStateResponse.Builder
  • DaprProtos.QueryStateResponseOrBuilder
  • +
  • DaprProtos.RaiseEventWorkflowRequest
  • +
  • DaprProtos.RaiseEventWorkflowRequest.Builder
  • +
  • DaprProtos.RaiseEventWorkflowRequestOrBuilder
  • DaprProtos.RegisterActorReminderRequest
  • DaprProtos.RegisterActorReminderRequest.Builder
  • DaprProtos.RegisterActorReminderRequestOrBuilder
  • @@ -291,6 +318,9 @@

    All Classes

  • DaprProtos.RenameActorReminderRequest
  • DaprProtos.RenameActorReminderRequest.Builder
  • DaprProtos.RenameActorReminderRequestOrBuilder
  • +
  • DaprProtos.ResumeWorkflowRequest
  • +
  • DaprProtos.ResumeWorkflowRequest.Builder
  • +
  • DaprProtos.ResumeWorkflowRequestOrBuilder
  • DaprProtos.SaveStateRequest
  • DaprProtos.SaveStateRequest.Builder
  • DaprProtos.SaveStateRequestOrBuilder
  • @@ -303,18 +333,61 @@

    All Classes

  • DaprProtos.StartWorkflowRequest
  • DaprProtos.StartWorkflowRequest.Builder
  • DaprProtos.StartWorkflowRequestOrBuilder
  • +
  • DaprProtos.StartWorkflowResponse
  • +
  • DaprProtos.StartWorkflowResponse.Builder
  • +
  • DaprProtos.StartWorkflowResponseOrBuilder
  • DaprProtos.SubscribeConfigurationRequest
  • DaprProtos.SubscribeConfigurationRequest.Builder
  • DaprProtos.SubscribeConfigurationRequestOrBuilder
  • DaprProtos.SubscribeConfigurationResponse
  • DaprProtos.SubscribeConfigurationResponse.Builder
  • DaprProtos.SubscribeConfigurationResponseOrBuilder
  • +
  • DaprProtos.SubtleDecryptRequest
  • +
  • DaprProtos.SubtleDecryptRequest.Builder
  • +
  • DaprProtos.SubtleDecryptRequestOrBuilder
  • +
  • DaprProtos.SubtleDecryptResponse
  • +
  • DaprProtos.SubtleDecryptResponse.Builder
  • +
  • DaprProtos.SubtleDecryptResponseOrBuilder
  • +
  • DaprProtos.SubtleEncryptRequest
  • +
  • DaprProtos.SubtleEncryptRequest.Builder
  • +
  • DaprProtos.SubtleEncryptRequestOrBuilder
  • +
  • DaprProtos.SubtleEncryptResponse
  • +
  • DaprProtos.SubtleEncryptResponse.Builder
  • +
  • DaprProtos.SubtleEncryptResponseOrBuilder
  • +
  • DaprProtos.SubtleGetKeyRequest
  • +
  • DaprProtos.SubtleGetKeyRequest.Builder
  • +
  • DaprProtos.SubtleGetKeyRequest.KeyFormat
  • +
  • DaprProtos.SubtleGetKeyRequestOrBuilder
  • +
  • DaprProtos.SubtleGetKeyResponse
  • +
  • DaprProtos.SubtleGetKeyResponse.Builder
  • +
  • DaprProtos.SubtleGetKeyResponseOrBuilder
  • +
  • DaprProtos.SubtleSignRequest
  • +
  • DaprProtos.SubtleSignRequest.Builder
  • +
  • DaprProtos.SubtleSignRequestOrBuilder
  • +
  • DaprProtos.SubtleSignResponse
  • +
  • DaprProtos.SubtleSignResponse.Builder
  • +
  • DaprProtos.SubtleSignResponseOrBuilder
  • +
  • DaprProtos.SubtleUnwrapKeyRequest
  • +
  • DaprProtos.SubtleUnwrapKeyRequest.Builder
  • +
  • DaprProtos.SubtleUnwrapKeyRequestOrBuilder
  • +
  • DaprProtos.SubtleUnwrapKeyResponse
  • +
  • DaprProtos.SubtleUnwrapKeyResponse.Builder
  • +
  • DaprProtos.SubtleUnwrapKeyResponseOrBuilder
  • +
  • DaprProtos.SubtleVerifyRequest
  • +
  • DaprProtos.SubtleVerifyRequest.Builder
  • +
  • DaprProtos.SubtleVerifyRequestOrBuilder
  • +
  • DaprProtos.SubtleVerifyResponse
  • +
  • DaprProtos.SubtleVerifyResponse.Builder
  • +
  • DaprProtos.SubtleVerifyResponseOrBuilder
  • +
  • DaprProtos.SubtleWrapKeyRequest
  • +
  • DaprProtos.SubtleWrapKeyRequest.Builder
  • +
  • DaprProtos.SubtleWrapKeyRequestOrBuilder
  • +
  • DaprProtos.SubtleWrapKeyResponse
  • +
  • DaprProtos.SubtleWrapKeyResponse.Builder
  • +
  • DaprProtos.SubtleWrapKeyResponseOrBuilder
  • DaprProtos.TerminateWorkflowRequest
  • DaprProtos.TerminateWorkflowRequest.Builder
  • DaprProtos.TerminateWorkflowRequestOrBuilder
  • -
  • DaprProtos.TerminateWorkflowResponse
  • -
  • DaprProtos.TerminateWorkflowResponse.Builder
  • -
  • DaprProtos.TerminateWorkflowResponseOrBuilder
  • DaprProtos.TransactionalActorStateOperation
  • DaprProtos.TransactionalActorStateOperation.Builder
  • DaprProtos.TransactionalActorStateOperationOrBuilder
  • @@ -346,9 +419,6 @@

    All Classes

  • DaprProtos.UnsubscribeConfigurationResponse
  • DaprProtos.UnsubscribeConfigurationResponse.Builder
  • DaprProtos.UnsubscribeConfigurationResponseOrBuilder
  • -
  • DaprProtos.WorkflowReference
  • -
  • DaprProtos.WorkflowReference.Builder
  • -
  • DaprProtos.WorkflowReferenceOrBuilder
  • DefaultContentTypeConverter
  • DefaultObjectSerializer
  • DeleteStateRequest
  • diff --git a/docs/allpackages-index.html b/docs/allpackages-index.html index 9c403813b..60f0c7d9c 100644 --- a/docs/allpackages-index.html +++ b/docs/allpackages-index.html @@ -2,10 +2,10 @@ - -All Packages (dapr-sdk-parent 1.8.0 API) + +All Packages (dapr-sdk-parent 1.9.0 API) - + @@ -15,14 +15,14 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.DecryptRequest.Builder

    +
    +
    + +
    + +
    +
    + +
    +
    + +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.DecryptRequest.html b/docs/io/dapr/v1/DaprProtos.DecryptRequest.html new file mode 100644 index 000000000..08c2cd835 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.DecryptRequest.html @@ -0,0 +1,1180 @@ + + + + + +DaprProtos.DecryptRequest (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.DecryptRequest

    +
    +
    + +
    +
      +
    • +
      +
      All Implemented Interfaces:
      +
      com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, DaprProtos.DecryptRequestOrBuilder, Serializable
      +
      +
      +
      Enclosing class:
      +
      DaprProtos
      +
      +
      +
      public static final class DaprProtos.DecryptRequest
      +extends com.google.protobuf.GeneratedMessageV3
      +implements DaprProtos.DecryptRequestOrBuilder
      +
      + DecryptRequest is the request for DecryptAlpha1.
      + 
      + + Protobuf type dapr.proto.runtime.v1.DecryptRequest
      +
      +
      See Also:
      +
      Serialized Form
      +
      +
    • +
    +
    +
    + +
    +
    +
      +
    • + +
      + +
      + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          +
          newInstance in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getUnknownFields

          +
          public final com.google.protobuf.UnknownFieldSet getUnknownFields()
          +
          +
          Specified by:
          +
          getUnknownFields in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getUnknownFields in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          hasOptions

          +
          public boolean hasOptions()
          +
          + Request details. Must be present in the first message only.
          + 
          + + .dapr.proto.runtime.v1.DecryptRequestOptions options = 1;
          +
          +
          Specified by:
          +
          hasOptions in interface DaprProtos.DecryptRequestOrBuilder
          +
          Returns:
          +
          Whether the options field is set.
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          hasPayload

          +
          public boolean hasPayload()
          +
          + Chunk of data of arbitrary size.
          + 
          + + .dapr.proto.common.v1.StreamPayload payload = 2;
          +
          +
          Specified by:
          +
          hasPayload in interface DaprProtos.DecryptRequestOrBuilder
          +
          Returns:
          +
          Whether the payload field is set.
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          writeTo

          +
          public void writeTo​(com.google.protobuf.CodedOutputStream output)
          +             throws IOException
          +
          +
          Specified by:
          +
          writeTo in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          writeTo in class com.google.protobuf.GeneratedMessageV3
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + +
          +
        • +

          getSerializedSize

          +
          public int getSerializedSize()
          +
          +
          Specified by:
          +
          getSerializedSize in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getSerializedSize in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          equals

          +
          public boolean equals​(Object obj)
          +
          +
          Specified by:
          +
          equals in interface com.google.protobuf.Message
          +
          Overrides:
          +
          equals in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          hashCode

          +
          public int hashCode()
          +
          +
          Specified by:
          +
          hashCode in interface com.google.protobuf.Message
          +
          Overrides:
          +
          hashCode in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.DecryptRequest parseFrom​(ByteBuffer data)
          +                                           throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.DecryptRequest parseFrom​(ByteBuffer data,
          +                                                  com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                           throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.DecryptRequest parseFrom​(com.google.protobuf.ByteString data)
          +                                           throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.DecryptRequest parseFrom​(com.google.protobuf.ByteString data,
          +                                                  com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                           throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.DecryptRequest parseFrom​(byte[] data)
          +                                           throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.DecryptRequest parseFrom​(byte[] data,
          +                                                  com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                           throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          newBuilderForType

          +
          public DaprProtos.DecryptRequest.Builder newBuilderForType()
          +
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          toBuilder

          +
          public DaprProtos.DecryptRequest.Builder toBuilder()
          +
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.Message
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + +
          +
        • +

          newBuilderForType

          +
          protected DaprProtos.DecryptRequest.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
          +
          +
          Specified by:
          +
          newBuilderForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          getParserForType

          +
          public com.google.protobuf.Parser<DaprProtos.DecryptRequest> getParserForType()
          +
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getParserForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public DaprProtos.DecryptRequest getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.DecryptRequestOptions.Builder.html b/docs/io/dapr/v1/DaprProtos.DecryptRequestOptions.Builder.html new file mode 100644 index 000000000..95092217c --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.DecryptRequestOptions.Builder.html @@ -0,0 +1,991 @@ + + + + + +DaprProtos.DecryptRequestOptions.Builder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.DecryptRequestOptions.Builder

    +
    +
    + +
    + +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.DecryptRequestOptions.Builder>
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getDescriptorForType

          +
          public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
          +
          +
          Specified by:
          +
          getDescriptorForType in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.DecryptRequestOptions.Builder>
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public DaprProtos.DecryptRequestOptions getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        + + + +
          +
        • +

          build

          +
          public DaprProtos.DecryptRequestOptions build()
          +
          +
          Specified by:
          +
          build in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          build in interface com.google.protobuf.MessageLite.Builder
          +
          +
        • +
        + + + +
          +
        • +

          buildPartial

          +
          public DaprProtos.DecryptRequestOptions buildPartial()
          +
          +
          Specified by:
          +
          buildPartial in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          buildPartial in interface com.google.protobuf.MessageLite.Builder
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.DecryptRequestOptions.Builder>
          +
          +
        • +
        + + + +
          +
        • +

          mergeFrom

          +
          public DaprProtos.DecryptRequestOptions.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
          +                                                          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                   throws IOException
          +
          +
          Specified by:
          +
          mergeFrom in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          mergeFrom in interface com.google.protobuf.MessageLite.Builder
          +
          Overrides:
          +
          mergeFrom in class com.google.protobuf.AbstractMessage.Builder<DaprProtos.DecryptRequestOptions.Builder>
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getComponentNameBytes

          +
          public com.google.protobuf.ByteString getComponentNameBytes()
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Specified by:
          +
          getComponentNameBytes in interface DaprProtos.DecryptRequestOptionsOrBuilder
          +
          Returns:
          +
          The bytes for componentName.
          +
          +
        • +
        + + + +
          +
        • +

          setComponentName

          +
          public DaprProtos.DecryptRequestOptions.Builder setComponentName​(String value)
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Parameters:
          +
          value - The componentName to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearComponentName

          +
          public DaprProtos.DecryptRequestOptions.Builder clearComponentName()
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          setComponentNameBytes

          +
          public DaprProtos.DecryptRequestOptions.Builder setComponentNameBytes​(com.google.protobuf.ByteString value)
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Parameters:
          +
          value - The bytes for componentName to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          getKeyName

          +
          public String getKeyName()
          +
          + Name (or name/version) of the key to decrypt the message.
          + Overrides any key reference included in the message if present.
          + This is required if the message doesn't include a key reference (i.e. was created with omit_decryption_key_name set to true).
          + 
          + + string key_name = 12 [json_name = "keyName"];
          +
          +
          Specified by:
          +
          getKeyName in interface DaprProtos.DecryptRequestOptionsOrBuilder
          +
          Returns:
          +
          The keyName.
          +
          +
        • +
        + + + +
          +
        • +

          getKeyNameBytes

          +
          public com.google.protobuf.ByteString getKeyNameBytes()
          +
          + Name (or name/version) of the key to decrypt the message.
          + Overrides any key reference included in the message if present.
          + This is required if the message doesn't include a key reference (i.e. was created with omit_decryption_key_name set to true).
          + 
          + + string key_name = 12 [json_name = "keyName"];
          +
          +
          Specified by:
          +
          getKeyNameBytes in interface DaprProtos.DecryptRequestOptionsOrBuilder
          +
          Returns:
          +
          The bytes for keyName.
          +
          +
        • +
        + + + +
          +
        • +

          setKeyName

          +
          public DaprProtos.DecryptRequestOptions.Builder setKeyName​(String value)
          +
          + Name (or name/version) of the key to decrypt the message.
          + Overrides any key reference included in the message if present.
          + This is required if the message doesn't include a key reference (i.e. was created with omit_decryption_key_name set to true).
          + 
          + + string key_name = 12 [json_name = "keyName"];
          +
          +
          Parameters:
          +
          value - The keyName to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearKeyName

          +
          public DaprProtos.DecryptRequestOptions.Builder clearKeyName()
          +
          + Name (or name/version) of the key to decrypt the message.
          + Overrides any key reference included in the message if present.
          + This is required if the message doesn't include a key reference (i.e. was created with omit_decryption_key_name set to true).
          + 
          + + string key_name = 12 [json_name = "keyName"];
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          setKeyNameBytes

          +
          public DaprProtos.DecryptRequestOptions.Builder setKeyNameBytes​(com.google.protobuf.ByteString value)
          +
          + Name (or name/version) of the key to decrypt the message.
          + Overrides any key reference included in the message if present.
          + This is required if the message doesn't include a key reference (i.e. was created with omit_decryption_key_name set to true).
          + 
          + + string key_name = 12 [json_name = "keyName"];
          +
          +
          Parameters:
          +
          value - The bytes for keyName to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + + + + + + +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.DecryptRequestOptions.html b/docs/io/dapr/v1/DaprProtos.DecryptRequestOptions.html new file mode 100644 index 000000000..9948ba67c --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.DecryptRequestOptions.html @@ -0,0 +1,1132 @@ + + + + + +DaprProtos.DecryptRequestOptions (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.DecryptRequestOptions

    +
    +
    + +
    +
      +
    • +
      +
      All Implemented Interfaces:
      +
      com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, DaprProtos.DecryptRequestOptionsOrBuilder, Serializable
      +
      +
      +
      Enclosing class:
      +
      DaprProtos
      +
      +
      +
      public static final class DaprProtos.DecryptRequestOptions
      +extends com.google.protobuf.GeneratedMessageV3
      +implements DaprProtos.DecryptRequestOptionsOrBuilder
      +
      + DecryptRequestOptions contains options for the first message in the DecryptAlpha1 request.
      + 
      + + Protobuf type dapr.proto.runtime.v1.DecryptRequestOptions
      +
      +
      See Also:
      +
      Serialized Form
      +
      +
    • +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Field Detail

        + + + +
          +
        • +

          COMPONENT_NAME_FIELD_NUMBER

          +
          public static final int COMPONENT_NAME_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        + + + +
          +
        • +

          KEY_NAME_FIELD_NUMBER

          +
          public static final int KEY_NAME_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        +
      • +
      +
      + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          +
          newInstance in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getUnknownFields

          +
          public final com.google.protobuf.UnknownFieldSet getUnknownFields()
          +
          +
          Specified by:
          +
          getUnknownFields in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getUnknownFields in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getComponentNameBytes

          +
          public com.google.protobuf.ByteString getComponentNameBytes()
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Specified by:
          +
          getComponentNameBytes in interface DaprProtos.DecryptRequestOptionsOrBuilder
          +
          Returns:
          +
          The bytes for componentName.
          +
          +
        • +
        + + + +
          +
        • +

          getKeyName

          +
          public String getKeyName()
          +
          + Name (or name/version) of the key to decrypt the message.
          + Overrides any key reference included in the message if present.
          + This is required if the message doesn't include a key reference (i.e. was created with omit_decryption_key_name set to true).
          + 
          + + string key_name = 12 [json_name = "keyName"];
          +
          +
          Specified by:
          +
          getKeyName in interface DaprProtos.DecryptRequestOptionsOrBuilder
          +
          Returns:
          +
          The keyName.
          +
          +
        • +
        + + + +
          +
        • +

          getKeyNameBytes

          +
          public com.google.protobuf.ByteString getKeyNameBytes()
          +
          + Name (or name/version) of the key to decrypt the message.
          + Overrides any key reference included in the message if present.
          + This is required if the message doesn't include a key reference (i.e. was created with omit_decryption_key_name set to true).
          + 
          + + string key_name = 12 [json_name = "keyName"];
          +
          +
          Specified by:
          +
          getKeyNameBytes in interface DaprProtos.DecryptRequestOptionsOrBuilder
          +
          Returns:
          +
          The bytes for keyName.
          +
          +
        • +
        + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          writeTo

          +
          public void writeTo​(com.google.protobuf.CodedOutputStream output)
          +             throws IOException
          +
          +
          Specified by:
          +
          writeTo in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          writeTo in class com.google.protobuf.GeneratedMessageV3
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + +
          +
        • +

          getSerializedSize

          +
          public int getSerializedSize()
          +
          +
          Specified by:
          +
          getSerializedSize in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getSerializedSize in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          equals

          +
          public boolean equals​(Object obj)
          +
          +
          Specified by:
          +
          equals in interface com.google.protobuf.Message
          +
          Overrides:
          +
          equals in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          hashCode

          +
          public int hashCode()
          +
          +
          Specified by:
          +
          hashCode in interface com.google.protobuf.Message
          +
          Overrides:
          +
          hashCode in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.DecryptRequestOptions parseFrom​(ByteBuffer data)
          +                                                  throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.DecryptRequestOptions parseFrom​(ByteBuffer data,
          +                                                         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                  throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.DecryptRequestOptions parseFrom​(com.google.protobuf.ByteString data)
          +                                                  throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.DecryptRequestOptions parseFrom​(com.google.protobuf.ByteString data,
          +                                                         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                  throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.DecryptRequestOptions parseFrom​(byte[] data)
          +                                                  throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.DecryptRequestOptions parseFrom​(byte[] data,
          +                                                         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                  throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          newBuilderForType

          +
          public DaprProtos.DecryptRequestOptions.Builder newBuilderForType()
          +
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          toBuilder

          +
          public DaprProtos.DecryptRequestOptions.Builder toBuilder()
          +
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.Message
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + +
          +
        • +

          newBuilderForType

          +
          protected DaprProtos.DecryptRequestOptions.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
          +
          +
          Specified by:
          +
          newBuilderForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          getParserForType

          +
          public com.google.protobuf.Parser<DaprProtos.DecryptRequestOptions> getParserForType()
          +
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getParserForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public DaprProtos.DecryptRequestOptions getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.DecryptRequestOptionsOrBuilder.html b/docs/io/dapr/v1/DaprProtos.DecryptRequestOptionsOrBuilder.html new file mode 100644 index 000000000..5eea5b84c --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.DecryptRequestOptionsOrBuilder.html @@ -0,0 +1,373 @@ + + + + + +DaprProtos.DecryptRequestOptionsOrBuilder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Interface DaprProtos.DecryptRequestOptionsOrBuilder

    +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        StringgetComponentName() +
        + Name of the component
        +
        com.google.protobuf.ByteStringgetComponentNameBytes() +
        + Name of the component
        +
        StringgetKeyName() +
        + Name (or name/version) of the key to decrypt the message.
        +
        com.google.protobuf.ByteStringgetKeyNameBytes() +
        + Name (or name/version) of the key to decrypt the message.
        +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getComponentName

          +
          String getComponentName()
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Returns:
          +
          The componentName.
          +
          +
        • +
        + + + +
          +
        • +

          getComponentNameBytes

          +
          com.google.protobuf.ByteString getComponentNameBytes()
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Returns:
          +
          The bytes for componentName.
          +
          +
        • +
        + + + +
          +
        • +

          getKeyName

          +
          String getKeyName()
          +
          + Name (or name/version) of the key to decrypt the message.
          + Overrides any key reference included in the message if present.
          + This is required if the message doesn't include a key reference (i.e. was created with omit_decryption_key_name set to true).
          + 
          + + string key_name = 12 [json_name = "keyName"];
          +
          +
          Returns:
          +
          The keyName.
          +
          +
        • +
        + + + +
          +
        • +

          getKeyNameBytes

          +
          com.google.protobuf.ByteString getKeyNameBytes()
          +
          + Name (or name/version) of the key to decrypt the message.
          + Overrides any key reference included in the message if present.
          + This is required if the message doesn't include a key reference (i.e. was created with omit_decryption_key_name set to true).
          + 
          + + string key_name = 12 [json_name = "keyName"];
          +
          +
          Returns:
          +
          The bytes for keyName.
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.DecryptRequestOrBuilder.html b/docs/io/dapr/v1/DaprProtos.DecryptRequestOrBuilder.html new file mode 100644 index 000000000..046a4cb4b --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.DecryptRequestOrBuilder.html @@ -0,0 +1,413 @@ + + + + + +DaprProtos.DecryptRequestOrBuilder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Interface DaprProtos.DecryptRequestOrBuilder

    +
    +
    +
    +
      +
    • +
      +
      All Superinterfaces:
      +
      com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
      +
      +
      +
      All Known Implementing Classes:
      +
      DaprProtos.DecryptRequest, DaprProtos.DecryptRequest.Builder
      +
      +
      +
      Enclosing class:
      +
      DaprProtos
      +
      +
      +
      public static interface DaprProtos.DecryptRequestOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      +
    • +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          hasOptions

          +
          boolean hasOptions()
          +
          + Request details. Must be present in the first message only.
          + 
          + + .dapr.proto.runtime.v1.DecryptRequestOptions options = 1;
          +
          +
          Returns:
          +
          Whether the options field is set.
          +
          +
        • +
        + + + +
          +
        • +

          getOptions

          +
          DaprProtos.DecryptRequestOptions getOptions()
          +
          + Request details. Must be present in the first message only.
          + 
          + + .dapr.proto.runtime.v1.DecryptRequestOptions options = 1;
          +
          +
          Returns:
          +
          The options.
          +
          +
        • +
        + + + +
          +
        • +

          getOptionsOrBuilder

          +
          DaprProtos.DecryptRequestOptionsOrBuilder getOptionsOrBuilder()
          +
          + Request details. Must be present in the first message only.
          + 
          + + .dapr.proto.runtime.v1.DecryptRequestOptions options = 1;
          +
        • +
        + + + +
          +
        • +

          hasPayload

          +
          boolean hasPayload()
          +
          + Chunk of data of arbitrary size.
          + 
          + + .dapr.proto.common.v1.StreamPayload payload = 2;
          +
          +
          Returns:
          +
          Whether the payload field is set.
          +
          +
        • +
        + + + +
          +
        • +

          getPayload

          +
          CommonProtos.StreamPayload getPayload()
          +
          + Chunk of data of arbitrary size.
          + 
          + + .dapr.proto.common.v1.StreamPayload payload = 2;
          +
          +
          Returns:
          +
          The payload.
          +
          +
        • +
        + + + +
          +
        • +

          getPayloadOrBuilder

          +
          CommonProtos.StreamPayloadOrBuilder getPayloadOrBuilder()
          +
          + Chunk of data of arbitrary size.
          + 
          + + .dapr.proto.common.v1.StreamPayload payload = 2;
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.DecryptResponse.Builder.html b/docs/io/dapr/v1/DaprProtos.DecryptResponse.Builder.html new file mode 100644 index 000000000..0c5b1d09f --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.DecryptResponse.Builder.html @@ -0,0 +1,897 @@ + + + + + +DaprProtos.DecryptResponse.Builder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.DecryptResponse.Builder

    +
    +
    + +
    + +
    +
    + +
    +
    + +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.DecryptResponse.html b/docs/io/dapr/v1/DaprProtos.DecryptResponse.html new file mode 100644 index 000000000..e5150c2a2 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.DecryptResponse.html @@ -0,0 +1,1080 @@ + + + + + +DaprProtos.DecryptResponse (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.DecryptResponse

    +
    +
    + +
    +
      +
    • +
      +
      All Implemented Interfaces:
      +
      com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, DaprProtos.DecryptResponseOrBuilder, Serializable
      +
      +
      +
      Enclosing class:
      +
      DaprProtos
      +
      +
      +
      public static final class DaprProtos.DecryptResponse
      +extends com.google.protobuf.GeneratedMessageV3
      +implements DaprProtos.DecryptResponseOrBuilder
      +
      + DecryptResponse is the response for DecryptAlpha1.
      + 
      + + Protobuf type dapr.proto.runtime.v1.DecryptResponse
      +
      +
      See Also:
      +
      Serialized Form
      +
      +
    • +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Field Detail

        + + + +
          +
        • +

          PAYLOAD_FIELD_NUMBER

          +
          public static final int PAYLOAD_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        +
      • +
      +
      + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          +
          newInstance in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getUnknownFields

          +
          public final com.google.protobuf.UnknownFieldSet getUnknownFields()
          +
          +
          Specified by:
          +
          getUnknownFields in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getUnknownFields in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          hasPayload

          +
          public boolean hasPayload()
          +
          + Chunk of data.
          + 
          + + .dapr.proto.common.v1.StreamPayload payload = 1;
          +
          +
          Specified by:
          +
          hasPayload in interface DaprProtos.DecryptResponseOrBuilder
          +
          Returns:
          +
          Whether the payload field is set.
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          writeTo

          +
          public void writeTo​(com.google.protobuf.CodedOutputStream output)
          +             throws IOException
          +
          +
          Specified by:
          +
          writeTo in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          writeTo in class com.google.protobuf.GeneratedMessageV3
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + +
          +
        • +

          getSerializedSize

          +
          public int getSerializedSize()
          +
          +
          Specified by:
          +
          getSerializedSize in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getSerializedSize in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          equals

          +
          public boolean equals​(Object obj)
          +
          +
          Specified by:
          +
          equals in interface com.google.protobuf.Message
          +
          Overrides:
          +
          equals in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          hashCode

          +
          public int hashCode()
          +
          +
          Specified by:
          +
          hashCode in interface com.google.protobuf.Message
          +
          Overrides:
          +
          hashCode in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.DecryptResponse parseFrom​(ByteBuffer data)
          +                                            throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.DecryptResponse parseFrom​(ByteBuffer data,
          +                                                   com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                            throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.DecryptResponse parseFrom​(com.google.protobuf.ByteString data)
          +                                            throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.DecryptResponse parseFrom​(com.google.protobuf.ByteString data,
          +                                                   com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                            throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.DecryptResponse parseFrom​(byte[] data)
          +                                            throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.DecryptResponse parseFrom​(byte[] data,
          +                                                   com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                            throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          newBuilderForType

          +
          public DaprProtos.DecryptResponse.Builder newBuilderForType()
          +
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          toBuilder

          +
          public DaprProtos.DecryptResponse.Builder toBuilder()
          +
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.Message
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + +
          +
        • +

          newBuilderForType

          +
          protected DaprProtos.DecryptResponse.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
          +
          +
          Specified by:
          +
          newBuilderForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          getParserForType

          +
          public com.google.protobuf.Parser<DaprProtos.DecryptResponse> getParserForType()
          +
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getParserForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public DaprProtos.DecryptResponse getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.DecryptResponseOrBuilder.html b/docs/io/dapr/v1/DaprProtos.DecryptResponseOrBuilder.html new file mode 100644 index 000000000..451c2b36f --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.DecryptResponseOrBuilder.html @@ -0,0 +1,339 @@ + + + + + +DaprProtos.DecryptResponseOrBuilder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Interface DaprProtos.DecryptResponseOrBuilder

    +
    +
    +
    +
      +
    • +
      +
      All Superinterfaces:
      +
      com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
      +
      +
      +
      All Known Implementing Classes:
      +
      DaprProtos.DecryptResponse, DaprProtos.DecryptResponse.Builder
      +
      +
      +
      Enclosing class:
      +
      DaprProtos
      +
      +
      +
      public static interface DaprProtos.DecryptResponseOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      +
    • +
    +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        CommonProtos.StreamPayloadgetPayload() +
        + Chunk of data.
        +
        CommonProtos.StreamPayloadOrBuildergetPayloadOrBuilder() +
        + Chunk of data.
        +
        booleanhasPayload() +
        + Chunk of data.
        +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          hasPayload

          +
          boolean hasPayload()
          +
          + Chunk of data.
          + 
          + + .dapr.proto.common.v1.StreamPayload payload = 1;
          +
          +
          Returns:
          +
          Whether the payload field is set.
          +
          +
        • +
        + + + +
          +
        • +

          getPayload

          +
          CommonProtos.StreamPayload getPayload()
          +
          + Chunk of data.
          + 
          + + .dapr.proto.common.v1.StreamPayload payload = 1;
          +
          +
          Returns:
          +
          The payload.
          +
          +
        • +
        + + + + +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.DeleteBulkStateRequest.Builder.html b/docs/io/dapr/v1/DaprProtos.DeleteBulkStateRequest.Builder.html index 1dc2123f5..bdab6b193 100644 --- a/docs/io/dapr/v1/DaprProtos.DeleteBulkStateRequest.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.DeleteBulkStateRequest.Builder.html @@ -2,10 +2,10 @@ - -DaprProtos.DeleteBulkStateRequest.Builder (dapr-sdk-parent 1.8.0 API) + +DaprProtos.DeleteBulkStateRequest.Builder (dapr-sdk-parent 1.9.0 API) - + @@ -15,14 +15,14 @@ - + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.EncryptRequest.Builder

    +
    +
    + +
    + +
    +
    + +
    +
    + +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.EncryptRequest.html b/docs/io/dapr/v1/DaprProtos.EncryptRequest.html new file mode 100644 index 000000000..1eab23da5 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.EncryptRequest.html @@ -0,0 +1,1180 @@ + + + + + +DaprProtos.EncryptRequest (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.EncryptRequest

    +
    +
    + +
    +
      +
    • +
      +
      All Implemented Interfaces:
      +
      com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, DaprProtos.EncryptRequestOrBuilder, Serializable
      +
      +
      +
      Enclosing class:
      +
      DaprProtos
      +
      +
      +
      public static final class DaprProtos.EncryptRequest
      +extends com.google.protobuf.GeneratedMessageV3
      +implements DaprProtos.EncryptRequestOrBuilder
      +
      + EncryptRequest is the request for EncryptAlpha1.
      + 
      + + Protobuf type dapr.proto.runtime.v1.EncryptRequest
      +
      +
      See Also:
      +
      Serialized Form
      +
      +
    • +
    +
    +
    + +
    +
    +
      +
    • + +
      + +
      + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          +
          newInstance in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getUnknownFields

          +
          public final com.google.protobuf.UnknownFieldSet getUnknownFields()
          +
          +
          Specified by:
          +
          getUnknownFields in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getUnknownFields in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          hasOptions

          +
          public boolean hasOptions()
          +
          + Request details. Must be present in the first message only.
          + 
          + + .dapr.proto.runtime.v1.EncryptRequestOptions options = 1;
          +
          +
          Specified by:
          +
          hasOptions in interface DaprProtos.EncryptRequestOrBuilder
          +
          Returns:
          +
          Whether the options field is set.
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          hasPayload

          +
          public boolean hasPayload()
          +
          + Chunk of data of arbitrary size.
          + 
          + + .dapr.proto.common.v1.StreamPayload payload = 2;
          +
          +
          Specified by:
          +
          hasPayload in interface DaprProtos.EncryptRequestOrBuilder
          +
          Returns:
          +
          Whether the payload field is set.
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          writeTo

          +
          public void writeTo​(com.google.protobuf.CodedOutputStream output)
          +             throws IOException
          +
          +
          Specified by:
          +
          writeTo in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          writeTo in class com.google.protobuf.GeneratedMessageV3
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + +
          +
        • +

          getSerializedSize

          +
          public int getSerializedSize()
          +
          +
          Specified by:
          +
          getSerializedSize in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getSerializedSize in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          equals

          +
          public boolean equals​(Object obj)
          +
          +
          Specified by:
          +
          equals in interface com.google.protobuf.Message
          +
          Overrides:
          +
          equals in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          hashCode

          +
          public int hashCode()
          +
          +
          Specified by:
          +
          hashCode in interface com.google.protobuf.Message
          +
          Overrides:
          +
          hashCode in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.EncryptRequest parseFrom​(ByteBuffer data)
          +                                           throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.EncryptRequest parseFrom​(ByteBuffer data,
          +                                                  com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                           throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.EncryptRequest parseFrom​(com.google.protobuf.ByteString data)
          +                                           throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.EncryptRequest parseFrom​(com.google.protobuf.ByteString data,
          +                                                  com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                           throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.EncryptRequest parseFrom​(byte[] data)
          +                                           throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.EncryptRequest parseFrom​(byte[] data,
          +                                                  com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                           throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          newBuilderForType

          +
          public DaprProtos.EncryptRequest.Builder newBuilderForType()
          +
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          toBuilder

          +
          public DaprProtos.EncryptRequest.Builder toBuilder()
          +
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.Message
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + +
          +
        • +

          newBuilderForType

          +
          protected DaprProtos.EncryptRequest.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
          +
          +
          Specified by:
          +
          newBuilderForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          getParserForType

          +
          public com.google.protobuf.Parser<DaprProtos.EncryptRequest> getParserForType()
          +
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getParserForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public DaprProtos.EncryptRequest getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.EncryptRequestOptions.Builder.html b/docs/io/dapr/v1/DaprProtos.EncryptRequestOptions.Builder.html new file mode 100644 index 000000000..049de9a9f --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.EncryptRequestOptions.Builder.html @@ -0,0 +1,1503 @@ + + + + + +DaprProtos.EncryptRequestOptions.Builder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.EncryptRequestOptions.Builder

    +
    +
    + +
    + +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.EncryptRequestOptions.Builder>
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getDescriptorForType

          +
          public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
          +
          +
          Specified by:
          +
          getDescriptorForType in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.EncryptRequestOptions.Builder>
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public DaprProtos.EncryptRequestOptions getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        + + + +
          +
        • +

          build

          +
          public DaprProtos.EncryptRequestOptions build()
          +
          +
          Specified by:
          +
          build in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          build in interface com.google.protobuf.MessageLite.Builder
          +
          +
        • +
        + + + +
          +
        • +

          buildPartial

          +
          public DaprProtos.EncryptRequestOptions buildPartial()
          +
          +
          Specified by:
          +
          buildPartial in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          buildPartial in interface com.google.protobuf.MessageLite.Builder
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.EncryptRequestOptions.Builder>
          +
          +
        • +
        + + + +
          +
        • +

          mergeFrom

          +
          public DaprProtos.EncryptRequestOptions.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
          +                                                          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                   throws IOException
          +
          +
          Specified by:
          +
          mergeFrom in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          mergeFrom in interface com.google.protobuf.MessageLite.Builder
          +
          Overrides:
          +
          mergeFrom in class com.google.protobuf.AbstractMessage.Builder<DaprProtos.EncryptRequestOptions.Builder>
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getComponentNameBytes

          +
          public com.google.protobuf.ByteString getComponentNameBytes()
          +
          + Name of the component. Required.
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Specified by:
          +
          getComponentNameBytes in interface DaprProtos.EncryptRequestOptionsOrBuilder
          +
          Returns:
          +
          The bytes for componentName.
          +
          +
        • +
        + + + +
          +
        • +

          setComponentName

          +
          public DaprProtos.EncryptRequestOptions.Builder setComponentName​(String value)
          +
          + Name of the component. Required.
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Parameters:
          +
          value - The componentName to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearComponentName

          +
          public DaprProtos.EncryptRequestOptions.Builder clearComponentName()
          +
          + Name of the component. Required.
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          setComponentNameBytes

          +
          public DaprProtos.EncryptRequestOptions.Builder setComponentNameBytes​(com.google.protobuf.ByteString value)
          +
          + Name of the component. Required.
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Parameters:
          +
          value - The bytes for componentName to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getKeyNameBytes

          +
          public com.google.protobuf.ByteString getKeyNameBytes()
          +
          + Name (or name/version) of the key. Required.
          + 
          + + string key_name = 2 [json_name = "keyName"];
          +
          +
          Specified by:
          +
          getKeyNameBytes in interface DaprProtos.EncryptRequestOptionsOrBuilder
          +
          Returns:
          +
          The bytes for keyName.
          +
          +
        • +
        + + + +
          +
        • +

          setKeyName

          +
          public DaprProtos.EncryptRequestOptions.Builder setKeyName​(String value)
          +
          + Name (or name/version) of the key. Required.
          + 
          + + string key_name = 2 [json_name = "keyName"];
          +
          +
          Parameters:
          +
          value - The keyName to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearKeyName

          +
          public DaprProtos.EncryptRequestOptions.Builder clearKeyName()
          +
          + Name (or name/version) of the key. Required.
          + 
          + + string key_name = 2 [json_name = "keyName"];
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          setKeyNameBytes

          +
          public DaprProtos.EncryptRequestOptions.Builder setKeyNameBytes​(com.google.protobuf.ByteString value)
          +
          + Name (or name/version) of the key. Required.
          + 
          + + string key_name = 2 [json_name = "keyName"];
          +
          +
          Parameters:
          +
          value - The bytes for keyName to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          getKeyWrapAlgorithm

          +
          public String getKeyWrapAlgorithm()
          +
          + Key wrapping algorithm to use. Required.
          + Supported options include: A256KW (alias: AES), A128CBC, A192CBC, A256CBC, RSA-OAEP-256 (alias: RSA).
          + 
          + + string key_wrap_algorithm = 3;
          +
          +
          Specified by:
          +
          getKeyWrapAlgorithm in interface DaprProtos.EncryptRequestOptionsOrBuilder
          +
          Returns:
          +
          The keyWrapAlgorithm.
          +
          +
        • +
        + + + +
          +
        • +

          getKeyWrapAlgorithmBytes

          +
          public com.google.protobuf.ByteString getKeyWrapAlgorithmBytes()
          +
          + Key wrapping algorithm to use. Required.
          + Supported options include: A256KW (alias: AES), A128CBC, A192CBC, A256CBC, RSA-OAEP-256 (alias: RSA).
          + 
          + + string key_wrap_algorithm = 3;
          +
          +
          Specified by:
          +
          getKeyWrapAlgorithmBytes in interface DaprProtos.EncryptRequestOptionsOrBuilder
          +
          Returns:
          +
          The bytes for keyWrapAlgorithm.
          +
          +
        • +
        + + + +
          +
        • +

          setKeyWrapAlgorithm

          +
          public DaprProtos.EncryptRequestOptions.Builder setKeyWrapAlgorithm​(String value)
          +
          + Key wrapping algorithm to use. Required.
          + Supported options include: A256KW (alias: AES), A128CBC, A192CBC, A256CBC, RSA-OAEP-256 (alias: RSA).
          + 
          + + string key_wrap_algorithm = 3;
          +
          +
          Parameters:
          +
          value - The keyWrapAlgorithm to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearKeyWrapAlgorithm

          +
          public DaprProtos.EncryptRequestOptions.Builder clearKeyWrapAlgorithm()
          +
          + Key wrapping algorithm to use. Required.
          + Supported options include: A256KW (alias: AES), A128CBC, A192CBC, A256CBC, RSA-OAEP-256 (alias: RSA).
          + 
          + + string key_wrap_algorithm = 3;
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          setKeyWrapAlgorithmBytes

          +
          public DaprProtos.EncryptRequestOptions.Builder setKeyWrapAlgorithmBytes​(com.google.protobuf.ByteString value)
          +
          + Key wrapping algorithm to use. Required.
          + Supported options include: A256KW (alias: AES), A128CBC, A192CBC, A256CBC, RSA-OAEP-256 (alias: RSA).
          + 
          + + string key_wrap_algorithm = 3;
          +
          +
          Parameters:
          +
          value - The bytes for keyWrapAlgorithm to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getDataEncryptionCipherBytes

          +
          public com.google.protobuf.ByteString getDataEncryptionCipherBytes()
          +
          + Cipher used to encrypt data (optional): "aes-gcm" (default) or "chacha20-poly1305"
          + 
          + + string data_encryption_cipher = 10;
          +
          +
          Specified by:
          +
          getDataEncryptionCipherBytes in interface DaprProtos.EncryptRequestOptionsOrBuilder
          +
          Returns:
          +
          The bytes for dataEncryptionCipher.
          +
          +
        • +
        + + + +
          +
        • +

          setDataEncryptionCipher

          +
          public DaprProtos.EncryptRequestOptions.Builder setDataEncryptionCipher​(String value)
          +
          + Cipher used to encrypt data (optional): "aes-gcm" (default) or "chacha20-poly1305"
          + 
          + + string data_encryption_cipher = 10;
          +
          +
          Parameters:
          +
          value - The dataEncryptionCipher to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearDataEncryptionCipher

          +
          public DaprProtos.EncryptRequestOptions.Builder clearDataEncryptionCipher()
          +
          + Cipher used to encrypt data (optional): "aes-gcm" (default) or "chacha20-poly1305"
          + 
          + + string data_encryption_cipher = 10;
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          setDataEncryptionCipherBytes

          +
          public DaprProtos.EncryptRequestOptions.Builder setDataEncryptionCipherBytes​(com.google.protobuf.ByteString value)
          +
          + Cipher used to encrypt data (optional): "aes-gcm" (default) or "chacha20-poly1305"
          + 
          + + string data_encryption_cipher = 10;
          +
          +
          Parameters:
          +
          value - The bytes for dataEncryptionCipher to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          getOmitDecryptionKeyName

          +
          public boolean getOmitDecryptionKeyName()
          +
          + If true, the encrypted document does not contain a key reference.
          + In that case, calls to the Decrypt method must provide a key reference (name or name/version).
          + Defaults to false.
          + 
          + + bool omit_decryption_key_name = 11 [json_name = "omitDecryptionKeyName"];
          +
          +
          Specified by:
          +
          getOmitDecryptionKeyName in interface DaprProtos.EncryptRequestOptionsOrBuilder
          +
          Returns:
          +
          The omitDecryptionKeyName.
          +
          +
        • +
        + + + +
          +
        • +

          setOmitDecryptionKeyName

          +
          public DaprProtos.EncryptRequestOptions.Builder setOmitDecryptionKeyName​(boolean value)
          +
          + If true, the encrypted document does not contain a key reference.
          + In that case, calls to the Decrypt method must provide a key reference (name or name/version).
          + Defaults to false.
          + 
          + + bool omit_decryption_key_name = 11 [json_name = "omitDecryptionKeyName"];
          +
          +
          Parameters:
          +
          value - The omitDecryptionKeyName to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearOmitDecryptionKeyName

          +
          public DaprProtos.EncryptRequestOptions.Builder clearOmitDecryptionKeyName()
          +
          + If true, the encrypted document does not contain a key reference.
          + In that case, calls to the Decrypt method must provide a key reference (name or name/version).
          + Defaults to false.
          + 
          + + bool omit_decryption_key_name = 11 [json_name = "omitDecryptionKeyName"];
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          getDecryptionKeyName

          +
          public String getDecryptionKeyName()
          +
          + Key reference to embed in the encrypted document (name or name/version).
          + This is helpful if the reference of the key used to decrypt the document is different from the one used to encrypt it.
          + If unset, uses the reference of the key used to encrypt the document (this is the default behavior).
          + This option is ignored if omit_decryption_key_name is true.
          + 
          + + string decryption_key_name = 12 [json_name = "decryptionKeyName"];
          +
          +
          Specified by:
          +
          getDecryptionKeyName in interface DaprProtos.EncryptRequestOptionsOrBuilder
          +
          Returns:
          +
          The decryptionKeyName.
          +
          +
        • +
        + + + +
          +
        • +

          getDecryptionKeyNameBytes

          +
          public com.google.protobuf.ByteString getDecryptionKeyNameBytes()
          +
          + Key reference to embed in the encrypted document (name or name/version).
          + This is helpful if the reference of the key used to decrypt the document is different from the one used to encrypt it.
          + If unset, uses the reference of the key used to encrypt the document (this is the default behavior).
          + This option is ignored if omit_decryption_key_name is true.
          + 
          + + string decryption_key_name = 12 [json_name = "decryptionKeyName"];
          +
          +
          Specified by:
          +
          getDecryptionKeyNameBytes in interface DaprProtos.EncryptRequestOptionsOrBuilder
          +
          Returns:
          +
          The bytes for decryptionKeyName.
          +
          +
        • +
        + + + +
          +
        • +

          setDecryptionKeyName

          +
          public DaprProtos.EncryptRequestOptions.Builder setDecryptionKeyName​(String value)
          +
          + Key reference to embed in the encrypted document (name or name/version).
          + This is helpful if the reference of the key used to decrypt the document is different from the one used to encrypt it.
          + If unset, uses the reference of the key used to encrypt the document (this is the default behavior).
          + This option is ignored if omit_decryption_key_name is true.
          + 
          + + string decryption_key_name = 12 [json_name = "decryptionKeyName"];
          +
          +
          Parameters:
          +
          value - The decryptionKeyName to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearDecryptionKeyName

          +
          public DaprProtos.EncryptRequestOptions.Builder clearDecryptionKeyName()
          +
          + Key reference to embed in the encrypted document (name or name/version).
          + This is helpful if the reference of the key used to decrypt the document is different from the one used to encrypt it.
          + If unset, uses the reference of the key used to encrypt the document (this is the default behavior).
          + This option is ignored if omit_decryption_key_name is true.
          + 
          + + string decryption_key_name = 12 [json_name = "decryptionKeyName"];
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          setDecryptionKeyNameBytes

          +
          public DaprProtos.EncryptRequestOptions.Builder setDecryptionKeyNameBytes​(com.google.protobuf.ByteString value)
          +
          + Key reference to embed in the encrypted document (name or name/version).
          + This is helpful if the reference of the key used to decrypt the document is different from the one used to encrypt it.
          + If unset, uses the reference of the key used to encrypt the document (this is the default behavior).
          + This option is ignored if omit_decryption_key_name is true.
          + 
          + + string decryption_key_name = 12 [json_name = "decryptionKeyName"];
          +
          +
          Parameters:
          +
          value - The bytes for decryptionKeyName to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + + + + + + +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.EncryptRequestOptions.html b/docs/io/dapr/v1/DaprProtos.EncryptRequestOptions.html new file mode 100644 index 000000000..6b1b6e4e3 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.EncryptRequestOptions.html @@ -0,0 +1,1406 @@ + + + + + +DaprProtos.EncryptRequestOptions (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.EncryptRequestOptions

    +
    +
    + +
    +
      +
    • +
      +
      All Implemented Interfaces:
      +
      com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, DaprProtos.EncryptRequestOptionsOrBuilder, Serializable
      +
      +
      +
      Enclosing class:
      +
      DaprProtos
      +
      +
      +
      public static final class DaprProtos.EncryptRequestOptions
      +extends com.google.protobuf.GeneratedMessageV3
      +implements DaprProtos.EncryptRequestOptionsOrBuilder
      +
      + EncryptRequestOptions contains options for the first message in the EncryptAlpha1 request.
      + 
      + + Protobuf type dapr.proto.runtime.v1.EncryptRequestOptions
      +
      +
      See Also:
      +
      Serialized Form
      +
      +
    • +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Field Detail

        + + + +
          +
        • +

          COMPONENT_NAME_FIELD_NUMBER

          +
          public static final int COMPONENT_NAME_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        + + + +
          +
        • +

          KEY_NAME_FIELD_NUMBER

          +
          public static final int KEY_NAME_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        + + + +
          +
        • +

          KEY_WRAP_ALGORITHM_FIELD_NUMBER

          +
          public static final int KEY_WRAP_ALGORITHM_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        + + + +
          +
        • +

          DATA_ENCRYPTION_CIPHER_FIELD_NUMBER

          +
          public static final int DATA_ENCRYPTION_CIPHER_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        + + + +
          +
        • +

          OMIT_DECRYPTION_KEY_NAME_FIELD_NUMBER

          +
          public static final int OMIT_DECRYPTION_KEY_NAME_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        + + + +
          +
        • +

          DECRYPTION_KEY_NAME_FIELD_NUMBER

          +
          public static final int DECRYPTION_KEY_NAME_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        +
      • +
      +
      + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          +
          newInstance in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getUnknownFields

          +
          public final com.google.protobuf.UnknownFieldSet getUnknownFields()
          +
          +
          Specified by:
          +
          getUnknownFields in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getUnknownFields in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getComponentNameBytes

          +
          public com.google.protobuf.ByteString getComponentNameBytes()
          +
          + Name of the component. Required.
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Specified by:
          +
          getComponentNameBytes in interface DaprProtos.EncryptRequestOptionsOrBuilder
          +
          Returns:
          +
          The bytes for componentName.
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getKeyNameBytes

          +
          public com.google.protobuf.ByteString getKeyNameBytes()
          +
          + Name (or name/version) of the key. Required.
          + 
          + + string key_name = 2 [json_name = "keyName"];
          +
          +
          Specified by:
          +
          getKeyNameBytes in interface DaprProtos.EncryptRequestOptionsOrBuilder
          +
          Returns:
          +
          The bytes for keyName.
          +
          +
        • +
        + + + +
          +
        • +

          getKeyWrapAlgorithm

          +
          public String getKeyWrapAlgorithm()
          +
          + Key wrapping algorithm to use. Required.
          + Supported options include: A256KW (alias: AES), A128CBC, A192CBC, A256CBC, RSA-OAEP-256 (alias: RSA).
          + 
          + + string key_wrap_algorithm = 3;
          +
          +
          Specified by:
          +
          getKeyWrapAlgorithm in interface DaprProtos.EncryptRequestOptionsOrBuilder
          +
          Returns:
          +
          The keyWrapAlgorithm.
          +
          +
        • +
        + + + +
          +
        • +

          getKeyWrapAlgorithmBytes

          +
          public com.google.protobuf.ByteString getKeyWrapAlgorithmBytes()
          +
          + Key wrapping algorithm to use. Required.
          + Supported options include: A256KW (alias: AES), A128CBC, A192CBC, A256CBC, RSA-OAEP-256 (alias: RSA).
          + 
          + + string key_wrap_algorithm = 3;
          +
          +
          Specified by:
          +
          getKeyWrapAlgorithmBytes in interface DaprProtos.EncryptRequestOptionsOrBuilder
          +
          Returns:
          +
          The bytes for keyWrapAlgorithm.
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getDataEncryptionCipherBytes

          +
          public com.google.protobuf.ByteString getDataEncryptionCipherBytes()
          +
          + Cipher used to encrypt data (optional): "aes-gcm" (default) or "chacha20-poly1305"
          + 
          + + string data_encryption_cipher = 10;
          +
          +
          Specified by:
          +
          getDataEncryptionCipherBytes in interface DaprProtos.EncryptRequestOptionsOrBuilder
          +
          Returns:
          +
          The bytes for dataEncryptionCipher.
          +
          +
        • +
        + + + +
          +
        • +

          getOmitDecryptionKeyName

          +
          public boolean getOmitDecryptionKeyName()
          +
          + If true, the encrypted document does not contain a key reference.
          + In that case, calls to the Decrypt method must provide a key reference (name or name/version).
          + Defaults to false.
          + 
          + + bool omit_decryption_key_name = 11 [json_name = "omitDecryptionKeyName"];
          +
          +
          Specified by:
          +
          getOmitDecryptionKeyName in interface DaprProtos.EncryptRequestOptionsOrBuilder
          +
          Returns:
          +
          The omitDecryptionKeyName.
          +
          +
        • +
        + + + +
          +
        • +

          getDecryptionKeyName

          +
          public String getDecryptionKeyName()
          +
          + Key reference to embed in the encrypted document (name or name/version).
          + This is helpful if the reference of the key used to decrypt the document is different from the one used to encrypt it.
          + If unset, uses the reference of the key used to encrypt the document (this is the default behavior).
          + This option is ignored if omit_decryption_key_name is true.
          + 
          + + string decryption_key_name = 12 [json_name = "decryptionKeyName"];
          +
          +
          Specified by:
          +
          getDecryptionKeyName in interface DaprProtos.EncryptRequestOptionsOrBuilder
          +
          Returns:
          +
          The decryptionKeyName.
          +
          +
        • +
        + + + +
          +
        • +

          getDecryptionKeyNameBytes

          +
          public com.google.protobuf.ByteString getDecryptionKeyNameBytes()
          +
          + Key reference to embed in the encrypted document (name or name/version).
          + This is helpful if the reference of the key used to decrypt the document is different from the one used to encrypt it.
          + If unset, uses the reference of the key used to encrypt the document (this is the default behavior).
          + This option is ignored if omit_decryption_key_name is true.
          + 
          + + string decryption_key_name = 12 [json_name = "decryptionKeyName"];
          +
          +
          Specified by:
          +
          getDecryptionKeyNameBytes in interface DaprProtos.EncryptRequestOptionsOrBuilder
          +
          Returns:
          +
          The bytes for decryptionKeyName.
          +
          +
        • +
        + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          writeTo

          +
          public void writeTo​(com.google.protobuf.CodedOutputStream output)
          +             throws IOException
          +
          +
          Specified by:
          +
          writeTo in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          writeTo in class com.google.protobuf.GeneratedMessageV3
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + +
          +
        • +

          getSerializedSize

          +
          public int getSerializedSize()
          +
          +
          Specified by:
          +
          getSerializedSize in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getSerializedSize in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          equals

          +
          public boolean equals​(Object obj)
          +
          +
          Specified by:
          +
          equals in interface com.google.protobuf.Message
          +
          Overrides:
          +
          equals in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          hashCode

          +
          public int hashCode()
          +
          +
          Specified by:
          +
          hashCode in interface com.google.protobuf.Message
          +
          Overrides:
          +
          hashCode in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.EncryptRequestOptions parseFrom​(ByteBuffer data)
          +                                                  throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.EncryptRequestOptions parseFrom​(ByteBuffer data,
          +                                                         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                  throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.EncryptRequestOptions parseFrom​(com.google.protobuf.ByteString data)
          +                                                  throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.EncryptRequestOptions parseFrom​(com.google.protobuf.ByteString data,
          +                                                         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                  throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.EncryptRequestOptions parseFrom​(byte[] data)
          +                                                  throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.EncryptRequestOptions parseFrom​(byte[] data,
          +                                                         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                  throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          newBuilderForType

          +
          public DaprProtos.EncryptRequestOptions.Builder newBuilderForType()
          +
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          toBuilder

          +
          public DaprProtos.EncryptRequestOptions.Builder toBuilder()
          +
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.Message
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + +
          +
        • +

          newBuilderForType

          +
          protected DaprProtos.EncryptRequestOptions.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
          +
          +
          Specified by:
          +
          newBuilderForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          getParserForType

          +
          public com.google.protobuf.Parser<DaprProtos.EncryptRequestOptions> getParserForType()
          +
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getParserForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public DaprProtos.EncryptRequestOptions getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.EncryptRequestOptionsOrBuilder.html b/docs/io/dapr/v1/DaprProtos.EncryptRequestOptionsOrBuilder.html new file mode 100644 index 000000000..655fe9020 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.EncryptRequestOptionsOrBuilder.html @@ -0,0 +1,561 @@ + + + + + +DaprProtos.EncryptRequestOptionsOrBuilder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Interface DaprProtos.EncryptRequestOptionsOrBuilder

    +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        StringgetComponentName() +
        + Name of the component.
        +
        com.google.protobuf.ByteStringgetComponentNameBytes() +
        + Name of the component.
        +
        StringgetDataEncryptionCipher() +
        + Cipher used to encrypt data (optional): "aes-gcm" (default) or "chacha20-poly1305"
        +
        com.google.protobuf.ByteStringgetDataEncryptionCipherBytes() +
        + Cipher used to encrypt data (optional): "aes-gcm" (default) or "chacha20-poly1305"
        +
        StringgetDecryptionKeyName() +
        + Key reference to embed in the encrypted document (name or name/version).
        +
        com.google.protobuf.ByteStringgetDecryptionKeyNameBytes() +
        + Key reference to embed in the encrypted document (name or name/version).
        +
        StringgetKeyName() +
        + Name (or name/version) of the key.
        +
        com.google.protobuf.ByteStringgetKeyNameBytes() +
        + Name (or name/version) of the key.
        +
        StringgetKeyWrapAlgorithm() +
        + Key wrapping algorithm to use.
        +
        com.google.protobuf.ByteStringgetKeyWrapAlgorithmBytes() +
        + Key wrapping algorithm to use.
        +
        booleangetOmitDecryptionKeyName() +
        + If true, the encrypted document does not contain a key reference.
        +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getComponentName

          +
          String getComponentName()
          +
          + Name of the component. Required.
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Returns:
          +
          The componentName.
          +
          +
        • +
        + + + +
          +
        • +

          getComponentNameBytes

          +
          com.google.protobuf.ByteString getComponentNameBytes()
          +
          + Name of the component. Required.
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Returns:
          +
          The bytes for componentName.
          +
          +
        • +
        + + + +
          +
        • +

          getKeyName

          +
          String getKeyName()
          +
          + Name (or name/version) of the key. Required.
          + 
          + + string key_name = 2 [json_name = "keyName"];
          +
          +
          Returns:
          +
          The keyName.
          +
          +
        • +
        + + + +
          +
        • +

          getKeyNameBytes

          +
          com.google.protobuf.ByteString getKeyNameBytes()
          +
          + Name (or name/version) of the key. Required.
          + 
          + + string key_name = 2 [json_name = "keyName"];
          +
          +
          Returns:
          +
          The bytes for keyName.
          +
          +
        • +
        + + + +
          +
        • +

          getKeyWrapAlgorithm

          +
          String getKeyWrapAlgorithm()
          +
          + Key wrapping algorithm to use. Required.
          + Supported options include: A256KW (alias: AES), A128CBC, A192CBC, A256CBC, RSA-OAEP-256 (alias: RSA).
          + 
          + + string key_wrap_algorithm = 3;
          +
          +
          Returns:
          +
          The keyWrapAlgorithm.
          +
          +
        • +
        + + + +
          +
        • +

          getKeyWrapAlgorithmBytes

          +
          com.google.protobuf.ByteString getKeyWrapAlgorithmBytes()
          +
          + Key wrapping algorithm to use. Required.
          + Supported options include: A256KW (alias: AES), A128CBC, A192CBC, A256CBC, RSA-OAEP-256 (alias: RSA).
          + 
          + + string key_wrap_algorithm = 3;
          +
          +
          Returns:
          +
          The bytes for keyWrapAlgorithm.
          +
          +
        • +
        + + + +
          +
        • +

          getDataEncryptionCipher

          +
          String getDataEncryptionCipher()
          +
          + Cipher used to encrypt data (optional): "aes-gcm" (default) or "chacha20-poly1305"
          + 
          + + string data_encryption_cipher = 10;
          +
          +
          Returns:
          +
          The dataEncryptionCipher.
          +
          +
        • +
        + + + +
          +
        • +

          getDataEncryptionCipherBytes

          +
          com.google.protobuf.ByteString getDataEncryptionCipherBytes()
          +
          + Cipher used to encrypt data (optional): "aes-gcm" (default) or "chacha20-poly1305"
          + 
          + + string data_encryption_cipher = 10;
          +
          +
          Returns:
          +
          The bytes for dataEncryptionCipher.
          +
          +
        • +
        + + + +
          +
        • +

          getOmitDecryptionKeyName

          +
          boolean getOmitDecryptionKeyName()
          +
          + If true, the encrypted document does not contain a key reference.
          + In that case, calls to the Decrypt method must provide a key reference (name or name/version).
          + Defaults to false.
          + 
          + + bool omit_decryption_key_name = 11 [json_name = "omitDecryptionKeyName"];
          +
          +
          Returns:
          +
          The omitDecryptionKeyName.
          +
          +
        • +
        + + + +
          +
        • +

          getDecryptionKeyName

          +
          String getDecryptionKeyName()
          +
          + Key reference to embed in the encrypted document (name or name/version).
          + This is helpful if the reference of the key used to decrypt the document is different from the one used to encrypt it.
          + If unset, uses the reference of the key used to encrypt the document (this is the default behavior).
          + This option is ignored if omit_decryption_key_name is true.
          + 
          + + string decryption_key_name = 12 [json_name = "decryptionKeyName"];
          +
          +
          Returns:
          +
          The decryptionKeyName.
          +
          +
        • +
        + + + +
          +
        • +

          getDecryptionKeyNameBytes

          +
          com.google.protobuf.ByteString getDecryptionKeyNameBytes()
          +
          + Key reference to embed in the encrypted document (name or name/version).
          + This is helpful if the reference of the key used to decrypt the document is different from the one used to encrypt it.
          + If unset, uses the reference of the key used to encrypt the document (this is the default behavior).
          + This option is ignored if omit_decryption_key_name is true.
          + 
          + + string decryption_key_name = 12 [json_name = "decryptionKeyName"];
          +
          +
          Returns:
          +
          The bytes for decryptionKeyName.
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.EncryptRequestOrBuilder.html b/docs/io/dapr/v1/DaprProtos.EncryptRequestOrBuilder.html new file mode 100644 index 000000000..8d0debafa --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.EncryptRequestOrBuilder.html @@ -0,0 +1,413 @@ + + + + + +DaprProtos.EncryptRequestOrBuilder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Interface DaprProtos.EncryptRequestOrBuilder

    +
    +
    +
    +
      +
    • +
      +
      All Superinterfaces:
      +
      com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
      +
      +
      +
      All Known Implementing Classes:
      +
      DaprProtos.EncryptRequest, DaprProtos.EncryptRequest.Builder
      +
      +
      +
      Enclosing class:
      +
      DaprProtos
      +
      +
      +
      public static interface DaprProtos.EncryptRequestOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      +
    • +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          hasOptions

          +
          boolean hasOptions()
          +
          + Request details. Must be present in the first message only.
          + 
          + + .dapr.proto.runtime.v1.EncryptRequestOptions options = 1;
          +
          +
          Returns:
          +
          Whether the options field is set.
          +
          +
        • +
        + + + +
          +
        • +

          getOptions

          +
          DaprProtos.EncryptRequestOptions getOptions()
          +
          + Request details. Must be present in the first message only.
          + 
          + + .dapr.proto.runtime.v1.EncryptRequestOptions options = 1;
          +
          +
          Returns:
          +
          The options.
          +
          +
        • +
        + + + +
          +
        • +

          getOptionsOrBuilder

          +
          DaprProtos.EncryptRequestOptionsOrBuilder getOptionsOrBuilder()
          +
          + Request details. Must be present in the first message only.
          + 
          + + .dapr.proto.runtime.v1.EncryptRequestOptions options = 1;
          +
        • +
        + + + +
          +
        • +

          hasPayload

          +
          boolean hasPayload()
          +
          + Chunk of data of arbitrary size.
          + 
          + + .dapr.proto.common.v1.StreamPayload payload = 2;
          +
          +
          Returns:
          +
          Whether the payload field is set.
          +
          +
        • +
        + + + +
          +
        • +

          getPayload

          +
          CommonProtos.StreamPayload getPayload()
          +
          + Chunk of data of arbitrary size.
          + 
          + + .dapr.proto.common.v1.StreamPayload payload = 2;
          +
          +
          Returns:
          +
          The payload.
          +
          +
        • +
        + + + +
          +
        • +

          getPayloadOrBuilder

          +
          CommonProtos.StreamPayloadOrBuilder getPayloadOrBuilder()
          +
          + Chunk of data of arbitrary size.
          + 
          + + .dapr.proto.common.v1.StreamPayload payload = 2;
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.EncryptResponse.Builder.html b/docs/io/dapr/v1/DaprProtos.EncryptResponse.Builder.html new file mode 100644 index 000000000..0e498e877 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.EncryptResponse.Builder.html @@ -0,0 +1,897 @@ + + + + + +DaprProtos.EncryptResponse.Builder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.EncryptResponse.Builder

    +
    +
    + +
    + +
    +
    + +
    +
    + +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.EncryptResponse.html b/docs/io/dapr/v1/DaprProtos.EncryptResponse.html new file mode 100644 index 000000000..e2069fde1 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.EncryptResponse.html @@ -0,0 +1,1080 @@ + + + + + +DaprProtos.EncryptResponse (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.EncryptResponse

    +
    +
    + +
    +
      +
    • +
      +
      All Implemented Interfaces:
      +
      com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, DaprProtos.EncryptResponseOrBuilder, Serializable
      +
      +
      +
      Enclosing class:
      +
      DaprProtos
      +
      +
      +
      public static final class DaprProtos.EncryptResponse
      +extends com.google.protobuf.GeneratedMessageV3
      +implements DaprProtos.EncryptResponseOrBuilder
      +
      + EncryptResponse is the response for EncryptAlpha1.
      + 
      + + Protobuf type dapr.proto.runtime.v1.EncryptResponse
      +
      +
      See Also:
      +
      Serialized Form
      +
      +
    • +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Field Detail

        + + + +
          +
        • +

          PAYLOAD_FIELD_NUMBER

          +
          public static final int PAYLOAD_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        +
      • +
      +
      + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          +
          newInstance in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getUnknownFields

          +
          public final com.google.protobuf.UnknownFieldSet getUnknownFields()
          +
          +
          Specified by:
          +
          getUnknownFields in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getUnknownFields in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          hasPayload

          +
          public boolean hasPayload()
          +
          + Chunk of data.
          + 
          + + .dapr.proto.common.v1.StreamPayload payload = 1;
          +
          +
          Specified by:
          +
          hasPayload in interface DaprProtos.EncryptResponseOrBuilder
          +
          Returns:
          +
          Whether the payload field is set.
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          writeTo

          +
          public void writeTo​(com.google.protobuf.CodedOutputStream output)
          +             throws IOException
          +
          +
          Specified by:
          +
          writeTo in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          writeTo in class com.google.protobuf.GeneratedMessageV3
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + +
          +
        • +

          getSerializedSize

          +
          public int getSerializedSize()
          +
          +
          Specified by:
          +
          getSerializedSize in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getSerializedSize in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          equals

          +
          public boolean equals​(Object obj)
          +
          +
          Specified by:
          +
          equals in interface com.google.protobuf.Message
          +
          Overrides:
          +
          equals in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          hashCode

          +
          public int hashCode()
          +
          +
          Specified by:
          +
          hashCode in interface com.google.protobuf.Message
          +
          Overrides:
          +
          hashCode in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.EncryptResponse parseFrom​(ByteBuffer data)
          +                                            throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.EncryptResponse parseFrom​(ByteBuffer data,
          +                                                   com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                            throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.EncryptResponse parseFrom​(com.google.protobuf.ByteString data)
          +                                            throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.EncryptResponse parseFrom​(com.google.protobuf.ByteString data,
          +                                                   com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                            throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.EncryptResponse parseFrom​(byte[] data)
          +                                            throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.EncryptResponse parseFrom​(byte[] data,
          +                                                   com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                            throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          newBuilderForType

          +
          public DaprProtos.EncryptResponse.Builder newBuilderForType()
          +
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          toBuilder

          +
          public DaprProtos.EncryptResponse.Builder toBuilder()
          +
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.Message
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + +
          +
        • +

          newBuilderForType

          +
          protected DaprProtos.EncryptResponse.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
          +
          +
          Specified by:
          +
          newBuilderForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          getParserForType

          +
          public com.google.protobuf.Parser<DaprProtos.EncryptResponse> getParserForType()
          +
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getParserForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public DaprProtos.EncryptResponse getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.EncryptResponseOrBuilder.html b/docs/io/dapr/v1/DaprProtos.EncryptResponseOrBuilder.html new file mode 100644 index 000000000..4f06add58 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.EncryptResponseOrBuilder.html @@ -0,0 +1,339 @@ + + + + + +DaprProtos.EncryptResponseOrBuilder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Interface DaprProtos.EncryptResponseOrBuilder

    +
    +
    +
    +
      +
    • +
      +
      All Superinterfaces:
      +
      com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
      +
      +
      +
      All Known Implementing Classes:
      +
      DaprProtos.EncryptResponse, DaprProtos.EncryptResponse.Builder
      +
      +
      +
      Enclosing class:
      +
      DaprProtos
      +
      +
      +
      public static interface DaprProtos.EncryptResponseOrBuilder
      +extends com.google.protobuf.MessageOrBuilder
      +
    • +
    +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        CommonProtos.StreamPayloadgetPayload() +
        + Chunk of data.
        +
        CommonProtos.StreamPayloadOrBuildergetPayloadOrBuilder() +
        + Chunk of data.
        +
        booleanhasPayload() +
        + Chunk of data.
        +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          hasPayload

          +
          boolean hasPayload()
          +
          + Chunk of data.
          + 
          + + .dapr.proto.common.v1.StreamPayload payload = 1;
          +
          +
          Returns:
          +
          Whether the payload field is set.
          +
          +
        • +
        + + + +
          +
        • +

          getPayload

          +
          CommonProtos.StreamPayload getPayload()
          +
          + Chunk of data.
          + 
          + + .dapr.proto.common.v1.StreamPayload payload = 1;
          +
          +
          Returns:
          +
          The payload.
          +
          +
        • +
        + + + + +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.ExecuteActorStateTransactionRequest.Builder.html b/docs/io/dapr/v1/DaprProtos.ExecuteActorStateTransactionRequest.Builder.html index 12a08ad76..50b8f26f5 100644 --- a/docs/io/dapr/v1/DaprProtos.ExecuteActorStateTransactionRequest.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.ExecuteActorStateTransactionRequest.Builder.html @@ -2,10 +2,10 @@ - -DaprProtos.ExecuteActorStateTransactionRequest.Builder (dapr-sdk-parent 1.8.0 API) + +DaprProtos.ExecuteActorStateTransactionRequest.Builder (dapr-sdk-parent 1.9.0 API) - + @@ -15,14 +15,14 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.PauseWorkflowRequest.Builder

    +
    +
    + +
    + +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.PauseWorkflowRequest.Builder>
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getDescriptorForType

          +
          public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
          +
          +
          Specified by:
          +
          getDescriptorForType in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.PauseWorkflowRequest.Builder>
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public DaprProtos.PauseWorkflowRequest getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        + + + +
          +
        • +

          build

          +
          public DaprProtos.PauseWorkflowRequest build()
          +
          +
          Specified by:
          +
          build in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          build in interface com.google.protobuf.MessageLite.Builder
          +
          +
        • +
        + + + +
          +
        • +

          buildPartial

          +
          public DaprProtos.PauseWorkflowRequest buildPartial()
          +
          +
          Specified by:
          +
          buildPartial in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          buildPartial in interface com.google.protobuf.MessageLite.Builder
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.PauseWorkflowRequest.Builder>
          +
          +
        • +
        + + + +
          +
        • +

          mergeFrom

          +
          public DaprProtos.PauseWorkflowRequest.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
          +                                                         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                  throws IOException
          +
          +
          Specified by:
          +
          mergeFrom in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          mergeFrom in interface com.google.protobuf.MessageLite.Builder
          +
          Overrides:
          +
          mergeFrom in class com.google.protobuf.AbstractMessage.Builder<DaprProtos.PauseWorkflowRequest.Builder>
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getInstanceIdBytes

          +
          public com.google.protobuf.ByteString getInstanceIdBytes()
          +
          + ID of the workflow instance to pause.
          + 
          + + string instance_id = 1 [json_name = "instanceID"];
          +
          +
          Specified by:
          +
          getInstanceIdBytes in interface DaprProtos.PauseWorkflowRequestOrBuilder
          +
          Returns:
          +
          The bytes for instanceId.
          +
          +
        • +
        + + + +
          +
        • +

          setInstanceId

          +
          public DaprProtos.PauseWorkflowRequest.Builder setInstanceId​(String value)
          +
          + ID of the workflow instance to pause.
          + 
          + + string instance_id = 1 [json_name = "instanceID"];
          +
          +
          Parameters:
          +
          value - The instanceId to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearInstanceId

          +
          public DaprProtos.PauseWorkflowRequest.Builder clearInstanceId()
          +
          + ID of the workflow instance to pause.
          + 
          + + string instance_id = 1 [json_name = "instanceID"];
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          setInstanceIdBytes

          +
          public DaprProtos.PauseWorkflowRequest.Builder setInstanceIdBytes​(com.google.protobuf.ByteString value)
          +
          + ID of the workflow instance to pause.
          + 
          + + string instance_id = 1 [json_name = "instanceID"];
          +
          +
          Parameters:
          +
          value - The bytes for instanceId to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getWorkflowComponentBytes

          +
          public com.google.protobuf.ByteString getWorkflowComponentBytes()
          +
          + Name of the workflow component.
          + 
          + + string workflow_component = 2 [json_name = "workflowComponent"];
          +
          +
          Specified by:
          +
          getWorkflowComponentBytes in interface DaprProtos.PauseWorkflowRequestOrBuilder
          +
          Returns:
          +
          The bytes for workflowComponent.
          +
          +
        • +
        + + + +
          +
        • +

          setWorkflowComponent

          +
          public DaprProtos.PauseWorkflowRequest.Builder setWorkflowComponent​(String value)
          +
          + Name of the workflow component.
          + 
          + + string workflow_component = 2 [json_name = "workflowComponent"];
          +
          +
          Parameters:
          +
          value - The workflowComponent to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearWorkflowComponent

          +
          public DaprProtos.PauseWorkflowRequest.Builder clearWorkflowComponent()
          +
          + Name of the workflow component.
          + 
          + + string workflow_component = 2 [json_name = "workflowComponent"];
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          setWorkflowComponentBytes

          +
          public DaprProtos.PauseWorkflowRequest.Builder setWorkflowComponentBytes​(com.google.protobuf.ByteString value)
          +
          + Name of the workflow component.
          + 
          + + string workflow_component = 2 [json_name = "workflowComponent"];
          +
          +
          Parameters:
          +
          value - The bytes for workflowComponent to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + + + + + + +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.PauseWorkflowRequest.html b/docs/io/dapr/v1/DaprProtos.PauseWorkflowRequest.html new file mode 100644 index 000000000..525ca1a6c --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.PauseWorkflowRequest.html @@ -0,0 +1,1128 @@ + + + + + +DaprProtos.PauseWorkflowRequest (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.PauseWorkflowRequest

    +
    +
    + +
    +
      +
    • +
      +
      All Implemented Interfaces:
      +
      com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, DaprProtos.PauseWorkflowRequestOrBuilder, Serializable
      +
      +
      +
      Enclosing class:
      +
      DaprProtos
      +
      +
      +
      public static final class DaprProtos.PauseWorkflowRequest
      +extends com.google.protobuf.GeneratedMessageV3
      +implements DaprProtos.PauseWorkflowRequestOrBuilder
      +
      + PauseWorkflowRequest is the request for PauseWorkflowAlpha1.
      + 
      + + Protobuf type dapr.proto.runtime.v1.PauseWorkflowRequest
      +
      +
      See Also:
      +
      Serialized Form
      +
      +
    • +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Field Detail

        + + + +
          +
        • +

          INSTANCE_ID_FIELD_NUMBER

          +
          public static final int INSTANCE_ID_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        + + + +
          +
        • +

          WORKFLOW_COMPONENT_FIELD_NUMBER

          +
          public static final int WORKFLOW_COMPONENT_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        +
      • +
      +
      + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          +
          newInstance in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getUnknownFields

          +
          public final com.google.protobuf.UnknownFieldSet getUnknownFields()
          +
          +
          Specified by:
          +
          getUnknownFields in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getUnknownFields in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getInstanceIdBytes

          +
          public com.google.protobuf.ByteString getInstanceIdBytes()
          +
          + ID of the workflow instance to pause.
          + 
          + + string instance_id = 1 [json_name = "instanceID"];
          +
          +
          Specified by:
          +
          getInstanceIdBytes in interface DaprProtos.PauseWorkflowRequestOrBuilder
          +
          Returns:
          +
          The bytes for instanceId.
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getWorkflowComponentBytes

          +
          public com.google.protobuf.ByteString getWorkflowComponentBytes()
          +
          + Name of the workflow component.
          + 
          + + string workflow_component = 2 [json_name = "workflowComponent"];
          +
          +
          Specified by:
          +
          getWorkflowComponentBytes in interface DaprProtos.PauseWorkflowRequestOrBuilder
          +
          Returns:
          +
          The bytes for workflowComponent.
          +
          +
        • +
        + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          writeTo

          +
          public void writeTo​(com.google.protobuf.CodedOutputStream output)
          +             throws IOException
          +
          +
          Specified by:
          +
          writeTo in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          writeTo in class com.google.protobuf.GeneratedMessageV3
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + +
          +
        • +

          getSerializedSize

          +
          public int getSerializedSize()
          +
          +
          Specified by:
          +
          getSerializedSize in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getSerializedSize in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          equals

          +
          public boolean equals​(Object obj)
          +
          +
          Specified by:
          +
          equals in interface com.google.protobuf.Message
          +
          Overrides:
          +
          equals in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          hashCode

          +
          public int hashCode()
          +
          +
          Specified by:
          +
          hashCode in interface com.google.protobuf.Message
          +
          Overrides:
          +
          hashCode in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.PauseWorkflowRequest parseFrom​(ByteBuffer data)
          +                                                 throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.PauseWorkflowRequest parseFrom​(ByteBuffer data,
          +                                                        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                 throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.PauseWorkflowRequest parseFrom​(com.google.protobuf.ByteString data)
          +                                                 throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.PauseWorkflowRequest parseFrom​(com.google.protobuf.ByteString data,
          +                                                        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                 throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.PauseWorkflowRequest parseFrom​(byte[] data)
          +                                                 throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.PauseWorkflowRequest parseFrom​(byte[] data,
          +                                                        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                 throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          newBuilderForType

          +
          public DaprProtos.PauseWorkflowRequest.Builder newBuilderForType()
          +
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          toBuilder

          +
          public DaprProtos.PauseWorkflowRequest.Builder toBuilder()
          +
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.Message
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + +
          +
        • +

          newBuilderForType

          +
          protected DaprProtos.PauseWorkflowRequest.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
          +
          +
          Specified by:
          +
          newBuilderForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          getParserForType

          +
          public com.google.protobuf.Parser<DaprProtos.PauseWorkflowRequest> getParserForType()
          +
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getParserForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public DaprProtos.PauseWorkflowRequest getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.PauseWorkflowRequestOrBuilder.html b/docs/io/dapr/v1/DaprProtos.PauseWorkflowRequestOrBuilder.html new file mode 100644 index 000000000..15500eacd --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.PauseWorkflowRequestOrBuilder.html @@ -0,0 +1,369 @@ + + + + + +DaprProtos.PauseWorkflowRequestOrBuilder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Interface DaprProtos.PauseWorkflowRequestOrBuilder

    +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        StringgetInstanceId() +
        + ID of the workflow instance to pause.
        +
        com.google.protobuf.ByteStringgetInstanceIdBytes() +
        + ID of the workflow instance to pause.
        +
        StringgetWorkflowComponent() +
        + Name of the workflow component.
        +
        com.google.protobuf.ByteStringgetWorkflowComponentBytes() +
        + Name of the workflow component.
        +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getInstanceId

          +
          String getInstanceId()
          +
          + ID of the workflow instance to pause.
          + 
          + + string instance_id = 1 [json_name = "instanceID"];
          +
          +
          Returns:
          +
          The instanceId.
          +
          +
        • +
        + + + +
          +
        • +

          getInstanceIdBytes

          +
          com.google.protobuf.ByteString getInstanceIdBytes()
          +
          + ID of the workflow instance to pause.
          + 
          + + string instance_id = 1 [json_name = "instanceID"];
          +
          +
          Returns:
          +
          The bytes for instanceId.
          +
          +
        • +
        + + + +
          +
        • +

          getWorkflowComponent

          +
          String getWorkflowComponent()
          +
          + Name of the workflow component.
          + 
          + + string workflow_component = 2 [json_name = "workflowComponent"];
          +
          +
          Returns:
          +
          The workflowComponent.
          +
          +
        • +
        + + + +
          +
        • +

          getWorkflowComponentBytes

          +
          com.google.protobuf.ByteString getWorkflowComponentBytes()
          +
          + Name of the workflow component.
          + 
          + + string workflow_component = 2 [json_name = "workflowComponent"];
          +
          +
          Returns:
          +
          The bytes for workflowComponent.
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.PublishEventRequest.Builder.html b/docs/io/dapr/v1/DaprProtos.PublishEventRequest.Builder.html index f081ada12..1a28e1488 100644 --- a/docs/io/dapr/v1/DaprProtos.PublishEventRequest.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.PublishEventRequest.Builder.html @@ -2,10 +2,10 @@ - -DaprProtos.PublishEventRequest.Builder (dapr-sdk-parent 1.8.0 API) + +DaprProtos.PublishEventRequest.Builder (dapr-sdk-parent 1.9.0 API) - + @@ -15,14 +15,14 @@ - + + + + + + + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.PurgeWorkflowRequest.Builder

    +
    +
    + +
    + +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.PurgeWorkflowRequest.Builder>
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getDescriptorForType

          +
          public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
          +
          +
          Specified by:
          +
          getDescriptorForType in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.PurgeWorkflowRequest.Builder>
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public DaprProtos.PurgeWorkflowRequest getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        + + + +
          +
        • +

          build

          +
          public DaprProtos.PurgeWorkflowRequest build()
          +
          +
          Specified by:
          +
          build in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          build in interface com.google.protobuf.MessageLite.Builder
          +
          +
        • +
        + + + +
          +
        • +

          buildPartial

          +
          public DaprProtos.PurgeWorkflowRequest buildPartial()
          +
          +
          Specified by:
          +
          buildPartial in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          buildPartial in interface com.google.protobuf.MessageLite.Builder
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.PurgeWorkflowRequest.Builder>
          +
          +
        • +
        + + + +
          +
        • +

          mergeFrom

          +
          public DaprProtos.PurgeWorkflowRequest.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
          +                                                         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                  throws IOException
          +
          +
          Specified by:
          +
          mergeFrom in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          mergeFrom in interface com.google.protobuf.MessageLite.Builder
          +
          Overrides:
          +
          mergeFrom in class com.google.protobuf.AbstractMessage.Builder<DaprProtos.PurgeWorkflowRequest.Builder>
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getInstanceIdBytes

          +
          public com.google.protobuf.ByteString getInstanceIdBytes()
          +
          + ID of the workflow instance to purge.
          + 
          + + string instance_id = 1 [json_name = "instanceID"];
          +
          +
          Specified by:
          +
          getInstanceIdBytes in interface DaprProtos.PurgeWorkflowRequestOrBuilder
          +
          Returns:
          +
          The bytes for instanceId.
          +
          +
        • +
        + + + +
          +
        • +

          setInstanceId

          +
          public DaprProtos.PurgeWorkflowRequest.Builder setInstanceId​(String value)
          +
          + ID of the workflow instance to purge.
          + 
          + + string instance_id = 1 [json_name = "instanceID"];
          +
          +
          Parameters:
          +
          value - The instanceId to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearInstanceId

          +
          public DaprProtos.PurgeWorkflowRequest.Builder clearInstanceId()
          +
          + ID of the workflow instance to purge.
          + 
          + + string instance_id = 1 [json_name = "instanceID"];
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          setInstanceIdBytes

          +
          public DaprProtos.PurgeWorkflowRequest.Builder setInstanceIdBytes​(com.google.protobuf.ByteString value)
          +
          + ID of the workflow instance to purge.
          + 
          + + string instance_id = 1 [json_name = "instanceID"];
          +
          +
          Parameters:
          +
          value - The bytes for instanceId to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getWorkflowComponentBytes

          +
          public com.google.protobuf.ByteString getWorkflowComponentBytes()
          +
          + Name of the workflow component.
          + 
          + + string workflow_component = 2 [json_name = "workflowComponent"];
          +
          +
          Specified by:
          +
          getWorkflowComponentBytes in interface DaprProtos.PurgeWorkflowRequestOrBuilder
          +
          Returns:
          +
          The bytes for workflowComponent.
          +
          +
        • +
        + + + +
          +
        • +

          setWorkflowComponent

          +
          public DaprProtos.PurgeWorkflowRequest.Builder setWorkflowComponent​(String value)
          +
          + Name of the workflow component.
          + 
          + + string workflow_component = 2 [json_name = "workflowComponent"];
          +
          +
          Parameters:
          +
          value - The workflowComponent to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearWorkflowComponent

          +
          public DaprProtos.PurgeWorkflowRequest.Builder clearWorkflowComponent()
          +
          + Name of the workflow component.
          + 
          + + string workflow_component = 2 [json_name = "workflowComponent"];
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          setWorkflowComponentBytes

          +
          public DaprProtos.PurgeWorkflowRequest.Builder setWorkflowComponentBytes​(com.google.protobuf.ByteString value)
          +
          + Name of the workflow component.
          + 
          + + string workflow_component = 2 [json_name = "workflowComponent"];
          +
          +
          Parameters:
          +
          value - The bytes for workflowComponent to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + + + + + + +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.PurgeWorkflowRequest.html b/docs/io/dapr/v1/DaprProtos.PurgeWorkflowRequest.html new file mode 100644 index 000000000..59bb4e895 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.PurgeWorkflowRequest.html @@ -0,0 +1,1128 @@ + + + + + +DaprProtos.PurgeWorkflowRequest (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.PurgeWorkflowRequest

    +
    +
    + +
    +
      +
    • +
      +
      All Implemented Interfaces:
      +
      com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, DaprProtos.PurgeWorkflowRequestOrBuilder, Serializable
      +
      +
      +
      Enclosing class:
      +
      DaprProtos
      +
      +
      +
      public static final class DaprProtos.PurgeWorkflowRequest
      +extends com.google.protobuf.GeneratedMessageV3
      +implements DaprProtos.PurgeWorkflowRequestOrBuilder
      +
      + PurgeWorkflowRequest is the request for PurgeWorkflowAlpha1.
      + 
      + + Protobuf type dapr.proto.runtime.v1.PurgeWorkflowRequest
      +
      +
      See Also:
      +
      Serialized Form
      +
      +
    • +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Field Detail

        + + + +
          +
        • +

          INSTANCE_ID_FIELD_NUMBER

          +
          public static final int INSTANCE_ID_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        + + + +
          +
        • +

          WORKFLOW_COMPONENT_FIELD_NUMBER

          +
          public static final int WORKFLOW_COMPONENT_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        +
      • +
      +
      + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          +
          newInstance in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getUnknownFields

          +
          public final com.google.protobuf.UnknownFieldSet getUnknownFields()
          +
          +
          Specified by:
          +
          getUnknownFields in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getUnknownFields in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getInstanceIdBytes

          +
          public com.google.protobuf.ByteString getInstanceIdBytes()
          +
          + ID of the workflow instance to purge.
          + 
          + + string instance_id = 1 [json_name = "instanceID"];
          +
          +
          Specified by:
          +
          getInstanceIdBytes in interface DaprProtos.PurgeWorkflowRequestOrBuilder
          +
          Returns:
          +
          The bytes for instanceId.
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getWorkflowComponentBytes

          +
          public com.google.protobuf.ByteString getWorkflowComponentBytes()
          +
          + Name of the workflow component.
          + 
          + + string workflow_component = 2 [json_name = "workflowComponent"];
          +
          +
          Specified by:
          +
          getWorkflowComponentBytes in interface DaprProtos.PurgeWorkflowRequestOrBuilder
          +
          Returns:
          +
          The bytes for workflowComponent.
          +
          +
        • +
        + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          writeTo

          +
          public void writeTo​(com.google.protobuf.CodedOutputStream output)
          +             throws IOException
          +
          +
          Specified by:
          +
          writeTo in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          writeTo in class com.google.protobuf.GeneratedMessageV3
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + +
          +
        • +

          getSerializedSize

          +
          public int getSerializedSize()
          +
          +
          Specified by:
          +
          getSerializedSize in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getSerializedSize in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          equals

          +
          public boolean equals​(Object obj)
          +
          +
          Specified by:
          +
          equals in interface com.google.protobuf.Message
          +
          Overrides:
          +
          equals in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          hashCode

          +
          public int hashCode()
          +
          +
          Specified by:
          +
          hashCode in interface com.google.protobuf.Message
          +
          Overrides:
          +
          hashCode in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.PurgeWorkflowRequest parseFrom​(ByteBuffer data)
          +                                                 throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.PurgeWorkflowRequest parseFrom​(ByteBuffer data,
          +                                                        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                 throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.PurgeWorkflowRequest parseFrom​(com.google.protobuf.ByteString data)
          +                                                 throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.PurgeWorkflowRequest parseFrom​(com.google.protobuf.ByteString data,
          +                                                        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                 throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.PurgeWorkflowRequest parseFrom​(byte[] data)
          +                                                 throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.PurgeWorkflowRequest parseFrom​(byte[] data,
          +                                                        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                 throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          newBuilderForType

          +
          public DaprProtos.PurgeWorkflowRequest.Builder newBuilderForType()
          +
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          toBuilder

          +
          public DaprProtos.PurgeWorkflowRequest.Builder toBuilder()
          +
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.Message
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + +
          +
        • +

          newBuilderForType

          +
          protected DaprProtos.PurgeWorkflowRequest.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
          +
          +
          Specified by:
          +
          newBuilderForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          getParserForType

          +
          public com.google.protobuf.Parser<DaprProtos.PurgeWorkflowRequest> getParserForType()
          +
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getParserForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public DaprProtos.PurgeWorkflowRequest getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.PurgeWorkflowRequestOrBuilder.html b/docs/io/dapr/v1/DaprProtos.PurgeWorkflowRequestOrBuilder.html new file mode 100644 index 000000000..6c9578fbd --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.PurgeWorkflowRequestOrBuilder.html @@ -0,0 +1,369 @@ + + + + + +DaprProtos.PurgeWorkflowRequestOrBuilder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Interface DaprProtos.PurgeWorkflowRequestOrBuilder

    +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        StringgetInstanceId() +
        + ID of the workflow instance to purge.
        +
        com.google.protobuf.ByteStringgetInstanceIdBytes() +
        + ID of the workflow instance to purge.
        +
        StringgetWorkflowComponent() +
        + Name of the workflow component.
        +
        com.google.protobuf.ByteStringgetWorkflowComponentBytes() +
        + Name of the workflow component.
        +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getInstanceId

          +
          String getInstanceId()
          +
          + ID of the workflow instance to purge.
          + 
          + + string instance_id = 1 [json_name = "instanceID"];
          +
          +
          Returns:
          +
          The instanceId.
          +
          +
        • +
        + + + +
          +
        • +

          getInstanceIdBytes

          +
          com.google.protobuf.ByteString getInstanceIdBytes()
          +
          + ID of the workflow instance to purge.
          + 
          + + string instance_id = 1 [json_name = "instanceID"];
          +
          +
          Returns:
          +
          The bytes for instanceId.
          +
          +
        • +
        + + + +
          +
        • +

          getWorkflowComponent

          +
          String getWorkflowComponent()
          +
          + Name of the workflow component.
          + 
          + + string workflow_component = 2 [json_name = "workflowComponent"];
          +
          +
          Returns:
          +
          The workflowComponent.
          +
          +
        • +
        + + + +
          +
        • +

          getWorkflowComponentBytes

          +
          com.google.protobuf.ByteString getWorkflowComponentBytes()
          +
          + Name of the workflow component.
          + 
          + + string workflow_component = 2 [json_name = "workflowComponent"];
          +
          +
          Returns:
          +
          The bytes for workflowComponent.
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.QueryStateItem.Builder.html b/docs/io/dapr/v1/DaprProtos.QueryStateItem.Builder.html index 5026138e5..ed7e1c3e0 100644 --- a/docs/io/dapr/v1/DaprProtos.QueryStateItem.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.QueryStateItem.Builder.html @@ -2,10 +2,10 @@ - -DaprProtos.QueryStateItem.Builder (dapr-sdk-parent 1.8.0 API) + +DaprProtos.QueryStateItem.Builder (dapr-sdk-parent 1.9.0 API) - + @@ -15,14 +15,14 @@ - + + + + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.RaiseEventWorkflowRequest.Builder

    +
    +
    + +
    + +
    +
    + +
    +
    + +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.RaiseEventWorkflowRequest.html b/docs/io/dapr/v1/DaprProtos.RaiseEventWorkflowRequest.html new file mode 100644 index 000000000..c35eac895 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.RaiseEventWorkflowRequest.html @@ -0,0 +1,1248 @@ + + + + + +DaprProtos.RaiseEventWorkflowRequest (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.RaiseEventWorkflowRequest

    +
    +
    + +
    + +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Field Detail

        + + + +
          +
        • +

          INSTANCE_ID_FIELD_NUMBER

          +
          public static final int INSTANCE_ID_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        + + + +
          +
        • +

          WORKFLOW_COMPONENT_FIELD_NUMBER

          +
          public static final int WORKFLOW_COMPONENT_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        + + + +
          +
        • +

          EVENT_NAME_FIELD_NUMBER

          +
          public static final int EVENT_NAME_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        + + + +
          +
        • +

          EVENT_DATA_FIELD_NUMBER

          +
          public static final int EVENT_DATA_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        +
      • +
      +
      + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          +
          newInstance in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getUnknownFields

          +
          public final com.google.protobuf.UnknownFieldSet getUnknownFields()
          +
          +
          Specified by:
          +
          getUnknownFields in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getUnknownFields in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getInstanceIdBytes

          +
          public com.google.protobuf.ByteString getInstanceIdBytes()
          +
          + ID of the workflow instance to raise an event for.
          + 
          + + string instance_id = 1 [json_name = "instanceID"];
          +
          +
          Specified by:
          +
          getInstanceIdBytes in interface DaprProtos.RaiseEventWorkflowRequestOrBuilder
          +
          Returns:
          +
          The bytes for instanceId.
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getWorkflowComponentBytes

          +
          public com.google.protobuf.ByteString getWorkflowComponentBytes()
          +
          + Name of the workflow component.
          + 
          + + string workflow_component = 2 [json_name = "workflowComponent"];
          +
          +
          Specified by:
          +
          getWorkflowComponentBytes in interface DaprProtos.RaiseEventWorkflowRequestOrBuilder
          +
          Returns:
          +
          The bytes for workflowComponent.
          +
          +
        • +
        + + + + + + + + + + + + + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          writeTo

          +
          public void writeTo​(com.google.protobuf.CodedOutputStream output)
          +             throws IOException
          +
          +
          Specified by:
          +
          writeTo in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          writeTo in class com.google.protobuf.GeneratedMessageV3
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + +
          +
        • +

          getSerializedSize

          +
          public int getSerializedSize()
          +
          +
          Specified by:
          +
          getSerializedSize in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getSerializedSize in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          equals

          +
          public boolean equals​(Object obj)
          +
          +
          Specified by:
          +
          equals in interface com.google.protobuf.Message
          +
          Overrides:
          +
          equals in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          hashCode

          +
          public int hashCode()
          +
          +
          Specified by:
          +
          hashCode in interface com.google.protobuf.Message
          +
          Overrides:
          +
          hashCode in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + + + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.RaiseEventWorkflowRequest parseFrom​(ByteBuffer data,
          +                                                             com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                      throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.RaiseEventWorkflowRequest parseFrom​(com.google.protobuf.ByteString data)
          +                                                      throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.RaiseEventWorkflowRequest parseFrom​(com.google.protobuf.ByteString data,
          +                                                             com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                      throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.RaiseEventWorkflowRequest parseFrom​(byte[] data)
          +                                                      throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.RaiseEventWorkflowRequest parseFrom​(byte[] data,
          +                                                             com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                      throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          newBuilderForType

          +
          public DaprProtos.RaiseEventWorkflowRequest.Builder newBuilderForType()
          +
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          toBuilder

          +
          public DaprProtos.RaiseEventWorkflowRequest.Builder toBuilder()
          +
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.Message
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + +
          +
        • +

          newBuilderForType

          +
          protected DaprProtos.RaiseEventWorkflowRequest.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
          +
          +
          Specified by:
          +
          newBuilderForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          getParserForType

          +
          public com.google.protobuf.Parser<DaprProtos.RaiseEventWorkflowRequest> getParserForType()
          +
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getParserForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public DaprProtos.RaiseEventWorkflowRequest getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.RaiseEventWorkflowRequestOrBuilder.html b/docs/io/dapr/v1/DaprProtos.RaiseEventWorkflowRequestOrBuilder.html new file mode 100644 index 000000000..16af703f0 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.RaiseEventWorkflowRequestOrBuilder.html @@ -0,0 +1,447 @@ + + + + + +DaprProtos.RaiseEventWorkflowRequestOrBuilder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Interface DaprProtos.RaiseEventWorkflowRequestOrBuilder

    +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        com.google.protobuf.ByteStringgetEventData() +
        + Data associated with the event.
        +
        StringgetEventName() +
        + Name of the event.
        +
        com.google.protobuf.ByteStringgetEventNameBytes() +
        + Name of the event.
        +
        StringgetInstanceId() +
        + ID of the workflow instance to raise an event for.
        +
        com.google.protobuf.ByteStringgetInstanceIdBytes() +
        + ID of the workflow instance to raise an event for.
        +
        StringgetWorkflowComponent() +
        + Name of the workflow component.
        +
        com.google.protobuf.ByteStringgetWorkflowComponentBytes() +
        + Name of the workflow component.
        +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getInstanceId

          +
          String getInstanceId()
          +
          + ID of the workflow instance to raise an event for.
          + 
          + + string instance_id = 1 [json_name = "instanceID"];
          +
          +
          Returns:
          +
          The instanceId.
          +
          +
        • +
        + + + +
          +
        • +

          getInstanceIdBytes

          +
          com.google.protobuf.ByteString getInstanceIdBytes()
          +
          + ID of the workflow instance to raise an event for.
          + 
          + + string instance_id = 1 [json_name = "instanceID"];
          +
          +
          Returns:
          +
          The bytes for instanceId.
          +
          +
        • +
        + + + +
          +
        • +

          getWorkflowComponent

          +
          String getWorkflowComponent()
          +
          + Name of the workflow component.
          + 
          + + string workflow_component = 2 [json_name = "workflowComponent"];
          +
          +
          Returns:
          +
          The workflowComponent.
          +
          +
        • +
        + + + +
          +
        • +

          getWorkflowComponentBytes

          +
          com.google.protobuf.ByteString getWorkflowComponentBytes()
          +
          + Name of the workflow component.
          + 
          + + string workflow_component = 2 [json_name = "workflowComponent"];
          +
          +
          Returns:
          +
          The bytes for workflowComponent.
          +
          +
        • +
        + + + +
          +
        • +

          getEventName

          +
          String getEventName()
          +
          + Name of the event.
          + 
          + + string event_name = 3 [json_name = "eventName"];
          +
          +
          Returns:
          +
          The eventName.
          +
          +
        • +
        + + + +
          +
        • +

          getEventNameBytes

          +
          com.google.protobuf.ByteString getEventNameBytes()
          +
          + Name of the event.
          + 
          + + string event_name = 3 [json_name = "eventName"];
          +
          +
          Returns:
          +
          The bytes for eventName.
          +
          +
        • +
        + + + +
          +
        • +

          getEventData

          +
          com.google.protobuf.ByteString getEventData()
          +
          + Data associated with the event.
          + 
          + + bytes event_data = 4;
          +
          +
          Returns:
          +
          The eventData.
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.RegisterActorReminderRequest.Builder.html b/docs/io/dapr/v1/DaprProtos.RegisterActorReminderRequest.Builder.html index 088329c5c..6ad66f3b6 100644 --- a/docs/io/dapr/v1/DaprProtos.RegisterActorReminderRequest.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.RegisterActorReminderRequest.Builder.html @@ -2,10 +2,10 @@ - -DaprProtos.RegisterActorReminderRequest.Builder (dapr-sdk-parent 1.8.0 API) + +DaprProtos.RegisterActorReminderRequest.Builder (dapr-sdk-parent 1.9.0 API) - + @@ -15,14 +15,14 @@ - + + + + + + + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.ResumeWorkflowRequest.Builder

    +
    +
    + +
    + +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.ResumeWorkflowRequest.Builder>
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getDescriptorForType

          +
          public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
          +
          +
          Specified by:
          +
          getDescriptorForType in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.ResumeWorkflowRequest.Builder>
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public DaprProtos.ResumeWorkflowRequest getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        + + + +
          +
        • +

          build

          +
          public DaprProtos.ResumeWorkflowRequest build()
          +
          +
          Specified by:
          +
          build in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          build in interface com.google.protobuf.MessageLite.Builder
          +
          +
        • +
        + + + +
          +
        • +

          buildPartial

          +
          public DaprProtos.ResumeWorkflowRequest buildPartial()
          +
          +
          Specified by:
          +
          buildPartial in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          buildPartial in interface com.google.protobuf.MessageLite.Builder
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.ResumeWorkflowRequest.Builder>
          +
          +
        • +
        + + + +
          +
        • +

          mergeFrom

          +
          public DaprProtos.ResumeWorkflowRequest.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
          +                                                          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                   throws IOException
          +
          +
          Specified by:
          +
          mergeFrom in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          mergeFrom in interface com.google.protobuf.MessageLite.Builder
          +
          Overrides:
          +
          mergeFrom in class com.google.protobuf.AbstractMessage.Builder<DaprProtos.ResumeWorkflowRequest.Builder>
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getInstanceIdBytes

          +
          public com.google.protobuf.ByteString getInstanceIdBytes()
          +
          + ID of the workflow instance to resume.
          + 
          + + string instance_id = 1 [json_name = "instanceID"];
          +
          +
          Specified by:
          +
          getInstanceIdBytes in interface DaprProtos.ResumeWorkflowRequestOrBuilder
          +
          Returns:
          +
          The bytes for instanceId.
          +
          +
        • +
        + + + +
          +
        • +

          setInstanceId

          +
          public DaprProtos.ResumeWorkflowRequest.Builder setInstanceId​(String value)
          +
          + ID of the workflow instance to resume.
          + 
          + + string instance_id = 1 [json_name = "instanceID"];
          +
          +
          Parameters:
          +
          value - The instanceId to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearInstanceId

          +
          public DaprProtos.ResumeWorkflowRequest.Builder clearInstanceId()
          +
          + ID of the workflow instance to resume.
          + 
          + + string instance_id = 1 [json_name = "instanceID"];
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          setInstanceIdBytes

          +
          public DaprProtos.ResumeWorkflowRequest.Builder setInstanceIdBytes​(com.google.protobuf.ByteString value)
          +
          + ID of the workflow instance to resume.
          + 
          + + string instance_id = 1 [json_name = "instanceID"];
          +
          +
          Parameters:
          +
          value - The bytes for instanceId to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getWorkflowComponentBytes

          +
          public com.google.protobuf.ByteString getWorkflowComponentBytes()
          +
          + Name of the workflow component.
          + 
          + + string workflow_component = 2 [json_name = "workflowComponent"];
          +
          +
          Specified by:
          +
          getWorkflowComponentBytes in interface DaprProtos.ResumeWorkflowRequestOrBuilder
          +
          Returns:
          +
          The bytes for workflowComponent.
          +
          +
        • +
        + + + +
          +
        • +

          setWorkflowComponent

          +
          public DaprProtos.ResumeWorkflowRequest.Builder setWorkflowComponent​(String value)
          +
          + Name of the workflow component.
          + 
          + + string workflow_component = 2 [json_name = "workflowComponent"];
          +
          +
          Parameters:
          +
          value - The workflowComponent to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearWorkflowComponent

          +
          public DaprProtos.ResumeWorkflowRequest.Builder clearWorkflowComponent()
          +
          + Name of the workflow component.
          + 
          + + string workflow_component = 2 [json_name = "workflowComponent"];
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          setWorkflowComponentBytes

          +
          public DaprProtos.ResumeWorkflowRequest.Builder setWorkflowComponentBytes​(com.google.protobuf.ByteString value)
          +
          + Name of the workflow component.
          + 
          + + string workflow_component = 2 [json_name = "workflowComponent"];
          +
          +
          Parameters:
          +
          value - The bytes for workflowComponent to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + + + + + + +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.ResumeWorkflowRequest.html b/docs/io/dapr/v1/DaprProtos.ResumeWorkflowRequest.html new file mode 100644 index 000000000..836718178 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.ResumeWorkflowRequest.html @@ -0,0 +1,1128 @@ + + + + + +DaprProtos.ResumeWorkflowRequest (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.ResumeWorkflowRequest

    +
    +
    + +
    +
      +
    • +
      +
      All Implemented Interfaces:
      +
      com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, DaprProtos.ResumeWorkflowRequestOrBuilder, Serializable
      +
      +
      +
      Enclosing class:
      +
      DaprProtos
      +
      +
      +
      public static final class DaprProtos.ResumeWorkflowRequest
      +extends com.google.protobuf.GeneratedMessageV3
      +implements DaprProtos.ResumeWorkflowRequestOrBuilder
      +
      + ResumeWorkflowRequest is the request for ResumeWorkflowAlpha1.
      + 
      + + Protobuf type dapr.proto.runtime.v1.ResumeWorkflowRequest
      +
      +
      See Also:
      +
      Serialized Form
      +
      +
    • +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Field Detail

        + + + +
          +
        • +

          INSTANCE_ID_FIELD_NUMBER

          +
          public static final int INSTANCE_ID_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        + + + +
          +
        • +

          WORKFLOW_COMPONENT_FIELD_NUMBER

          +
          public static final int WORKFLOW_COMPONENT_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        +
      • +
      +
      + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          +
          newInstance in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getUnknownFields

          +
          public final com.google.protobuf.UnknownFieldSet getUnknownFields()
          +
          +
          Specified by:
          +
          getUnknownFields in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getUnknownFields in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getInstanceIdBytes

          +
          public com.google.protobuf.ByteString getInstanceIdBytes()
          +
          + ID of the workflow instance to resume.
          + 
          + + string instance_id = 1 [json_name = "instanceID"];
          +
          +
          Specified by:
          +
          getInstanceIdBytes in interface DaprProtos.ResumeWorkflowRequestOrBuilder
          +
          Returns:
          +
          The bytes for instanceId.
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getWorkflowComponentBytes

          +
          public com.google.protobuf.ByteString getWorkflowComponentBytes()
          +
          + Name of the workflow component.
          + 
          + + string workflow_component = 2 [json_name = "workflowComponent"];
          +
          +
          Specified by:
          +
          getWorkflowComponentBytes in interface DaprProtos.ResumeWorkflowRequestOrBuilder
          +
          Returns:
          +
          The bytes for workflowComponent.
          +
          +
        • +
        + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          writeTo

          +
          public void writeTo​(com.google.protobuf.CodedOutputStream output)
          +             throws IOException
          +
          +
          Specified by:
          +
          writeTo in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          writeTo in class com.google.protobuf.GeneratedMessageV3
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + +
          +
        • +

          getSerializedSize

          +
          public int getSerializedSize()
          +
          +
          Specified by:
          +
          getSerializedSize in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getSerializedSize in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          equals

          +
          public boolean equals​(Object obj)
          +
          +
          Specified by:
          +
          equals in interface com.google.protobuf.Message
          +
          Overrides:
          +
          equals in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          hashCode

          +
          public int hashCode()
          +
          +
          Specified by:
          +
          hashCode in interface com.google.protobuf.Message
          +
          Overrides:
          +
          hashCode in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.ResumeWorkflowRequest parseFrom​(ByteBuffer data)
          +                                                  throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.ResumeWorkflowRequest parseFrom​(ByteBuffer data,
          +                                                         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                  throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.ResumeWorkflowRequest parseFrom​(com.google.protobuf.ByteString data)
          +                                                  throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.ResumeWorkflowRequest parseFrom​(com.google.protobuf.ByteString data,
          +                                                         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                  throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.ResumeWorkflowRequest parseFrom​(byte[] data)
          +                                                  throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.ResumeWorkflowRequest parseFrom​(byte[] data,
          +                                                         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                  throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          newBuilderForType

          +
          public DaprProtos.ResumeWorkflowRequest.Builder newBuilderForType()
          +
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          toBuilder

          +
          public DaprProtos.ResumeWorkflowRequest.Builder toBuilder()
          +
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.Message
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + +
          +
        • +

          newBuilderForType

          +
          protected DaprProtos.ResumeWorkflowRequest.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
          +
          +
          Specified by:
          +
          newBuilderForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          getParserForType

          +
          public com.google.protobuf.Parser<DaprProtos.ResumeWorkflowRequest> getParserForType()
          +
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getParserForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public DaprProtos.ResumeWorkflowRequest getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.ResumeWorkflowRequestOrBuilder.html b/docs/io/dapr/v1/DaprProtos.ResumeWorkflowRequestOrBuilder.html new file mode 100644 index 000000000..fa8a1aa13 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.ResumeWorkflowRequestOrBuilder.html @@ -0,0 +1,369 @@ + + + + + +DaprProtos.ResumeWorkflowRequestOrBuilder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Interface DaprProtos.ResumeWorkflowRequestOrBuilder

    +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        StringgetInstanceId() +
        + ID of the workflow instance to resume.
        +
        com.google.protobuf.ByteStringgetInstanceIdBytes() +
        + ID of the workflow instance to resume.
        +
        StringgetWorkflowComponent() +
        + Name of the workflow component.
        +
        com.google.protobuf.ByteStringgetWorkflowComponentBytes() +
        + Name of the workflow component.
        +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getInstanceId

          +
          String getInstanceId()
          +
          + ID of the workflow instance to resume.
          + 
          + + string instance_id = 1 [json_name = "instanceID"];
          +
          +
          Returns:
          +
          The instanceId.
          +
          +
        • +
        + + + +
          +
        • +

          getInstanceIdBytes

          +
          com.google.protobuf.ByteString getInstanceIdBytes()
          +
          + ID of the workflow instance to resume.
          + 
          + + string instance_id = 1 [json_name = "instanceID"];
          +
          +
          Returns:
          +
          The bytes for instanceId.
          +
          +
        • +
        + + + +
          +
        • +

          getWorkflowComponent

          +
          String getWorkflowComponent()
          +
          + Name of the workflow component.
          + 
          + + string workflow_component = 2 [json_name = "workflowComponent"];
          +
          +
          Returns:
          +
          The workflowComponent.
          +
          +
        • +
        + + + +
          +
        • +

          getWorkflowComponentBytes

          +
          com.google.protobuf.ByteString getWorkflowComponentBytes()
          +
          + Name of the workflow component.
          + 
          + + string workflow_component = 2 [json_name = "workflowComponent"];
          +
          +
          Returns:
          +
          The bytes for workflowComponent.
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.SaveStateRequest.Builder.html b/docs/io/dapr/v1/DaprProtos.SaveStateRequest.Builder.html index 97d5d0242..3d94ad62e 100644 --- a/docs/io/dapr/v1/DaprProtos.SaveStateRequest.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.SaveStateRequest.Builder.html @@ -2,10 +2,10 @@ - -DaprProtos.SaveStateRequest.Builder (dapr-sdk-parent 1.8.0 API) + +DaprProtos.SaveStateRequest.Builder (dapr-sdk-parent 1.9.0 API) - + @@ -15,14 +15,14 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.SubtleDecryptRequest.Builder

    +
    +
    + +
    + +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SubtleDecryptRequest.Builder>
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getDescriptorForType

          +
          public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
          +
          +
          Specified by:
          +
          getDescriptorForType in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SubtleDecryptRequest.Builder>
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public DaprProtos.SubtleDecryptRequest getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        + + + +
          +
        • +

          build

          +
          public DaprProtos.SubtleDecryptRequest build()
          +
          +
          Specified by:
          +
          build in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          build in interface com.google.protobuf.MessageLite.Builder
          +
          +
        • +
        + + + +
          +
        • +

          buildPartial

          +
          public DaprProtos.SubtleDecryptRequest buildPartial()
          +
          +
          Specified by:
          +
          buildPartial in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          buildPartial in interface com.google.protobuf.MessageLite.Builder
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SubtleDecryptRequest.Builder>
          +
          +
        • +
        + + + +
          +
        • +

          mergeFrom

          +
          public DaprProtos.SubtleDecryptRequest.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
          +                                                         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                  throws IOException
          +
          +
          Specified by:
          +
          mergeFrom in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          mergeFrom in interface com.google.protobuf.MessageLite.Builder
          +
          Overrides:
          +
          mergeFrom in class com.google.protobuf.AbstractMessage.Builder<DaprProtos.SubtleDecryptRequest.Builder>
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getComponentNameBytes

          +
          public com.google.protobuf.ByteString getComponentNameBytes()
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Specified by:
          +
          getComponentNameBytes in interface DaprProtos.SubtleDecryptRequestOrBuilder
          +
          Returns:
          +
          The bytes for componentName.
          +
          +
        • +
        + + + +
          +
        • +

          setComponentName

          +
          public DaprProtos.SubtleDecryptRequest.Builder setComponentName​(String value)
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Parameters:
          +
          value - The componentName to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearComponentName

          +
          public DaprProtos.SubtleDecryptRequest.Builder clearComponentName()
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          setComponentNameBytes

          +
          public DaprProtos.SubtleDecryptRequest.Builder setComponentNameBytes​(com.google.protobuf.ByteString value)
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Parameters:
          +
          value - The bytes for componentName to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + + + + + +
          +
        • +

          setCiphertext

          +
          public DaprProtos.SubtleDecryptRequest.Builder setCiphertext​(com.google.protobuf.ByteString value)
          +
          + Message to decrypt.
          + 
          + + bytes ciphertext = 2;
          +
          +
          Parameters:
          +
          value - The ciphertext to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          getAlgorithmBytes

          +
          public com.google.protobuf.ByteString getAlgorithmBytes()
          +
          + Algorithm to use, as in the JWA standard.
          + 
          + + string algorithm = 3;
          +
          +
          Specified by:
          +
          getAlgorithmBytes in interface DaprProtos.SubtleDecryptRequestOrBuilder
          +
          Returns:
          +
          The bytes for algorithm.
          +
          +
        • +
        + + + +
          +
        • +

          setAlgorithm

          +
          public DaprProtos.SubtleDecryptRequest.Builder setAlgorithm​(String value)
          +
          + Algorithm to use, as in the JWA standard.
          + 
          + + string algorithm = 3;
          +
          +
          Parameters:
          +
          value - The algorithm to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearAlgorithm

          +
          public DaprProtos.SubtleDecryptRequest.Builder clearAlgorithm()
          +
          + Algorithm to use, as in the JWA standard.
          + 
          + + string algorithm = 3;
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          setAlgorithmBytes

          +
          public DaprProtos.SubtleDecryptRequest.Builder setAlgorithmBytes​(com.google.protobuf.ByteString value)
          +
          + Algorithm to use, as in the JWA standard.
          + 
          + + string algorithm = 3;
          +
          +
          Parameters:
          +
          value - The bytes for algorithm to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getKeyNameBytes

          +
          public com.google.protobuf.ByteString getKeyNameBytes()
          +
          + Name (or name/version) of the key.
          + 
          + + string key_name = 4 [json_name = "keyName"];
          +
          +
          Specified by:
          +
          getKeyNameBytes in interface DaprProtos.SubtleDecryptRequestOrBuilder
          +
          Returns:
          +
          The bytes for keyName.
          +
          +
        • +
        + + + +
          +
        • +

          setKeyName

          +
          public DaprProtos.SubtleDecryptRequest.Builder setKeyName​(String value)
          +
          + Name (or name/version) of the key.
          + 
          + + string key_name = 4 [json_name = "keyName"];
          +
          +
          Parameters:
          +
          value - The keyName to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearKeyName

          +
          public DaprProtos.SubtleDecryptRequest.Builder clearKeyName()
          +
          + Name (or name/version) of the key.
          + 
          + + string key_name = 4 [json_name = "keyName"];
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          setKeyNameBytes

          +
          public DaprProtos.SubtleDecryptRequest.Builder setKeyNameBytes​(com.google.protobuf.ByteString value)
          +
          + Name (or name/version) of the key.
          + 
          + + string key_name = 4 [json_name = "keyName"];
          +
          +
          Parameters:
          +
          value - The bytes for keyName to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          getNonce

          +
          public com.google.protobuf.ByteString getNonce()
          +
          + Nonce / initialization vector.
          + Ignored with asymmetric ciphers.
          + 
          + + bytes nonce = 5;
          +
          +
          Specified by:
          +
          getNonce in interface DaprProtos.SubtleDecryptRequestOrBuilder
          +
          Returns:
          +
          The nonce.
          +
          +
        • +
        + + + +
          +
        • +

          setNonce

          +
          public DaprProtos.SubtleDecryptRequest.Builder setNonce​(com.google.protobuf.ByteString value)
          +
          + Nonce / initialization vector.
          + Ignored with asymmetric ciphers.
          + 
          + + bytes nonce = 5;
          +
          +
          Parameters:
          +
          value - The nonce to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearNonce

          +
          public DaprProtos.SubtleDecryptRequest.Builder clearNonce()
          +
          + Nonce / initialization vector.
          + Ignored with asymmetric ciphers.
          + 
          + + bytes nonce = 5;
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          getTag

          +
          public com.google.protobuf.ByteString getTag()
          +
          + Authentication tag.
          + This is nil when not using an authenticated cipher.
          + 
          + + bytes tag = 6;
          +
          +
          Specified by:
          +
          getTag in interface DaprProtos.SubtleDecryptRequestOrBuilder
          +
          Returns:
          +
          The tag.
          +
          +
        • +
        + + + +
          +
        • +

          setTag

          +
          public DaprProtos.SubtleDecryptRequest.Builder setTag​(com.google.protobuf.ByteString value)
          +
          + Authentication tag.
          + This is nil when not using an authenticated cipher.
          + 
          + + bytes tag = 6;
          +
          +
          Parameters:
          +
          value - The tag to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearTag

          +
          public DaprProtos.SubtleDecryptRequest.Builder clearTag()
          +
          + Authentication tag.
          + This is nil when not using an authenticated cipher.
          + 
          + + bytes tag = 6;
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          getAssociatedData

          +
          public com.google.protobuf.ByteString getAssociatedData()
          +
          + Associated Data when using AEAD ciphers (optional).
          + 
          + + bytes associated_data = 7 [json_name = "associatedData"];
          +
          +
          Specified by:
          +
          getAssociatedData in interface DaprProtos.SubtleDecryptRequestOrBuilder
          +
          Returns:
          +
          The associatedData.
          +
          +
        • +
        + + + +
          +
        • +

          setAssociatedData

          +
          public DaprProtos.SubtleDecryptRequest.Builder setAssociatedData​(com.google.protobuf.ByteString value)
          +
          + Associated Data when using AEAD ciphers (optional).
          + 
          + + bytes associated_data = 7 [json_name = "associatedData"];
          +
          +
          Parameters:
          +
          value - The associatedData to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearAssociatedData

          +
          public DaprProtos.SubtleDecryptRequest.Builder clearAssociatedData()
          +
          + Associated Data when using AEAD ciphers (optional).
          + 
          + + bytes associated_data = 7 [json_name = "associatedData"];
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + + + + + + +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.SubtleDecryptRequest.html b/docs/io/dapr/v1/DaprProtos.SubtleDecryptRequest.html new file mode 100644 index 000000000..acb9b4bac --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.SubtleDecryptRequest.html @@ -0,0 +1,1388 @@ + + + + + +DaprProtos.SubtleDecryptRequest (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.SubtleDecryptRequest

    +
    +
    + +
    +
      +
    • +
      +
      All Implemented Interfaces:
      +
      com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, DaprProtos.SubtleDecryptRequestOrBuilder, Serializable
      +
      +
      +
      Enclosing class:
      +
      DaprProtos
      +
      +
      +
      public static final class DaprProtos.SubtleDecryptRequest
      +extends com.google.protobuf.GeneratedMessageV3
      +implements DaprProtos.SubtleDecryptRequestOrBuilder
      +
      + SubtleDecryptRequest is the request for SubtleDecryptAlpha1.
      + 
      + + Protobuf type dapr.proto.runtime.v1.SubtleDecryptRequest
      +
      +
      See Also:
      +
      Serialized Form
      +
      +
    • +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Field Detail

        + + + +
          +
        • +

          COMPONENT_NAME_FIELD_NUMBER

          +
          public static final int COMPONENT_NAME_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        + + + +
          +
        • +

          CIPHERTEXT_FIELD_NUMBER

          +
          public static final int CIPHERTEXT_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        + + + +
          +
        • +

          ALGORITHM_FIELD_NUMBER

          +
          public static final int ALGORITHM_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        + + + +
          +
        • +

          KEY_NAME_FIELD_NUMBER

          +
          public static final int KEY_NAME_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        + + + +
          +
        • +

          NONCE_FIELD_NUMBER

          +
          public static final int NONCE_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        + + + +
          +
        • +

          TAG_FIELD_NUMBER

          +
          public static final int TAG_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        + + + +
          +
        • +

          ASSOCIATED_DATA_FIELD_NUMBER

          +
          public static final int ASSOCIATED_DATA_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        +
      • +
      +
      + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          +
          newInstance in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getUnknownFields

          +
          public final com.google.protobuf.UnknownFieldSet getUnknownFields()
          +
          +
          Specified by:
          +
          getUnknownFields in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getUnknownFields in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getComponentNameBytes

          +
          public com.google.protobuf.ByteString getComponentNameBytes()
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Specified by:
          +
          getComponentNameBytes in interface DaprProtos.SubtleDecryptRequestOrBuilder
          +
          Returns:
          +
          The bytes for componentName.
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          getAlgorithmBytes

          +
          public com.google.protobuf.ByteString getAlgorithmBytes()
          +
          + Algorithm to use, as in the JWA standard.
          + 
          + + string algorithm = 3;
          +
          +
          Specified by:
          +
          getAlgorithmBytes in interface DaprProtos.SubtleDecryptRequestOrBuilder
          +
          Returns:
          +
          The bytes for algorithm.
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getKeyNameBytes

          +
          public com.google.protobuf.ByteString getKeyNameBytes()
          +
          + Name (or name/version) of the key.
          + 
          + + string key_name = 4 [json_name = "keyName"];
          +
          +
          Specified by:
          +
          getKeyNameBytes in interface DaprProtos.SubtleDecryptRequestOrBuilder
          +
          Returns:
          +
          The bytes for keyName.
          +
          +
        • +
        + + + +
          +
        • +

          getNonce

          +
          public com.google.protobuf.ByteString getNonce()
          +
          + Nonce / initialization vector.
          + Ignored with asymmetric ciphers.
          + 
          + + bytes nonce = 5;
          +
          +
          Specified by:
          +
          getNonce in interface DaprProtos.SubtleDecryptRequestOrBuilder
          +
          Returns:
          +
          The nonce.
          +
          +
        • +
        + + + +
          +
        • +

          getTag

          +
          public com.google.protobuf.ByteString getTag()
          +
          + Authentication tag.
          + This is nil when not using an authenticated cipher.
          + 
          + + bytes tag = 6;
          +
          +
          Specified by:
          +
          getTag in interface DaprProtos.SubtleDecryptRequestOrBuilder
          +
          Returns:
          +
          The tag.
          +
          +
        • +
        + + + +
          +
        • +

          getAssociatedData

          +
          public com.google.protobuf.ByteString getAssociatedData()
          +
          + Associated Data when using AEAD ciphers (optional).
          + 
          + + bytes associated_data = 7 [json_name = "associatedData"];
          +
          +
          Specified by:
          +
          getAssociatedData in interface DaprProtos.SubtleDecryptRequestOrBuilder
          +
          Returns:
          +
          The associatedData.
          +
          +
        • +
        + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          writeTo

          +
          public void writeTo​(com.google.protobuf.CodedOutputStream output)
          +             throws IOException
          +
          +
          Specified by:
          +
          writeTo in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          writeTo in class com.google.protobuf.GeneratedMessageV3
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + +
          +
        • +

          getSerializedSize

          +
          public int getSerializedSize()
          +
          +
          Specified by:
          +
          getSerializedSize in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getSerializedSize in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          equals

          +
          public boolean equals​(Object obj)
          +
          +
          Specified by:
          +
          equals in interface com.google.protobuf.Message
          +
          Overrides:
          +
          equals in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          hashCode

          +
          public int hashCode()
          +
          +
          Specified by:
          +
          hashCode in interface com.google.protobuf.Message
          +
          Overrides:
          +
          hashCode in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleDecryptRequest parseFrom​(ByteBuffer data)
          +                                                 throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleDecryptRequest parseFrom​(ByteBuffer data,
          +                                                        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                 throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleDecryptRequest parseFrom​(com.google.protobuf.ByteString data)
          +                                                 throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleDecryptRequest parseFrom​(com.google.protobuf.ByteString data,
          +                                                        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                 throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleDecryptRequest parseFrom​(byte[] data)
          +                                                 throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleDecryptRequest parseFrom​(byte[] data,
          +                                                        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                 throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          newBuilderForType

          +
          public DaprProtos.SubtleDecryptRequest.Builder newBuilderForType()
          +
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          toBuilder

          +
          public DaprProtos.SubtleDecryptRequest.Builder toBuilder()
          +
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.Message
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + +
          +
        • +

          newBuilderForType

          +
          protected DaprProtos.SubtleDecryptRequest.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
          +
          +
          Specified by:
          +
          newBuilderForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          getParserForType

          +
          public com.google.protobuf.Parser<DaprProtos.SubtleDecryptRequest> getParserForType()
          +
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getParserForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public DaprProtos.SubtleDecryptRequest getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.SubtleDecryptRequestOrBuilder.html b/docs/io/dapr/v1/DaprProtos.SubtleDecryptRequestOrBuilder.html new file mode 100644 index 000000000..d707d060c --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.SubtleDecryptRequestOrBuilder.html @@ -0,0 +1,527 @@ + + + + + +DaprProtos.SubtleDecryptRequestOrBuilder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Interface DaprProtos.SubtleDecryptRequestOrBuilder

    +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        StringgetAlgorithm() +
        + Algorithm to use, as in the JWA standard.
        +
        com.google.protobuf.ByteStringgetAlgorithmBytes() +
        + Algorithm to use, as in the JWA standard.
        +
        com.google.protobuf.ByteStringgetAssociatedData() +
        + Associated Data when using AEAD ciphers (optional).
        +
        com.google.protobuf.ByteStringgetCiphertext() +
        + Message to decrypt.
        +
        StringgetComponentName() +
        + Name of the component
        +
        com.google.protobuf.ByteStringgetComponentNameBytes() +
        + Name of the component
        +
        StringgetKeyName() +
        + Name (or name/version) of the key.
        +
        com.google.protobuf.ByteStringgetKeyNameBytes() +
        + Name (or name/version) of the key.
        +
        com.google.protobuf.ByteStringgetNonce() +
        + Nonce / initialization vector.
        +
        com.google.protobuf.ByteStringgetTag() +
        + Authentication tag.
        +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getComponentName

          +
          String getComponentName()
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Returns:
          +
          The componentName.
          +
          +
        • +
        + + + +
          +
        • +

          getComponentNameBytes

          +
          com.google.protobuf.ByteString getComponentNameBytes()
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Returns:
          +
          The bytes for componentName.
          +
          +
        • +
        + + + +
          +
        • +

          getCiphertext

          +
          com.google.protobuf.ByteString getCiphertext()
          +
          + Message to decrypt.
          + 
          + + bytes ciphertext = 2;
          +
          +
          Returns:
          +
          The ciphertext.
          +
          +
        • +
        + + + +
          +
        • +

          getAlgorithm

          +
          String getAlgorithm()
          +
          + Algorithm to use, as in the JWA standard.
          + 
          + + string algorithm = 3;
          +
          +
          Returns:
          +
          The algorithm.
          +
          +
        • +
        + + + +
          +
        • +

          getAlgorithmBytes

          +
          com.google.protobuf.ByteString getAlgorithmBytes()
          +
          + Algorithm to use, as in the JWA standard.
          + 
          + + string algorithm = 3;
          +
          +
          Returns:
          +
          The bytes for algorithm.
          +
          +
        • +
        + + + +
          +
        • +

          getKeyName

          +
          String getKeyName()
          +
          + Name (or name/version) of the key.
          + 
          + + string key_name = 4 [json_name = "keyName"];
          +
          +
          Returns:
          +
          The keyName.
          +
          +
        • +
        + + + +
          +
        • +

          getKeyNameBytes

          +
          com.google.protobuf.ByteString getKeyNameBytes()
          +
          + Name (or name/version) of the key.
          + 
          + + string key_name = 4 [json_name = "keyName"];
          +
          +
          Returns:
          +
          The bytes for keyName.
          +
          +
        • +
        + + + +
          +
        • +

          getNonce

          +
          com.google.protobuf.ByteString getNonce()
          +
          + Nonce / initialization vector.
          + Ignored with asymmetric ciphers.
          + 
          + + bytes nonce = 5;
          +
          +
          Returns:
          +
          The nonce.
          +
          +
        • +
        + + + +
          +
        • +

          getTag

          +
          com.google.protobuf.ByteString getTag()
          +
          + Authentication tag.
          + This is nil when not using an authenticated cipher.
          + 
          + + bytes tag = 6;
          +
          +
          Returns:
          +
          The tag.
          +
          +
        • +
        + + + +
          +
        • +

          getAssociatedData

          +
          com.google.protobuf.ByteString getAssociatedData()
          +
          + Associated Data when using AEAD ciphers (optional).
          + 
          + + bytes associated_data = 7 [json_name = "associatedData"];
          +
          +
          Returns:
          +
          The associatedData.
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.SubtleDecryptResponse.Builder.html b/docs/io/dapr/v1/DaprProtos.SubtleDecryptResponse.Builder.html new file mode 100644 index 000000000..3db45cca8 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.SubtleDecryptResponse.Builder.html @@ -0,0 +1,787 @@ + + + + + +DaprProtos.SubtleDecryptResponse.Builder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.SubtleDecryptResponse.Builder

    +
    +
    + +
    + +
    +
    + +
    +
    + +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.SubtleDecryptResponse.html b/docs/io/dapr/v1/DaprProtos.SubtleDecryptResponse.html new file mode 100644 index 000000000..ad3db4b37 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.SubtleDecryptResponse.html @@ -0,0 +1,1026 @@ + + + + + +DaprProtos.SubtleDecryptResponse (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.SubtleDecryptResponse

    +
    +
    + +
    +
      +
    • +
      +
      All Implemented Interfaces:
      +
      com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, DaprProtos.SubtleDecryptResponseOrBuilder, Serializable
      +
      +
      +
      Enclosing class:
      +
      DaprProtos
      +
      +
      +
      public static final class DaprProtos.SubtleDecryptResponse
      +extends com.google.protobuf.GeneratedMessageV3
      +implements DaprProtos.SubtleDecryptResponseOrBuilder
      +
      + SubtleDecryptResponse is the response for SubtleDecryptAlpha1.
      + 
      + + Protobuf type dapr.proto.runtime.v1.SubtleDecryptResponse
      +
      +
      See Also:
      +
      Serialized Form
      +
      +
    • +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Field Detail

        + + + +
          +
        • +

          PLAINTEXT_FIELD_NUMBER

          +
          public static final int PLAINTEXT_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        +
      • +
      +
      + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          +
          newInstance in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getUnknownFields

          +
          public final com.google.protobuf.UnknownFieldSet getUnknownFields()
          +
          +
          Specified by:
          +
          getUnknownFields in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getUnknownFields in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          writeTo

          +
          public void writeTo​(com.google.protobuf.CodedOutputStream output)
          +             throws IOException
          +
          +
          Specified by:
          +
          writeTo in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          writeTo in class com.google.protobuf.GeneratedMessageV3
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + +
          +
        • +

          getSerializedSize

          +
          public int getSerializedSize()
          +
          +
          Specified by:
          +
          getSerializedSize in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getSerializedSize in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          equals

          +
          public boolean equals​(Object obj)
          +
          +
          Specified by:
          +
          equals in interface com.google.protobuf.Message
          +
          Overrides:
          +
          equals in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          hashCode

          +
          public int hashCode()
          +
          +
          Specified by:
          +
          hashCode in interface com.google.protobuf.Message
          +
          Overrides:
          +
          hashCode in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleDecryptResponse parseFrom​(ByteBuffer data)
          +                                                  throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleDecryptResponse parseFrom​(ByteBuffer data,
          +                                                         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                  throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleDecryptResponse parseFrom​(com.google.protobuf.ByteString data)
          +                                                  throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleDecryptResponse parseFrom​(com.google.protobuf.ByteString data,
          +                                                         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                  throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleDecryptResponse parseFrom​(byte[] data)
          +                                                  throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleDecryptResponse parseFrom​(byte[] data,
          +                                                         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                  throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          newBuilderForType

          +
          public DaprProtos.SubtleDecryptResponse.Builder newBuilderForType()
          +
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          toBuilder

          +
          public DaprProtos.SubtleDecryptResponse.Builder toBuilder()
          +
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.Message
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + +
          +
        • +

          newBuilderForType

          +
          protected DaprProtos.SubtleDecryptResponse.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
          +
          +
          Specified by:
          +
          newBuilderForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          getParserForType

          +
          public com.google.protobuf.Parser<DaprProtos.SubtleDecryptResponse> getParserForType()
          +
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getParserForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public DaprProtos.SubtleDecryptResponse getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.SubtleDecryptResponseOrBuilder.html b/docs/io/dapr/v1/DaprProtos.SubtleDecryptResponseOrBuilder.html new file mode 100644 index 000000000..542cccda5 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.SubtleDecryptResponseOrBuilder.html @@ -0,0 +1,291 @@ + + + + + +DaprProtos.SubtleDecryptResponseOrBuilder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Interface DaprProtos.SubtleDecryptResponseOrBuilder

    +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        com.google.protobuf.ByteStringgetPlaintext() +
        + Decrypted plaintext.
        +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getPlaintext

          +
          com.google.protobuf.ByteString getPlaintext()
          +
          + Decrypted plaintext.
          + 
          + + bytes plaintext = 1;
          +
          +
          Returns:
          +
          The plaintext.
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.SubtleEncryptRequest.Builder.html b/docs/io/dapr/v1/DaprProtos.SubtleEncryptRequest.Builder.html new file mode 100644 index 000000000..de398b053 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.SubtleEncryptRequest.Builder.html @@ -0,0 +1,1368 @@ + + + + + +DaprProtos.SubtleEncryptRequest.Builder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.SubtleEncryptRequest.Builder

    +
    +
    + +
    + +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SubtleEncryptRequest.Builder>
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getDescriptorForType

          +
          public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
          +
          +
          Specified by:
          +
          getDescriptorForType in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SubtleEncryptRequest.Builder>
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public DaprProtos.SubtleEncryptRequest getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        + + + +
          +
        • +

          build

          +
          public DaprProtos.SubtleEncryptRequest build()
          +
          +
          Specified by:
          +
          build in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          build in interface com.google.protobuf.MessageLite.Builder
          +
          +
        • +
        + + + +
          +
        • +

          buildPartial

          +
          public DaprProtos.SubtleEncryptRequest buildPartial()
          +
          +
          Specified by:
          +
          buildPartial in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          buildPartial in interface com.google.protobuf.MessageLite.Builder
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SubtleEncryptRequest.Builder>
          +
          +
        • +
        + + + +
          +
        • +

          mergeFrom

          +
          public DaprProtos.SubtleEncryptRequest.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
          +                                                         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                  throws IOException
          +
          +
          Specified by:
          +
          mergeFrom in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          mergeFrom in interface com.google.protobuf.MessageLite.Builder
          +
          Overrides:
          +
          mergeFrom in class com.google.protobuf.AbstractMessage.Builder<DaprProtos.SubtleEncryptRequest.Builder>
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getComponentNameBytes

          +
          public com.google.protobuf.ByteString getComponentNameBytes()
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Specified by:
          +
          getComponentNameBytes in interface DaprProtos.SubtleEncryptRequestOrBuilder
          +
          Returns:
          +
          The bytes for componentName.
          +
          +
        • +
        + + + +
          +
        • +

          setComponentName

          +
          public DaprProtos.SubtleEncryptRequest.Builder setComponentName​(String value)
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Parameters:
          +
          value - The componentName to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearComponentName

          +
          public DaprProtos.SubtleEncryptRequest.Builder clearComponentName()
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          setComponentNameBytes

          +
          public DaprProtos.SubtleEncryptRequest.Builder setComponentNameBytes​(com.google.protobuf.ByteString value)
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Parameters:
          +
          value - The bytes for componentName to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + + + + + +
          +
        • +

          setPlaintext

          +
          public DaprProtos.SubtleEncryptRequest.Builder setPlaintext​(com.google.protobuf.ByteString value)
          +
          + Message to encrypt.
          + 
          + + bytes plaintext = 2;
          +
          +
          Parameters:
          +
          value - The plaintext to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          getAlgorithmBytes

          +
          public com.google.protobuf.ByteString getAlgorithmBytes()
          +
          + Algorithm to use, as in the JWA standard.
          + 
          + + string algorithm = 3;
          +
          +
          Specified by:
          +
          getAlgorithmBytes in interface DaprProtos.SubtleEncryptRequestOrBuilder
          +
          Returns:
          +
          The bytes for algorithm.
          +
          +
        • +
        + + + +
          +
        • +

          setAlgorithm

          +
          public DaprProtos.SubtleEncryptRequest.Builder setAlgorithm​(String value)
          +
          + Algorithm to use, as in the JWA standard.
          + 
          + + string algorithm = 3;
          +
          +
          Parameters:
          +
          value - The algorithm to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearAlgorithm

          +
          public DaprProtos.SubtleEncryptRequest.Builder clearAlgorithm()
          +
          + Algorithm to use, as in the JWA standard.
          + 
          + + string algorithm = 3;
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          setAlgorithmBytes

          +
          public DaprProtos.SubtleEncryptRequest.Builder setAlgorithmBytes​(com.google.protobuf.ByteString value)
          +
          + Algorithm to use, as in the JWA standard.
          + 
          + + string algorithm = 3;
          +
          +
          Parameters:
          +
          value - The bytes for algorithm to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getKeyNameBytes

          +
          public com.google.protobuf.ByteString getKeyNameBytes()
          +
          + Name (or name/version) of the key.
          + 
          + + string key_name = 4 [json_name = "keyName"];
          +
          +
          Specified by:
          +
          getKeyNameBytes in interface DaprProtos.SubtleEncryptRequestOrBuilder
          +
          Returns:
          +
          The bytes for keyName.
          +
          +
        • +
        + + + +
          +
        • +

          setKeyName

          +
          public DaprProtos.SubtleEncryptRequest.Builder setKeyName​(String value)
          +
          + Name (or name/version) of the key.
          + 
          + + string key_name = 4 [json_name = "keyName"];
          +
          +
          Parameters:
          +
          value - The keyName to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearKeyName

          +
          public DaprProtos.SubtleEncryptRequest.Builder clearKeyName()
          +
          + Name (or name/version) of the key.
          + 
          + + string key_name = 4 [json_name = "keyName"];
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          setKeyNameBytes

          +
          public DaprProtos.SubtleEncryptRequest.Builder setKeyNameBytes​(com.google.protobuf.ByteString value)
          +
          + Name (or name/version) of the key.
          + 
          + + string key_name = 4 [json_name = "keyName"];
          +
          +
          Parameters:
          +
          value - The bytes for keyName to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          getNonce

          +
          public com.google.protobuf.ByteString getNonce()
          +
          + Nonce / initialization vector.
          + Ignored with asymmetric ciphers.
          + 
          + + bytes nonce = 5;
          +
          +
          Specified by:
          +
          getNonce in interface DaprProtos.SubtleEncryptRequestOrBuilder
          +
          Returns:
          +
          The nonce.
          +
          +
        • +
        + + + +
          +
        • +

          setNonce

          +
          public DaprProtos.SubtleEncryptRequest.Builder setNonce​(com.google.protobuf.ByteString value)
          +
          + Nonce / initialization vector.
          + Ignored with asymmetric ciphers.
          + 
          + + bytes nonce = 5;
          +
          +
          Parameters:
          +
          value - The nonce to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearNonce

          +
          public DaprProtos.SubtleEncryptRequest.Builder clearNonce()
          +
          + Nonce / initialization vector.
          + Ignored with asymmetric ciphers.
          + 
          + + bytes nonce = 5;
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          getAssociatedData

          +
          public com.google.protobuf.ByteString getAssociatedData()
          +
          + Associated Data when using AEAD ciphers (optional).
          + 
          + + bytes associated_data = 6 [json_name = "associatedData"];
          +
          +
          Specified by:
          +
          getAssociatedData in interface DaprProtos.SubtleEncryptRequestOrBuilder
          +
          Returns:
          +
          The associatedData.
          +
          +
        • +
        + + + +
          +
        • +

          setAssociatedData

          +
          public DaprProtos.SubtleEncryptRequest.Builder setAssociatedData​(com.google.protobuf.ByteString value)
          +
          + Associated Data when using AEAD ciphers (optional).
          + 
          + + bytes associated_data = 6 [json_name = "associatedData"];
          +
          +
          Parameters:
          +
          value - The associatedData to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearAssociatedData

          +
          public DaprProtos.SubtleEncryptRequest.Builder clearAssociatedData()
          +
          + Associated Data when using AEAD ciphers (optional).
          + 
          + + bytes associated_data = 6 [json_name = "associatedData"];
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + + + + + + +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.SubtleEncryptRequest.html b/docs/io/dapr/v1/DaprProtos.SubtleEncryptRequest.html new file mode 100644 index 000000000..271e32cd3 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.SubtleEncryptRequest.html @@ -0,0 +1,1341 @@ + + + + + +DaprProtos.SubtleEncryptRequest (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.SubtleEncryptRequest

    +
    +
    + +
    +
      +
    • +
      +
      All Implemented Interfaces:
      +
      com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, DaprProtos.SubtleEncryptRequestOrBuilder, Serializable
      +
      +
      +
      Enclosing class:
      +
      DaprProtos
      +
      +
      +
      public static final class DaprProtos.SubtleEncryptRequest
      +extends com.google.protobuf.GeneratedMessageV3
      +implements DaprProtos.SubtleEncryptRequestOrBuilder
      +
      + SubtleEncryptRequest is the request for SubtleEncryptAlpha1.
      + 
      + + Protobuf type dapr.proto.runtime.v1.SubtleEncryptRequest
      +
      +
      See Also:
      +
      Serialized Form
      +
      +
    • +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Field Detail

        + + + +
          +
        • +

          COMPONENT_NAME_FIELD_NUMBER

          +
          public static final int COMPONENT_NAME_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        + + + +
          +
        • +

          PLAINTEXT_FIELD_NUMBER

          +
          public static final int PLAINTEXT_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        + + + +
          +
        • +

          ALGORITHM_FIELD_NUMBER

          +
          public static final int ALGORITHM_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        + + + +
          +
        • +

          KEY_NAME_FIELD_NUMBER

          +
          public static final int KEY_NAME_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        + + + +
          +
        • +

          NONCE_FIELD_NUMBER

          +
          public static final int NONCE_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        + + + +
          +
        • +

          ASSOCIATED_DATA_FIELD_NUMBER

          +
          public static final int ASSOCIATED_DATA_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        +
      • +
      +
      + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          +
          newInstance in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getUnknownFields

          +
          public final com.google.protobuf.UnknownFieldSet getUnknownFields()
          +
          +
          Specified by:
          +
          getUnknownFields in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getUnknownFields in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getComponentNameBytes

          +
          public com.google.protobuf.ByteString getComponentNameBytes()
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Specified by:
          +
          getComponentNameBytes in interface DaprProtos.SubtleEncryptRequestOrBuilder
          +
          Returns:
          +
          The bytes for componentName.
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          getAlgorithmBytes

          +
          public com.google.protobuf.ByteString getAlgorithmBytes()
          +
          + Algorithm to use, as in the JWA standard.
          + 
          + + string algorithm = 3;
          +
          +
          Specified by:
          +
          getAlgorithmBytes in interface DaprProtos.SubtleEncryptRequestOrBuilder
          +
          Returns:
          +
          The bytes for algorithm.
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getKeyNameBytes

          +
          public com.google.protobuf.ByteString getKeyNameBytes()
          +
          + Name (or name/version) of the key.
          + 
          + + string key_name = 4 [json_name = "keyName"];
          +
          +
          Specified by:
          +
          getKeyNameBytes in interface DaprProtos.SubtleEncryptRequestOrBuilder
          +
          Returns:
          +
          The bytes for keyName.
          +
          +
        • +
        + + + +
          +
        • +

          getNonce

          +
          public com.google.protobuf.ByteString getNonce()
          +
          + Nonce / initialization vector.
          + Ignored with asymmetric ciphers.
          + 
          + + bytes nonce = 5;
          +
          +
          Specified by:
          +
          getNonce in interface DaprProtos.SubtleEncryptRequestOrBuilder
          +
          Returns:
          +
          The nonce.
          +
          +
        • +
        + + + +
          +
        • +

          getAssociatedData

          +
          public com.google.protobuf.ByteString getAssociatedData()
          +
          + Associated Data when using AEAD ciphers (optional).
          + 
          + + bytes associated_data = 6 [json_name = "associatedData"];
          +
          +
          Specified by:
          +
          getAssociatedData in interface DaprProtos.SubtleEncryptRequestOrBuilder
          +
          Returns:
          +
          The associatedData.
          +
          +
        • +
        + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          writeTo

          +
          public void writeTo​(com.google.protobuf.CodedOutputStream output)
          +             throws IOException
          +
          +
          Specified by:
          +
          writeTo in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          writeTo in class com.google.protobuf.GeneratedMessageV3
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + +
          +
        • +

          getSerializedSize

          +
          public int getSerializedSize()
          +
          +
          Specified by:
          +
          getSerializedSize in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getSerializedSize in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          equals

          +
          public boolean equals​(Object obj)
          +
          +
          Specified by:
          +
          equals in interface com.google.protobuf.Message
          +
          Overrides:
          +
          equals in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          hashCode

          +
          public int hashCode()
          +
          +
          Specified by:
          +
          hashCode in interface com.google.protobuf.Message
          +
          Overrides:
          +
          hashCode in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleEncryptRequest parseFrom​(ByteBuffer data)
          +                                                 throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleEncryptRequest parseFrom​(ByteBuffer data,
          +                                                        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                 throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleEncryptRequest parseFrom​(com.google.protobuf.ByteString data)
          +                                                 throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleEncryptRequest parseFrom​(com.google.protobuf.ByteString data,
          +                                                        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                 throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleEncryptRequest parseFrom​(byte[] data)
          +                                                 throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleEncryptRequest parseFrom​(byte[] data,
          +                                                        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                 throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          newBuilderForType

          +
          public DaprProtos.SubtleEncryptRequest.Builder newBuilderForType()
          +
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          toBuilder

          +
          public DaprProtos.SubtleEncryptRequest.Builder toBuilder()
          +
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.Message
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + +
          +
        • +

          newBuilderForType

          +
          protected DaprProtos.SubtleEncryptRequest.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
          +
          +
          Specified by:
          +
          newBuilderForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          getParserForType

          +
          public com.google.protobuf.Parser<DaprProtos.SubtleEncryptRequest> getParserForType()
          +
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getParserForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public DaprProtos.SubtleEncryptRequest getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.SubtleEncryptRequestOrBuilder.html b/docs/io/dapr/v1/DaprProtos.SubtleEncryptRequestOrBuilder.html new file mode 100644 index 000000000..6b4d846f7 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.SubtleEncryptRequestOrBuilder.html @@ -0,0 +1,500 @@ + + + + + +DaprProtos.SubtleEncryptRequestOrBuilder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Interface DaprProtos.SubtleEncryptRequestOrBuilder

    +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        StringgetAlgorithm() +
        + Algorithm to use, as in the JWA standard.
        +
        com.google.protobuf.ByteStringgetAlgorithmBytes() +
        + Algorithm to use, as in the JWA standard.
        +
        com.google.protobuf.ByteStringgetAssociatedData() +
        + Associated Data when using AEAD ciphers (optional).
        +
        StringgetComponentName() +
        + Name of the component
        +
        com.google.protobuf.ByteStringgetComponentNameBytes() +
        + Name of the component
        +
        StringgetKeyName() +
        + Name (or name/version) of the key.
        +
        com.google.protobuf.ByteStringgetKeyNameBytes() +
        + Name (or name/version) of the key.
        +
        com.google.protobuf.ByteStringgetNonce() +
        + Nonce / initialization vector.
        +
        com.google.protobuf.ByteStringgetPlaintext() +
        + Message to encrypt.
        +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getComponentName

          +
          String getComponentName()
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Returns:
          +
          The componentName.
          +
          +
        • +
        + + + +
          +
        • +

          getComponentNameBytes

          +
          com.google.protobuf.ByteString getComponentNameBytes()
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Returns:
          +
          The bytes for componentName.
          +
          +
        • +
        + + + +
          +
        • +

          getPlaintext

          +
          com.google.protobuf.ByteString getPlaintext()
          +
          + Message to encrypt.
          + 
          + + bytes plaintext = 2;
          +
          +
          Returns:
          +
          The plaintext.
          +
          +
        • +
        + + + +
          +
        • +

          getAlgorithm

          +
          String getAlgorithm()
          +
          + Algorithm to use, as in the JWA standard.
          + 
          + + string algorithm = 3;
          +
          +
          Returns:
          +
          The algorithm.
          +
          +
        • +
        + + + +
          +
        • +

          getAlgorithmBytes

          +
          com.google.protobuf.ByteString getAlgorithmBytes()
          +
          + Algorithm to use, as in the JWA standard.
          + 
          + + string algorithm = 3;
          +
          +
          Returns:
          +
          The bytes for algorithm.
          +
          +
        • +
        + + + +
          +
        • +

          getKeyName

          +
          String getKeyName()
          +
          + Name (or name/version) of the key.
          + 
          + + string key_name = 4 [json_name = "keyName"];
          +
          +
          Returns:
          +
          The keyName.
          +
          +
        • +
        + + + +
          +
        • +

          getKeyNameBytes

          +
          com.google.protobuf.ByteString getKeyNameBytes()
          +
          + Name (or name/version) of the key.
          + 
          + + string key_name = 4 [json_name = "keyName"];
          +
          +
          Returns:
          +
          The bytes for keyName.
          +
          +
        • +
        + + + +
          +
        • +

          getNonce

          +
          com.google.protobuf.ByteString getNonce()
          +
          + Nonce / initialization vector.
          + Ignored with asymmetric ciphers.
          + 
          + + bytes nonce = 5;
          +
          +
          Returns:
          +
          The nonce.
          +
          +
        • +
        + + + +
          +
        • +

          getAssociatedData

          +
          com.google.protobuf.ByteString getAssociatedData()
          +
          + Associated Data when using AEAD ciphers (optional).
          + 
          + + bytes associated_data = 6 [json_name = "associatedData"];
          +
          +
          Returns:
          +
          The associatedData.
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.SubtleEncryptResponse.Builder.html b/docs/io/dapr/v1/DaprProtos.SubtleEncryptResponse.Builder.html new file mode 100644 index 000000000..5517c565e --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.SubtleEncryptResponse.Builder.html @@ -0,0 +1,872 @@ + + + + + +DaprProtos.SubtleEncryptResponse.Builder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.SubtleEncryptResponse.Builder

    +
    +
    + +
    + +
    +
    + +
    +
    + +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.SubtleEncryptResponse.html b/docs/io/dapr/v1/DaprProtos.SubtleEncryptResponse.html new file mode 100644 index 000000000..14ced21e1 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.SubtleEncryptResponse.html @@ -0,0 +1,1073 @@ + + + + + +DaprProtos.SubtleEncryptResponse (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.SubtleEncryptResponse

    +
    +
    + +
    +
      +
    • +
      +
      All Implemented Interfaces:
      +
      com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, DaprProtos.SubtleEncryptResponseOrBuilder, Serializable
      +
      +
      +
      Enclosing class:
      +
      DaprProtos
      +
      +
      +
      public static final class DaprProtos.SubtleEncryptResponse
      +extends com.google.protobuf.GeneratedMessageV3
      +implements DaprProtos.SubtleEncryptResponseOrBuilder
      +
      + SubtleEncryptResponse is the response for SubtleEncryptAlpha1.
      + 
      + + Protobuf type dapr.proto.runtime.v1.SubtleEncryptResponse
      +
      +
      See Also:
      +
      Serialized Form
      +
      +
    • +
    +
    +
    + +
    +
    +
      +
    • + +
      + +
      + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          +
          newInstance in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getUnknownFields

          +
          public final com.google.protobuf.UnknownFieldSet getUnknownFields()
          +
          +
          Specified by:
          +
          getUnknownFields in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getUnknownFields in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getTag

          +
          public com.google.protobuf.ByteString getTag()
          +
          + Authentication tag.
          + This is nil when not using an authenticated cipher.
          + 
          + + bytes tag = 2;
          +
          +
          Specified by:
          +
          getTag in interface DaprProtos.SubtleEncryptResponseOrBuilder
          +
          Returns:
          +
          The tag.
          +
          +
        • +
        + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          writeTo

          +
          public void writeTo​(com.google.protobuf.CodedOutputStream output)
          +             throws IOException
          +
          +
          Specified by:
          +
          writeTo in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          writeTo in class com.google.protobuf.GeneratedMessageV3
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + +
          +
        • +

          getSerializedSize

          +
          public int getSerializedSize()
          +
          +
          Specified by:
          +
          getSerializedSize in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getSerializedSize in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          equals

          +
          public boolean equals​(Object obj)
          +
          +
          Specified by:
          +
          equals in interface com.google.protobuf.Message
          +
          Overrides:
          +
          equals in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          hashCode

          +
          public int hashCode()
          +
          +
          Specified by:
          +
          hashCode in interface com.google.protobuf.Message
          +
          Overrides:
          +
          hashCode in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleEncryptResponse parseFrom​(ByteBuffer data)
          +                                                  throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleEncryptResponse parseFrom​(ByteBuffer data,
          +                                                         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                  throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleEncryptResponse parseFrom​(com.google.protobuf.ByteString data)
          +                                                  throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleEncryptResponse parseFrom​(com.google.protobuf.ByteString data,
          +                                                         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                  throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleEncryptResponse parseFrom​(byte[] data)
          +                                                  throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleEncryptResponse parseFrom​(byte[] data,
          +                                                         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                  throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          newBuilderForType

          +
          public DaprProtos.SubtleEncryptResponse.Builder newBuilderForType()
          +
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          toBuilder

          +
          public DaprProtos.SubtleEncryptResponse.Builder toBuilder()
          +
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.Message
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + +
          +
        • +

          newBuilderForType

          +
          protected DaprProtos.SubtleEncryptResponse.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
          +
          +
          Specified by:
          +
          newBuilderForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          getParserForType

          +
          public com.google.protobuf.Parser<DaprProtos.SubtleEncryptResponse> getParserForType()
          +
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getParserForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public DaprProtos.SubtleEncryptResponse getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.SubtleEncryptResponseOrBuilder.html b/docs/io/dapr/v1/DaprProtos.SubtleEncryptResponseOrBuilder.html new file mode 100644 index 000000000..ce3ac876a --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.SubtleEncryptResponseOrBuilder.html @@ -0,0 +1,318 @@ + + + + + +DaprProtos.SubtleEncryptResponseOrBuilder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Interface DaprProtos.SubtleEncryptResponseOrBuilder

    +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        com.google.protobuf.ByteStringgetCiphertext() +
        + Encrypted ciphertext.
        +
        com.google.protobuf.ByteStringgetTag() +
        + Authentication tag.
        +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getCiphertext

          +
          com.google.protobuf.ByteString getCiphertext()
          +
          + Encrypted ciphertext.
          + 
          + + bytes ciphertext = 1;
          +
          +
          Returns:
          +
          The ciphertext.
          +
          +
        • +
        + + + +
          +
        • +

          getTag

          +
          com.google.protobuf.ByteString getTag()
          +
          + Authentication tag.
          + This is nil when not using an authenticated cipher.
          + 
          + + bytes tag = 2;
          +
          +
          Returns:
          +
          The tag.
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.SubtleGetKeyRequest.Builder.html b/docs/io/dapr/v1/DaprProtos.SubtleGetKeyRequest.Builder.html new file mode 100644 index 000000000..5f73b181f --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.SubtleGetKeyRequest.Builder.html @@ -0,0 +1,1119 @@ + + + + + +DaprProtos.SubtleGetKeyRequest.Builder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.SubtleGetKeyRequest.Builder

    +
    +
    + +
    + +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SubtleGetKeyRequest.Builder>
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getDescriptorForType

          +
          public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
          +
          +
          Specified by:
          +
          getDescriptorForType in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SubtleGetKeyRequest.Builder>
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public DaprProtos.SubtleGetKeyRequest getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        + + + +
          +
        • +

          build

          +
          public DaprProtos.SubtleGetKeyRequest build()
          +
          +
          Specified by:
          +
          build in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          build in interface com.google.protobuf.MessageLite.Builder
          +
          +
        • +
        + + + +
          +
        • +

          buildPartial

          +
          public DaprProtos.SubtleGetKeyRequest buildPartial()
          +
          +
          Specified by:
          +
          buildPartial in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          buildPartial in interface com.google.protobuf.MessageLite.Builder
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SubtleGetKeyRequest.Builder>
          +
          +
        • +
        + + + +
          +
        • +

          mergeFrom

          +
          public DaprProtos.SubtleGetKeyRequest.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
          +                                                        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                 throws IOException
          +
          +
          Specified by:
          +
          mergeFrom in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          mergeFrom in interface com.google.protobuf.MessageLite.Builder
          +
          Overrides:
          +
          mergeFrom in class com.google.protobuf.AbstractMessage.Builder<DaprProtos.SubtleGetKeyRequest.Builder>
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getComponentNameBytes

          +
          public com.google.protobuf.ByteString getComponentNameBytes()
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Specified by:
          +
          getComponentNameBytes in interface DaprProtos.SubtleGetKeyRequestOrBuilder
          +
          Returns:
          +
          The bytes for componentName.
          +
          +
        • +
        + + + +
          +
        • +

          setComponentName

          +
          public DaprProtos.SubtleGetKeyRequest.Builder setComponentName​(String value)
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Parameters:
          +
          value - The componentName to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearComponentName

          +
          public DaprProtos.SubtleGetKeyRequest.Builder clearComponentName()
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          setComponentNameBytes

          +
          public DaprProtos.SubtleGetKeyRequest.Builder setComponentNameBytes​(com.google.protobuf.ByteString value)
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Parameters:
          +
          value - The bytes for componentName to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getNameBytes

          +
          public com.google.protobuf.ByteString getNameBytes()
          +
          + Name (or name/version) of the key to use in the key vault
          + 
          + + string name = 2;
          +
          +
          Specified by:
          +
          getNameBytes in interface DaprProtos.SubtleGetKeyRequestOrBuilder
          +
          Returns:
          +
          The bytes for name.
          +
          +
        • +
        + + + +
          +
        • +

          setName

          +
          public DaprProtos.SubtleGetKeyRequest.Builder setName​(String value)
          +
          + Name (or name/version) of the key to use in the key vault
          + 
          + + string name = 2;
          +
          +
          Parameters:
          +
          value - The name to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearName

          +
          public DaprProtos.SubtleGetKeyRequest.Builder clearName()
          +
          + Name (or name/version) of the key to use in the key vault
          + 
          + + string name = 2;
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          setNameBytes

          +
          public DaprProtos.SubtleGetKeyRequest.Builder setNameBytes​(com.google.protobuf.ByteString value)
          +
          + Name (or name/version) of the key to use in the key vault
          + 
          + + string name = 2;
          +
          +
          Parameters:
          +
          value - The bytes for name to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          getFormatValue

          +
          public int getFormatValue()
          +
          + Response format
          + 
          + + .dapr.proto.runtime.v1.SubtleGetKeyRequest.KeyFormat format = 3;
          +
          +
          Specified by:
          +
          getFormatValue in interface DaprProtos.SubtleGetKeyRequestOrBuilder
          +
          Returns:
          +
          The enum numeric value on the wire for format.
          +
          +
        • +
        + + + +
          +
        • +

          setFormatValue

          +
          public DaprProtos.SubtleGetKeyRequest.Builder setFormatValue​(int value)
          +
          + Response format
          + 
          + + .dapr.proto.runtime.v1.SubtleGetKeyRequest.KeyFormat format = 3;
          +
          +
          Parameters:
          +
          value - The enum numeric value on the wire for format to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          clearFormat

          +
          public DaprProtos.SubtleGetKeyRequest.Builder clearFormat()
          +
          + Response format
          + 
          + + .dapr.proto.runtime.v1.SubtleGetKeyRequest.KeyFormat format = 3;
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + + + + + + +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.SubtleGetKeyRequest.KeyFormat.html b/docs/io/dapr/v1/DaprProtos.SubtleGetKeyRequest.KeyFormat.html new file mode 100644 index 000000000..5b5639a7a --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.SubtleGetKeyRequest.KeyFormat.html @@ -0,0 +1,659 @@ + + + + + +DaprProtos.SubtleGetKeyRequest.KeyFormat (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Enum DaprProtos.SubtleGetKeyRequest.KeyFormat

    +
    +
    + +
    + +
    +
    + +
    +
    +
      +
    • + +
      + +
      + +
      +
        +
      • + + +

        Field Detail

        + + + +
          +
        • +

          PEM_VALUE

          +
          public static final int PEM_VALUE
          +
          + PEM (PKIX) (default)
          + 
          + + PEM = 0;
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        + + + +
          +
        • +

          JSON_VALUE

          +
          public static final int JSON_VALUE
          +
          + JSON (JSON Web Key) as string
          + 
          + + JSON = 1;
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        +
      • +
      +
      + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          values

          +
          public static DaprProtos.SubtleGetKeyRequest.KeyFormat[] values()
          +
          Returns an array containing the constants of this enum type, in +the order they are declared. This method may be used to iterate +over the constants as follows: +
          +for (DaprProtos.SubtleGetKeyRequest.KeyFormat c : DaprProtos.SubtleGetKeyRequest.KeyFormat.values())
          +    System.out.println(c);
          +
          +
          +
          Returns:
          +
          an array containing the constants of this enum type, in the order they are declared
          +
          +
        • +
        + + + +
          +
        • +

          valueOf

          +
          public static DaprProtos.SubtleGetKeyRequest.KeyFormat valueOf​(String name)
          +
          Returns the enum constant of this type with the specified name. +The string must match exactly an identifier used to declare an +enum constant in this type. (Extraneous whitespace characters are +not permitted.)
          +
          +
          Parameters:
          +
          name - the name of the enum constant to be returned.
          +
          Returns:
          +
          the enum constant with the specified name
          +
          Throws:
          +
          IllegalArgumentException - if this enum type has no constant with the specified name
          +
          NullPointerException - if the argument is null
          +
          +
        • +
        + + + +
          +
        • +

          getNumber

          +
          public final int getNumber()
          +
          +
          Specified by:
          +
          getNumber in interface com.google.protobuf.Internal.EnumLite
          +
          Specified by:
          +
          getNumber in interface com.google.protobuf.ProtocolMessageEnum
          +
          +
        • +
        + + + +
          +
        • +

          valueOf

          +
          @Deprecated
          +public static DaprProtos.SubtleGetKeyRequest.KeyFormat valueOf​(int value)
          +
          Deprecated.
          +
          Returns the enum constant of this type with the specified name. +The string must match exactly an identifier used to declare an +enum constant in this type. (Extraneous whitespace characters are +not permitted.)
          +
          +
          Parameters:
          +
          value - the name of the enum constant to be returned.
          +
          Returns:
          +
          the enum constant with the specified name
          +
          Throws:
          +
          IllegalArgumentException - if this enum type has no constant with the specified name
          +
          NullPointerException - if the argument is null
          +
          +
        • +
        + + + +
          +
        • +

          forNumber

          +
          public static DaprProtos.SubtleGetKeyRequest.KeyFormat forNumber​(int value)
          +
          +
          Parameters:
          +
          value - The numeric wire value of the corresponding enum entry.
          +
          Returns:
          +
          The enum associated with the given numeric wire value.
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getValueDescriptor

          +
          public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
          +
          +
          Specified by:
          +
          getValueDescriptor in interface com.google.protobuf.ProtocolMessageEnum
          +
          +
        • +
        + + + +
          +
        • +

          getDescriptorForType

          +
          public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
          +
          +
          Specified by:
          +
          getDescriptorForType in interface com.google.protobuf.ProtocolMessageEnum
          +
          +
        • +
        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          valueOf

          +
          public static DaprProtos.SubtleGetKeyRequest.KeyFormat valueOf​(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
          +
          Returns the enum constant of this type with the specified name. +The string must match exactly an identifier used to declare an +enum constant in this type. (Extraneous whitespace characters are +not permitted.)
          +
          +
          Parameters:
          +
          desc - the name of the enum constant to be returned.
          +
          Returns:
          +
          the enum constant with the specified name
          +
          Throws:
          +
          IllegalArgumentException - if this enum type has no constant with the specified name
          +
          NullPointerException - if the argument is null
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.SubtleGetKeyRequest.html b/docs/io/dapr/v1/DaprProtos.SubtleGetKeyRequest.html new file mode 100644 index 000000000..43330a1c7 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.SubtleGetKeyRequest.html @@ -0,0 +1,1209 @@ + + + + + +DaprProtos.SubtleGetKeyRequest (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.SubtleGetKeyRequest

    +
    +
    + +
    +
      +
    • +
      +
      All Implemented Interfaces:
      +
      com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, DaprProtos.SubtleGetKeyRequestOrBuilder, Serializable
      +
      +
      +
      Enclosing class:
      +
      DaprProtos
      +
      +
      +
      public static final class DaprProtos.SubtleGetKeyRequest
      +extends com.google.protobuf.GeneratedMessageV3
      +implements DaprProtos.SubtleGetKeyRequestOrBuilder
      +
      + SubtleGetKeyRequest is the request object for SubtleGetKeyAlpha1.
      + 
      + + Protobuf type dapr.proto.runtime.v1.SubtleGetKeyRequest
      +
      +
      See Also:
      +
      Serialized Form
      +
      +
    • +
    +
    +
    + +
    +
    +
      +
    • + +
      + +
      + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          +
          newInstance in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getUnknownFields

          +
          public final com.google.protobuf.UnknownFieldSet getUnknownFields()
          +
          +
          Specified by:
          +
          getUnknownFields in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getUnknownFields in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getComponentNameBytes

          +
          public com.google.protobuf.ByteString getComponentNameBytes()
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Specified by:
          +
          getComponentNameBytes in interface DaprProtos.SubtleGetKeyRequestOrBuilder
          +
          Returns:
          +
          The bytes for componentName.
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getNameBytes

          +
          public com.google.protobuf.ByteString getNameBytes()
          +
          + Name (or name/version) of the key to use in the key vault
          + 
          + + string name = 2;
          +
          +
          Specified by:
          +
          getNameBytes in interface DaprProtos.SubtleGetKeyRequestOrBuilder
          +
          Returns:
          +
          The bytes for name.
          +
          +
        • +
        + + + +
          +
        • +

          getFormatValue

          +
          public int getFormatValue()
          +
          + Response format
          + 
          + + .dapr.proto.runtime.v1.SubtleGetKeyRequest.KeyFormat format = 3;
          +
          +
          Specified by:
          +
          getFormatValue in interface DaprProtos.SubtleGetKeyRequestOrBuilder
          +
          Returns:
          +
          The enum numeric value on the wire for format.
          +
          +
        • +
        + + + + + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          writeTo

          +
          public void writeTo​(com.google.protobuf.CodedOutputStream output)
          +             throws IOException
          +
          +
          Specified by:
          +
          writeTo in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          writeTo in class com.google.protobuf.GeneratedMessageV3
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + +
          +
        • +

          getSerializedSize

          +
          public int getSerializedSize()
          +
          +
          Specified by:
          +
          getSerializedSize in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getSerializedSize in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          equals

          +
          public boolean equals​(Object obj)
          +
          +
          Specified by:
          +
          equals in interface com.google.protobuf.Message
          +
          Overrides:
          +
          equals in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          hashCode

          +
          public int hashCode()
          +
          +
          Specified by:
          +
          hashCode in interface com.google.protobuf.Message
          +
          Overrides:
          +
          hashCode in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleGetKeyRequest parseFrom​(ByteBuffer data)
          +                                                throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleGetKeyRequest parseFrom​(ByteBuffer data,
          +                                                       com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleGetKeyRequest parseFrom​(com.google.protobuf.ByteString data)
          +                                                throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleGetKeyRequest parseFrom​(com.google.protobuf.ByteString data,
          +                                                       com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleGetKeyRequest parseFrom​(byte[] data)
          +                                                throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleGetKeyRequest parseFrom​(byte[] data,
          +                                                       com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          newBuilderForType

          +
          public DaprProtos.SubtleGetKeyRequest.Builder newBuilderForType()
          +
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          toBuilder

          +
          public DaprProtos.SubtleGetKeyRequest.Builder toBuilder()
          +
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.Message
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + +
          +
        • +

          newBuilderForType

          +
          protected DaprProtos.SubtleGetKeyRequest.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
          +
          +
          Specified by:
          +
          newBuilderForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          getParserForType

          +
          public com.google.protobuf.Parser<DaprProtos.SubtleGetKeyRequest> getParserForType()
          +
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getParserForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public DaprProtos.SubtleGetKeyRequest getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.SubtleGetKeyRequestOrBuilder.html b/docs/io/dapr/v1/DaprProtos.SubtleGetKeyRequestOrBuilder.html new file mode 100644 index 000000000..34e200420 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.SubtleGetKeyRequestOrBuilder.html @@ -0,0 +1,421 @@ + + + + + +DaprProtos.SubtleGetKeyRequestOrBuilder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Interface DaprProtos.SubtleGetKeyRequestOrBuilder

    +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        StringgetComponentName() +
        + Name of the component
        +
        com.google.protobuf.ByteStringgetComponentNameBytes() +
        + Name of the component
        +
        DaprProtos.SubtleGetKeyRequest.KeyFormatgetFormat() +
        + Response format
        +
        intgetFormatValue() +
        + Response format
        +
        StringgetName() +
        + Name (or name/version) of the key to use in the key vault
        +
        com.google.protobuf.ByteStringgetNameBytes() +
        + Name (or name/version) of the key to use in the key vault
        +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getComponentName

          +
          String getComponentName()
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Returns:
          +
          The componentName.
          +
          +
        • +
        + + + +
          +
        • +

          getComponentNameBytes

          +
          com.google.protobuf.ByteString getComponentNameBytes()
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Returns:
          +
          The bytes for componentName.
          +
          +
        • +
        + + + +
          +
        • +

          getName

          +
          String getName()
          +
          + Name (or name/version) of the key to use in the key vault
          + 
          + + string name = 2;
          +
          +
          Returns:
          +
          The name.
          +
          +
        • +
        + + + +
          +
        • +

          getNameBytes

          +
          com.google.protobuf.ByteString getNameBytes()
          +
          + Name (or name/version) of the key to use in the key vault
          + 
          + + string name = 2;
          +
          +
          Returns:
          +
          The bytes for name.
          +
          +
        • +
        + + + +
          +
        • +

          getFormatValue

          +
          int getFormatValue()
          +
          + Response format
          + 
          + + .dapr.proto.runtime.v1.SubtleGetKeyRequest.KeyFormat format = 3;
          +
          +
          Returns:
          +
          The enum numeric value on the wire for format.
          +
          +
        • +
        + + + + +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.SubtleGetKeyResponse.Builder.html b/docs/io/dapr/v1/DaprProtos.SubtleGetKeyResponse.Builder.html new file mode 100644 index 000000000..b25c778b6 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.SubtleGetKeyResponse.Builder.html @@ -0,0 +1,986 @@ + + + + + +DaprProtos.SubtleGetKeyResponse.Builder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.SubtleGetKeyResponse.Builder

    +
    +
    + +
    + +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SubtleGetKeyResponse.Builder>
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getDescriptorForType

          +
          public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
          +
          +
          Specified by:
          +
          getDescriptorForType in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SubtleGetKeyResponse.Builder>
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public DaprProtos.SubtleGetKeyResponse getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        + + + +
          +
        • +

          build

          +
          public DaprProtos.SubtleGetKeyResponse build()
          +
          +
          Specified by:
          +
          build in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          build in interface com.google.protobuf.MessageLite.Builder
          +
          +
        • +
        + + + +
          +
        • +

          buildPartial

          +
          public DaprProtos.SubtleGetKeyResponse buildPartial()
          +
          +
          Specified by:
          +
          buildPartial in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          buildPartial in interface com.google.protobuf.MessageLite.Builder
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SubtleGetKeyResponse.Builder>
          +
          +
        • +
        + + + +
          +
        • +

          mergeFrom

          +
          public DaprProtos.SubtleGetKeyResponse.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
          +                                                         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                  throws IOException
          +
          +
          Specified by:
          +
          mergeFrom in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          mergeFrom in interface com.google.protobuf.MessageLite.Builder
          +
          Overrides:
          +
          mergeFrom in class com.google.protobuf.AbstractMessage.Builder<DaprProtos.SubtleGetKeyResponse.Builder>
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + +
          +
        • +

          getName

          +
          public String getName()
          +
          + Name (or name/version) of the key.
          + This is returned as response too in case there is a version.
          + 
          + + string name = 1;
          +
          +
          Specified by:
          +
          getName in interface DaprProtos.SubtleGetKeyResponseOrBuilder
          +
          Returns:
          +
          The name.
          +
          +
        • +
        + + + +
          +
        • +

          getNameBytes

          +
          public com.google.protobuf.ByteString getNameBytes()
          +
          + Name (or name/version) of the key.
          + This is returned as response too in case there is a version.
          + 
          + + string name = 1;
          +
          +
          Specified by:
          +
          getNameBytes in interface DaprProtos.SubtleGetKeyResponseOrBuilder
          +
          Returns:
          +
          The bytes for name.
          +
          +
        • +
        + + + +
          +
        • +

          setName

          +
          public DaprProtos.SubtleGetKeyResponse.Builder setName​(String value)
          +
          + Name (or name/version) of the key.
          + This is returned as response too in case there is a version.
          + 
          + + string name = 1;
          +
          +
          Parameters:
          +
          value - The name to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearName

          +
          public DaprProtos.SubtleGetKeyResponse.Builder clearName()
          +
          + Name (or name/version) of the key.
          + This is returned as response too in case there is a version.
          + 
          + + string name = 1;
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          setNameBytes

          +
          public DaprProtos.SubtleGetKeyResponse.Builder setNameBytes​(com.google.protobuf.ByteString value)
          +
          + Name (or name/version) of the key.
          + This is returned as response too in case there is a version.
          + 
          + + string name = 1;
          +
          +
          Parameters:
          +
          value - The bytes for name to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getPublicKeyBytes

          +
          public com.google.protobuf.ByteString getPublicKeyBytes()
          +
          + Public key, encoded in the requested format
          + 
          + + string public_key = 2 [json_name = "publicKey"];
          +
          +
          Specified by:
          +
          getPublicKeyBytes in interface DaprProtos.SubtleGetKeyResponseOrBuilder
          +
          Returns:
          +
          The bytes for publicKey.
          +
          +
        • +
        + + + +
          +
        • +

          setPublicKey

          +
          public DaprProtos.SubtleGetKeyResponse.Builder setPublicKey​(String value)
          +
          + Public key, encoded in the requested format
          + 
          + + string public_key = 2 [json_name = "publicKey"];
          +
          +
          Parameters:
          +
          value - The publicKey to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearPublicKey

          +
          public DaprProtos.SubtleGetKeyResponse.Builder clearPublicKey()
          +
          + Public key, encoded in the requested format
          + 
          + + string public_key = 2 [json_name = "publicKey"];
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          setPublicKeyBytes

          +
          public DaprProtos.SubtleGetKeyResponse.Builder setPublicKeyBytes​(com.google.protobuf.ByteString value)
          +
          + Public key, encoded in the requested format
          + 
          + + string public_key = 2 [json_name = "publicKey"];
          +
          +
          Parameters:
          +
          value - The bytes for publicKey to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + + + + + + +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.SubtleGetKeyResponse.html b/docs/io/dapr/v1/DaprProtos.SubtleGetKeyResponse.html new file mode 100644 index 000000000..54c41d3ee --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.SubtleGetKeyResponse.html @@ -0,0 +1,1130 @@ + + + + + +DaprProtos.SubtleGetKeyResponse (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.SubtleGetKeyResponse

    +
    +
    + +
    +
      +
    • +
      +
      All Implemented Interfaces:
      +
      com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, DaprProtos.SubtleGetKeyResponseOrBuilder, Serializable
      +
      +
      +
      Enclosing class:
      +
      DaprProtos
      +
      +
      +
      public static final class DaprProtos.SubtleGetKeyResponse
      +extends com.google.protobuf.GeneratedMessageV3
      +implements DaprProtos.SubtleGetKeyResponseOrBuilder
      +
      + SubtleGetKeyResponse is the response for SubtleGetKeyAlpha1.
      + 
      + + Protobuf type dapr.proto.runtime.v1.SubtleGetKeyResponse
      +
      +
      See Also:
      +
      Serialized Form
      +
      +
    • +
    +
    +
    + +
    +
    +
      +
    • + +
      + +
      + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          +
          newInstance in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getUnknownFields

          +
          public final com.google.protobuf.UnknownFieldSet getUnknownFields()
          +
          +
          Specified by:
          +
          getUnknownFields in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getUnknownFields in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getName

          +
          public String getName()
          +
          + Name (or name/version) of the key.
          + This is returned as response too in case there is a version.
          + 
          + + string name = 1;
          +
          +
          Specified by:
          +
          getName in interface DaprProtos.SubtleGetKeyResponseOrBuilder
          +
          Returns:
          +
          The name.
          +
          +
        • +
        + + + +
          +
        • +

          getNameBytes

          +
          public com.google.protobuf.ByteString getNameBytes()
          +
          + Name (or name/version) of the key.
          + This is returned as response too in case there is a version.
          + 
          + + string name = 1;
          +
          +
          Specified by:
          +
          getNameBytes in interface DaprProtos.SubtleGetKeyResponseOrBuilder
          +
          Returns:
          +
          The bytes for name.
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getPublicKeyBytes

          +
          public com.google.protobuf.ByteString getPublicKeyBytes()
          +
          + Public key, encoded in the requested format
          + 
          + + string public_key = 2 [json_name = "publicKey"];
          +
          +
          Specified by:
          +
          getPublicKeyBytes in interface DaprProtos.SubtleGetKeyResponseOrBuilder
          +
          Returns:
          +
          The bytes for publicKey.
          +
          +
        • +
        + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          writeTo

          +
          public void writeTo​(com.google.protobuf.CodedOutputStream output)
          +             throws IOException
          +
          +
          Specified by:
          +
          writeTo in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          writeTo in class com.google.protobuf.GeneratedMessageV3
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + +
          +
        • +

          getSerializedSize

          +
          public int getSerializedSize()
          +
          +
          Specified by:
          +
          getSerializedSize in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getSerializedSize in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          equals

          +
          public boolean equals​(Object obj)
          +
          +
          Specified by:
          +
          equals in interface com.google.protobuf.Message
          +
          Overrides:
          +
          equals in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          hashCode

          +
          public int hashCode()
          +
          +
          Specified by:
          +
          hashCode in interface com.google.protobuf.Message
          +
          Overrides:
          +
          hashCode in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleGetKeyResponse parseFrom​(ByteBuffer data)
          +                                                 throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleGetKeyResponse parseFrom​(ByteBuffer data,
          +                                                        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                 throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleGetKeyResponse parseFrom​(com.google.protobuf.ByteString data)
          +                                                 throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleGetKeyResponse parseFrom​(com.google.protobuf.ByteString data,
          +                                                        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                 throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleGetKeyResponse parseFrom​(byte[] data)
          +                                                 throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleGetKeyResponse parseFrom​(byte[] data,
          +                                                        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                 throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          newBuilderForType

          +
          public DaprProtos.SubtleGetKeyResponse.Builder newBuilderForType()
          +
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          toBuilder

          +
          public DaprProtos.SubtleGetKeyResponse.Builder toBuilder()
          +
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.Message
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + +
          +
        • +

          newBuilderForType

          +
          protected DaprProtos.SubtleGetKeyResponse.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
          +
          +
          Specified by:
          +
          newBuilderForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          getParserForType

          +
          public com.google.protobuf.Parser<DaprProtos.SubtleGetKeyResponse> getParserForType()
          +
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getParserForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public DaprProtos.SubtleGetKeyResponse getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.SubtleGetKeyResponseOrBuilder.html b/docs/io/dapr/v1/DaprProtos.SubtleGetKeyResponseOrBuilder.html new file mode 100644 index 000000000..56330b94f --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.SubtleGetKeyResponseOrBuilder.html @@ -0,0 +1,371 @@ + + + + + +DaprProtos.SubtleGetKeyResponseOrBuilder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Interface DaprProtos.SubtleGetKeyResponseOrBuilder

    +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        StringgetName() +
        + Name (or name/version) of the key.
        +
        com.google.protobuf.ByteStringgetNameBytes() +
        + Name (or name/version) of the key.
        +
        StringgetPublicKey() +
        + Public key, encoded in the requested format
        +
        com.google.protobuf.ByteStringgetPublicKeyBytes() +
        + Public key, encoded in the requested format
        +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getName

          +
          String getName()
          +
          + Name (or name/version) of the key.
          + This is returned as response too in case there is a version.
          + 
          + + string name = 1;
          +
          +
          Returns:
          +
          The name.
          +
          +
        • +
        + + + +
          +
        • +

          getNameBytes

          +
          com.google.protobuf.ByteString getNameBytes()
          +
          + Name (or name/version) of the key.
          + This is returned as response too in case there is a version.
          + 
          + + string name = 1;
          +
          +
          Returns:
          +
          The bytes for name.
          +
          +
        • +
        + + + +
          +
        • +

          getPublicKey

          +
          String getPublicKey()
          +
          + Public key, encoded in the requested format
          + 
          + + string public_key = 2 [json_name = "publicKey"];
          +
          +
          Returns:
          +
          The publicKey.
          +
          +
        • +
        + + + +
          +
        • +

          getPublicKeyBytes

          +
          com.google.protobuf.ByteString getPublicKeyBytes()
          +
          + Public key, encoded in the requested format
          + 
          + + string public_key = 2 [json_name = "publicKey"];
          +
          +
          Returns:
          +
          The bytes for publicKey.
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.SubtleSignRequest.Builder.html b/docs/io/dapr/v1/DaprProtos.SubtleSignRequest.Builder.html new file mode 100644 index 000000000..1b6c6c9ea --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.SubtleSignRequest.Builder.html @@ -0,0 +1,1201 @@ + + + + + +DaprProtos.SubtleSignRequest.Builder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.SubtleSignRequest.Builder

    +
    +
    + +
    + +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SubtleSignRequest.Builder>
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getDescriptorForType

          +
          public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
          +
          +
          Specified by:
          +
          getDescriptorForType in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SubtleSignRequest.Builder>
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public DaprProtos.SubtleSignRequest getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        + + + +
          +
        • +

          build

          +
          public DaprProtos.SubtleSignRequest build()
          +
          +
          Specified by:
          +
          build in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          build in interface com.google.protobuf.MessageLite.Builder
          +
          +
        • +
        + + + +
          +
        • +

          buildPartial

          +
          public DaprProtos.SubtleSignRequest buildPartial()
          +
          +
          Specified by:
          +
          buildPartial in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          buildPartial in interface com.google.protobuf.MessageLite.Builder
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + +
          +
        • +

          setRepeatedField

          +
          public DaprProtos.SubtleSignRequest.Builder setRepeatedField​(com.google.protobuf.Descriptors.FieldDescriptor field,
          +                                                             int index,
          +                                                             Object value)
          +
          +
          Specified by:
          +
          setRepeatedField in interface com.google.protobuf.Message.Builder
          +
          Overrides:
          +
          setRepeatedField in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SubtleSignRequest.Builder>
          +
          +
        • +
        + + + + + + + + + + + + + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SubtleSignRequest.Builder>
          +
          +
        • +
        + + + +
          +
        • +

          mergeFrom

          +
          public DaprProtos.SubtleSignRequest.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
          +                                                      com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                               throws IOException
          +
          +
          Specified by:
          +
          mergeFrom in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          mergeFrom in interface com.google.protobuf.MessageLite.Builder
          +
          Overrides:
          +
          mergeFrom in class com.google.protobuf.AbstractMessage.Builder<DaprProtos.SubtleSignRequest.Builder>
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getComponentNameBytes

          +
          public com.google.protobuf.ByteString getComponentNameBytes()
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Specified by:
          +
          getComponentNameBytes in interface DaprProtos.SubtleSignRequestOrBuilder
          +
          Returns:
          +
          The bytes for componentName.
          +
          +
        • +
        + + + +
          +
        • +

          setComponentName

          +
          public DaprProtos.SubtleSignRequest.Builder setComponentName​(String value)
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Parameters:
          +
          value - The componentName to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearComponentName

          +
          public DaprProtos.SubtleSignRequest.Builder clearComponentName()
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          setComponentNameBytes

          +
          public DaprProtos.SubtleSignRequest.Builder setComponentNameBytes​(com.google.protobuf.ByteString value)
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Parameters:
          +
          value - The bytes for componentName to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + + + + + +
          +
        • +

          setDigest

          +
          public DaprProtos.SubtleSignRequest.Builder setDigest​(com.google.protobuf.ByteString value)
          +
          + Digest to sign.
          + 
          + + bytes digest = 2;
          +
          +
          Parameters:
          +
          value - The digest to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          getAlgorithmBytes

          +
          public com.google.protobuf.ByteString getAlgorithmBytes()
          +
          + Algorithm to use, as in the JWA standard.
          + 
          + + string algorithm = 3;
          +
          +
          Specified by:
          +
          getAlgorithmBytes in interface DaprProtos.SubtleSignRequestOrBuilder
          +
          Returns:
          +
          The bytes for algorithm.
          +
          +
        • +
        + + + +
          +
        • +

          setAlgorithm

          +
          public DaprProtos.SubtleSignRequest.Builder setAlgorithm​(String value)
          +
          + Algorithm to use, as in the JWA standard.
          + 
          + + string algorithm = 3;
          +
          +
          Parameters:
          +
          value - The algorithm to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearAlgorithm

          +
          public DaprProtos.SubtleSignRequest.Builder clearAlgorithm()
          +
          + Algorithm to use, as in the JWA standard.
          + 
          + + string algorithm = 3;
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          setAlgorithmBytes

          +
          public DaprProtos.SubtleSignRequest.Builder setAlgorithmBytes​(com.google.protobuf.ByteString value)
          +
          + Algorithm to use, as in the JWA standard.
          + 
          + + string algorithm = 3;
          +
          +
          Parameters:
          +
          value - The bytes for algorithm to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getKeyNameBytes

          +
          public com.google.protobuf.ByteString getKeyNameBytes()
          +
          + Name (or name/version) of the key.
          + 
          + + string key_name = 4 [json_name = "keyName"];
          +
          +
          Specified by:
          +
          getKeyNameBytes in interface DaprProtos.SubtleSignRequestOrBuilder
          +
          Returns:
          +
          The bytes for keyName.
          +
          +
        • +
        + + + +
          +
        • +

          setKeyName

          +
          public DaprProtos.SubtleSignRequest.Builder setKeyName​(String value)
          +
          + Name (or name/version) of the key.
          + 
          + + string key_name = 4 [json_name = "keyName"];
          +
          +
          Parameters:
          +
          value - The keyName to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearKeyName

          +
          public DaprProtos.SubtleSignRequest.Builder clearKeyName()
          +
          + Name (or name/version) of the key.
          + 
          + + string key_name = 4 [json_name = "keyName"];
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          setKeyNameBytes

          +
          public DaprProtos.SubtleSignRequest.Builder setKeyNameBytes​(com.google.protobuf.ByteString value)
          +
          + Name (or name/version) of the key.
          + 
          + + string key_name = 4 [json_name = "keyName"];
          +
          +
          Parameters:
          +
          value - The bytes for keyName to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          setUnknownFields

          +
          public final DaprProtos.SubtleSignRequest.Builder setUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
          +
          +
          Specified by:
          +
          setUnknownFields in interface com.google.protobuf.Message.Builder
          +
          Overrides:
          +
          setUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SubtleSignRequest.Builder>
          +
          +
        • +
        + + + +
          +
        • +

          mergeUnknownFields

          +
          public final DaprProtos.SubtleSignRequest.Builder mergeUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
          +
          +
          Specified by:
          +
          mergeUnknownFields in interface com.google.protobuf.Message.Builder
          +
          Overrides:
          +
          mergeUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SubtleSignRequest.Builder>
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.SubtleSignRequest.html b/docs/io/dapr/v1/DaprProtos.SubtleSignRequest.html new file mode 100644 index 000000000..5a99ed372 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.SubtleSignRequest.html @@ -0,0 +1,1248 @@ + + + + + +DaprProtos.SubtleSignRequest (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.SubtleSignRequest

    +
    +
    + +
    +
      +
    • +
      +
      All Implemented Interfaces:
      +
      com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, DaprProtos.SubtleSignRequestOrBuilder, Serializable
      +
      +
      +
      Enclosing class:
      +
      DaprProtos
      +
      +
      +
      public static final class DaprProtos.SubtleSignRequest
      +extends com.google.protobuf.GeneratedMessageV3
      +implements DaprProtos.SubtleSignRequestOrBuilder
      +
      + SubtleSignRequest is the request for SubtleSignAlpha1.
      + 
      + + Protobuf type dapr.proto.runtime.v1.SubtleSignRequest
      +
      +
      See Also:
      +
      Serialized Form
      +
      +
    • +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Field Detail

        + + + +
          +
        • +

          COMPONENT_NAME_FIELD_NUMBER

          +
          public static final int COMPONENT_NAME_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        + + + +
          +
        • +

          DIGEST_FIELD_NUMBER

          +
          public static final int DIGEST_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        + + + +
          +
        • +

          ALGORITHM_FIELD_NUMBER

          +
          public static final int ALGORITHM_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        + + + +
          +
        • +

          KEY_NAME_FIELD_NUMBER

          +
          public static final int KEY_NAME_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        +
      • +
      +
      + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          +
          newInstance in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getUnknownFields

          +
          public final com.google.protobuf.UnknownFieldSet getUnknownFields()
          +
          +
          Specified by:
          +
          getUnknownFields in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getUnknownFields in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getComponentNameBytes

          +
          public com.google.protobuf.ByteString getComponentNameBytes()
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Specified by:
          +
          getComponentNameBytes in interface DaprProtos.SubtleSignRequestOrBuilder
          +
          Returns:
          +
          The bytes for componentName.
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          getAlgorithmBytes

          +
          public com.google.protobuf.ByteString getAlgorithmBytes()
          +
          + Algorithm to use, as in the JWA standard.
          + 
          + + string algorithm = 3;
          +
          +
          Specified by:
          +
          getAlgorithmBytes in interface DaprProtos.SubtleSignRequestOrBuilder
          +
          Returns:
          +
          The bytes for algorithm.
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getKeyNameBytes

          +
          public com.google.protobuf.ByteString getKeyNameBytes()
          +
          + Name (or name/version) of the key.
          + 
          + + string key_name = 4 [json_name = "keyName"];
          +
          +
          Specified by:
          +
          getKeyNameBytes in interface DaprProtos.SubtleSignRequestOrBuilder
          +
          Returns:
          +
          The bytes for keyName.
          +
          +
        • +
        + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          writeTo

          +
          public void writeTo​(com.google.protobuf.CodedOutputStream output)
          +             throws IOException
          +
          +
          Specified by:
          +
          writeTo in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          writeTo in class com.google.protobuf.GeneratedMessageV3
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + +
          +
        • +

          getSerializedSize

          +
          public int getSerializedSize()
          +
          +
          Specified by:
          +
          getSerializedSize in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getSerializedSize in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          equals

          +
          public boolean equals​(Object obj)
          +
          +
          Specified by:
          +
          equals in interface com.google.protobuf.Message
          +
          Overrides:
          +
          equals in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          hashCode

          +
          public int hashCode()
          +
          +
          Specified by:
          +
          hashCode in interface com.google.protobuf.Message
          +
          Overrides:
          +
          hashCode in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleSignRequest parseFrom​(ByteBuffer data)
          +                                              throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleSignRequest parseFrom​(ByteBuffer data,
          +                                                     com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                              throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleSignRequest parseFrom​(com.google.protobuf.ByteString data)
          +                                              throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleSignRequest parseFrom​(com.google.protobuf.ByteString data,
          +                                                     com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                              throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleSignRequest parseFrom​(byte[] data)
          +                                              throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleSignRequest parseFrom​(byte[] data,
          +                                                     com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                              throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          newBuilderForType

          +
          public DaprProtos.SubtleSignRequest.Builder newBuilderForType()
          +
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          toBuilder

          +
          public DaprProtos.SubtleSignRequest.Builder toBuilder()
          +
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.Message
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + +
          +
        • +

          newBuilderForType

          +
          protected DaprProtos.SubtleSignRequest.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
          +
          +
          Specified by:
          +
          newBuilderForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          getParserForType

          +
          public com.google.protobuf.Parser<DaprProtos.SubtleSignRequest> getParserForType()
          +
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getParserForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public DaprProtos.SubtleSignRequest getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.SubtleSignRequestOrBuilder.html b/docs/io/dapr/v1/DaprProtos.SubtleSignRequestOrBuilder.html new file mode 100644 index 000000000..63e1c32e7 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.SubtleSignRequestOrBuilder.html @@ -0,0 +1,447 @@ + + + + + +DaprProtos.SubtleSignRequestOrBuilder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Interface DaprProtos.SubtleSignRequestOrBuilder

    +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        StringgetAlgorithm() +
        + Algorithm to use, as in the JWA standard.
        +
        com.google.protobuf.ByteStringgetAlgorithmBytes() +
        + Algorithm to use, as in the JWA standard.
        +
        StringgetComponentName() +
        + Name of the component
        +
        com.google.protobuf.ByteStringgetComponentNameBytes() +
        + Name of the component
        +
        com.google.protobuf.ByteStringgetDigest() +
        + Digest to sign.
        +
        StringgetKeyName() +
        + Name (or name/version) of the key.
        +
        com.google.protobuf.ByteStringgetKeyNameBytes() +
        + Name (or name/version) of the key.
        +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getComponentName

          +
          String getComponentName()
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Returns:
          +
          The componentName.
          +
          +
        • +
        + + + +
          +
        • +

          getComponentNameBytes

          +
          com.google.protobuf.ByteString getComponentNameBytes()
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Returns:
          +
          The bytes for componentName.
          +
          +
        • +
        + + + +
          +
        • +

          getDigest

          +
          com.google.protobuf.ByteString getDigest()
          +
          + Digest to sign.
          + 
          + + bytes digest = 2;
          +
          +
          Returns:
          +
          The digest.
          +
          +
        • +
        + + + +
          +
        • +

          getAlgorithm

          +
          String getAlgorithm()
          +
          + Algorithm to use, as in the JWA standard.
          + 
          + + string algorithm = 3;
          +
          +
          Returns:
          +
          The algorithm.
          +
          +
        • +
        + + + +
          +
        • +

          getAlgorithmBytes

          +
          com.google.protobuf.ByteString getAlgorithmBytes()
          +
          + Algorithm to use, as in the JWA standard.
          + 
          + + string algorithm = 3;
          +
          +
          Returns:
          +
          The bytes for algorithm.
          +
          +
        • +
        + + + +
          +
        • +

          getKeyName

          +
          String getKeyName()
          +
          + Name (or name/version) of the key.
          + 
          + + string key_name = 4 [json_name = "keyName"];
          +
          +
          Returns:
          +
          The keyName.
          +
          +
        • +
        + + + +
          +
        • +

          getKeyNameBytes

          +
          com.google.protobuf.ByteString getKeyNameBytes()
          +
          + Name (or name/version) of the key.
          + 
          + + string key_name = 4 [json_name = "keyName"];
          +
          +
          Returns:
          +
          The bytes for keyName.
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.SubtleSignResponse.Builder.html b/docs/io/dapr/v1/DaprProtos.SubtleSignResponse.Builder.html new file mode 100644 index 000000000..93e7ac734 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.SubtleSignResponse.Builder.html @@ -0,0 +1,787 @@ + + + + + +DaprProtos.SubtleSignResponse.Builder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.SubtleSignResponse.Builder

    +
    +
    + +
    + +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SubtleSignResponse.Builder>
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getDescriptorForType

          +
          public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
          +
          +
          Specified by:
          +
          getDescriptorForType in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SubtleSignResponse.Builder>
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public DaprProtos.SubtleSignResponse getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        + + + +
          +
        • +

          build

          +
          public DaprProtos.SubtleSignResponse build()
          +
          +
          Specified by:
          +
          build in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          build in interface com.google.protobuf.MessageLite.Builder
          +
          +
        • +
        + + + +
          +
        • +

          buildPartial

          +
          public DaprProtos.SubtleSignResponse buildPartial()
          +
          +
          Specified by:
          +
          buildPartial in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          buildPartial in interface com.google.protobuf.MessageLite.Builder
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SubtleSignResponse.Builder>
          +
          +
        • +
        + + + +
          +
        • +

          mergeFrom

          +
          public DaprProtos.SubtleSignResponse.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
          +                                                       com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                throws IOException
          +
          +
          Specified by:
          +
          mergeFrom in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          mergeFrom in interface com.google.protobuf.MessageLite.Builder
          +
          Overrides:
          +
          mergeFrom in class com.google.protobuf.AbstractMessage.Builder<DaprProtos.SubtleSignResponse.Builder>
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + +
          +
        • +

          getSignature

          +
          public com.google.protobuf.ByteString getSignature()
          +
          + The signature that was computed
          + 
          + + bytes signature = 1;
          +
          +
          Specified by:
          +
          getSignature in interface DaprProtos.SubtleSignResponseOrBuilder
          +
          Returns:
          +
          The signature.
          +
          +
        • +
        + + + +
          +
        • +

          setSignature

          +
          public DaprProtos.SubtleSignResponse.Builder setSignature​(com.google.protobuf.ByteString value)
          +
          + The signature that was computed
          + 
          + + bytes signature = 1;
          +
          +
          Parameters:
          +
          value - The signature to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearSignature

          +
          public DaprProtos.SubtleSignResponse.Builder clearSignature()
          +
          + The signature that was computed
          + 
          + + bytes signature = 1;
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + + + + + +
          +
        • +

          mergeUnknownFields

          +
          public final DaprProtos.SubtleSignResponse.Builder mergeUnknownFields​(com.google.protobuf.UnknownFieldSet unknownFields)
          +
          +
          Specified by:
          +
          mergeUnknownFields in interface com.google.protobuf.Message.Builder
          +
          Overrides:
          +
          mergeUnknownFields in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SubtleSignResponse.Builder>
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.TerminateWorkflowResponse.html b/docs/io/dapr/v1/DaprProtos.SubtleSignResponse.html similarity index 72% rename from docs/io/dapr/v1/DaprProtos.TerminateWorkflowResponse.html rename to docs/io/dapr/v1/DaprProtos.SubtleSignResponse.html index 3e8d31bfb..79297f64f 100644 --- a/docs/io/dapr/v1/DaprProtos.TerminateWorkflowResponse.html +++ b/docs/io/dapr/v1/DaprProtos.SubtleSignResponse.html @@ -2,10 +2,10 @@ - -DaprProtos.TerminateWorkflowResponse (dapr-sdk-parent 1.8.0 API) + +DaprProtos.SubtleSignResponse (dapr-sdk-parent 1.9.0 API) - + @@ -15,20 +15,20 @@ - + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Interface DaprProtos.SubtleSignResponseOrBuilder

    +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        com.google.protobuf.ByteStringgetSignature() +
        + The signature that was computed
        +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getSignature

          +
          com.google.protobuf.ByteString getSignature()
          +
          + The signature that was computed
          + 
          + + bytes signature = 1;
          +
          +
          Returns:
          +
          The signature.
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.SubtleUnwrapKeyRequest.Builder.html b/docs/io/dapr/v1/DaprProtos.SubtleUnwrapKeyRequest.Builder.html new file mode 100644 index 000000000..46eec5979 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.SubtleUnwrapKeyRequest.Builder.html @@ -0,0 +1,1453 @@ + + + + + +DaprProtos.SubtleUnwrapKeyRequest.Builder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.SubtleUnwrapKeyRequest.Builder

    +
    +
    + +
    + +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SubtleUnwrapKeyRequest.Builder>
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getDescriptorForType

          +
          public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
          +
          +
          Specified by:
          +
          getDescriptorForType in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SubtleUnwrapKeyRequest.Builder>
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public DaprProtos.SubtleUnwrapKeyRequest getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        + + + +
          +
        • +

          build

          +
          public DaprProtos.SubtleUnwrapKeyRequest build()
          +
          +
          Specified by:
          +
          build in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          build in interface com.google.protobuf.MessageLite.Builder
          +
          +
        • +
        + + + +
          +
        • +

          buildPartial

          +
          public DaprProtos.SubtleUnwrapKeyRequest buildPartial()
          +
          +
          Specified by:
          +
          buildPartial in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          buildPartial in interface com.google.protobuf.MessageLite.Builder
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SubtleUnwrapKeyRequest.Builder>
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          getComponentNameBytes

          +
          public com.google.protobuf.ByteString getComponentNameBytes()
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Specified by:
          +
          getComponentNameBytes in interface DaprProtos.SubtleUnwrapKeyRequestOrBuilder
          +
          Returns:
          +
          The bytes for componentName.
          +
          +
        • +
        + + + +
          +
        • +

          setComponentName

          +
          public DaprProtos.SubtleUnwrapKeyRequest.Builder setComponentName​(String value)
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Parameters:
          +
          value - The componentName to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearComponentName

          +
          public DaprProtos.SubtleUnwrapKeyRequest.Builder clearComponentName()
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          setComponentNameBytes

          +
          public DaprProtos.SubtleUnwrapKeyRequest.Builder setComponentNameBytes​(com.google.protobuf.ByteString value)
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Parameters:
          +
          value - The bytes for componentName to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + + + + + +
          +
        • +

          setWrappedKey

          +
          public DaprProtos.SubtleUnwrapKeyRequest.Builder setWrappedKey​(com.google.protobuf.ByteString value)
          +
          + Wrapped key.
          + 
          + + bytes wrapped_key = 2 [json_name = "wrappedKey"];
          +
          +
          Parameters:
          +
          value - The wrappedKey to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearWrappedKey

          +
          public DaprProtos.SubtleUnwrapKeyRequest.Builder clearWrappedKey()
          +
          + Wrapped key.
          + 
          + + bytes wrapped_key = 2 [json_name = "wrappedKey"];
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          setAlgorithm

          +
          public DaprProtos.SubtleUnwrapKeyRequest.Builder setAlgorithm​(String value)
          +
          + Algorithm to use, as in the JWA standard.
          + 
          + + string algorithm = 3;
          +
          +
          Parameters:
          +
          value - The algorithm to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearAlgorithm

          +
          public DaprProtos.SubtleUnwrapKeyRequest.Builder clearAlgorithm()
          +
          + Algorithm to use, as in the JWA standard.
          + 
          + + string algorithm = 3;
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          setAlgorithmBytes

          +
          public DaprProtos.SubtleUnwrapKeyRequest.Builder setAlgorithmBytes​(com.google.protobuf.ByteString value)
          +
          + Algorithm to use, as in the JWA standard.
          + 
          + + string algorithm = 3;
          +
          +
          Parameters:
          +
          value - The bytes for algorithm to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getKeyNameBytes

          +
          public com.google.protobuf.ByteString getKeyNameBytes()
          +
          + Name (or name/version) of the key.
          + 
          + + string key_name = 4 [json_name = "keyName"];
          +
          +
          Specified by:
          +
          getKeyNameBytes in interface DaprProtos.SubtleUnwrapKeyRequestOrBuilder
          +
          Returns:
          +
          The bytes for keyName.
          +
          +
        • +
        + + + +
          +
        • +

          setKeyName

          +
          public DaprProtos.SubtleUnwrapKeyRequest.Builder setKeyName​(String value)
          +
          + Name (or name/version) of the key.
          + 
          + + string key_name = 4 [json_name = "keyName"];
          +
          +
          Parameters:
          +
          value - The keyName to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearKeyName

          +
          public DaprProtos.SubtleUnwrapKeyRequest.Builder clearKeyName()
          +
          + Name (or name/version) of the key.
          + 
          + + string key_name = 4 [json_name = "keyName"];
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          setKeyNameBytes

          +
          public DaprProtos.SubtleUnwrapKeyRequest.Builder setKeyNameBytes​(com.google.protobuf.ByteString value)
          +
          + Name (or name/version) of the key.
          + 
          + + string key_name = 4 [json_name = "keyName"];
          +
          +
          Parameters:
          +
          value - The bytes for keyName to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          getNonce

          +
          public com.google.protobuf.ByteString getNonce()
          +
          + Nonce / initialization vector.
          + Ignored with asymmetric ciphers.
          + 
          + + bytes nonce = 5;
          +
          +
          Specified by:
          +
          getNonce in interface DaprProtos.SubtleUnwrapKeyRequestOrBuilder
          +
          Returns:
          +
          The nonce.
          +
          +
        • +
        + + + +
          +
        • +

          setNonce

          +
          public DaprProtos.SubtleUnwrapKeyRequest.Builder setNonce​(com.google.protobuf.ByteString value)
          +
          + Nonce / initialization vector.
          + Ignored with asymmetric ciphers.
          + 
          + + bytes nonce = 5;
          +
          +
          Parameters:
          +
          value - The nonce to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearNonce

          +
          public DaprProtos.SubtleUnwrapKeyRequest.Builder clearNonce()
          +
          + Nonce / initialization vector.
          + Ignored with asymmetric ciphers.
          + 
          + + bytes nonce = 5;
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          getTag

          +
          public com.google.protobuf.ByteString getTag()
          +
          + Authentication tag.
          + This is nil when not using an authenticated cipher.
          + 
          + + bytes tag = 6;
          +
          +
          Specified by:
          +
          getTag in interface DaprProtos.SubtleUnwrapKeyRequestOrBuilder
          +
          Returns:
          +
          The tag.
          +
          +
        • +
        + + + +
          +
        • +

          setTag

          +
          public DaprProtos.SubtleUnwrapKeyRequest.Builder setTag​(com.google.protobuf.ByteString value)
          +
          + Authentication tag.
          + This is nil when not using an authenticated cipher.
          + 
          + + bytes tag = 6;
          +
          +
          Parameters:
          +
          value - The tag to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearTag

          +
          public DaprProtos.SubtleUnwrapKeyRequest.Builder clearTag()
          +
          + Authentication tag.
          + This is nil when not using an authenticated cipher.
          + 
          + + bytes tag = 6;
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          getAssociatedData

          +
          public com.google.protobuf.ByteString getAssociatedData()
          +
          + Associated Data when using AEAD ciphers (optional).
          + 
          + + bytes associated_data = 7 [json_name = "associatedData"];
          +
          +
          Specified by:
          +
          getAssociatedData in interface DaprProtos.SubtleUnwrapKeyRequestOrBuilder
          +
          Returns:
          +
          The associatedData.
          +
          +
        • +
        + + + +
          +
        • +

          setAssociatedData

          +
          public DaprProtos.SubtleUnwrapKeyRequest.Builder setAssociatedData​(com.google.protobuf.ByteString value)
          +
          + Associated Data when using AEAD ciphers (optional).
          + 
          + + bytes associated_data = 7 [json_name = "associatedData"];
          +
          +
          Parameters:
          +
          value - The associatedData to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearAssociatedData

          +
          public DaprProtos.SubtleUnwrapKeyRequest.Builder clearAssociatedData()
          +
          + Associated Data when using AEAD ciphers (optional).
          + 
          + + bytes associated_data = 7 [json_name = "associatedData"];
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + + + + + + +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.SubtleUnwrapKeyRequest.html b/docs/io/dapr/v1/DaprProtos.SubtleUnwrapKeyRequest.html new file mode 100644 index 000000000..bee54cd8c --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.SubtleUnwrapKeyRequest.html @@ -0,0 +1,1388 @@ + + + + + +DaprProtos.SubtleUnwrapKeyRequest (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.SubtleUnwrapKeyRequest

    +
    +
    + +
    + +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Field Detail

        + + + +
          +
        • +

          COMPONENT_NAME_FIELD_NUMBER

          +
          public static final int COMPONENT_NAME_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        + + + +
          +
        • +

          WRAPPED_KEY_FIELD_NUMBER

          +
          public static final int WRAPPED_KEY_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        + + + +
          +
        • +

          ALGORITHM_FIELD_NUMBER

          +
          public static final int ALGORITHM_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        + + + +
          +
        • +

          KEY_NAME_FIELD_NUMBER

          +
          public static final int KEY_NAME_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        + + + +
          +
        • +

          NONCE_FIELD_NUMBER

          +
          public static final int NONCE_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        + + + +
          +
        • +

          TAG_FIELD_NUMBER

          +
          public static final int TAG_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        + + + +
          +
        • +

          ASSOCIATED_DATA_FIELD_NUMBER

          +
          public static final int ASSOCIATED_DATA_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        +
      • +
      +
      + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          +
          newInstance in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getUnknownFields

          +
          public final com.google.protobuf.UnknownFieldSet getUnknownFields()
          +
          +
          Specified by:
          +
          getUnknownFields in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getUnknownFields in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getComponentNameBytes

          +
          public com.google.protobuf.ByteString getComponentNameBytes()
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Specified by:
          +
          getComponentNameBytes in interface DaprProtos.SubtleUnwrapKeyRequestOrBuilder
          +
          Returns:
          +
          The bytes for componentName.
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + +
          +
        • +

          getKeyNameBytes

          +
          public com.google.protobuf.ByteString getKeyNameBytes()
          +
          + Name (or name/version) of the key.
          + 
          + + string key_name = 4 [json_name = "keyName"];
          +
          +
          Specified by:
          +
          getKeyNameBytes in interface DaprProtos.SubtleUnwrapKeyRequestOrBuilder
          +
          Returns:
          +
          The bytes for keyName.
          +
          +
        • +
        + + + +
          +
        • +

          getNonce

          +
          public com.google.protobuf.ByteString getNonce()
          +
          + Nonce / initialization vector.
          + Ignored with asymmetric ciphers.
          + 
          + + bytes nonce = 5;
          +
          +
          Specified by:
          +
          getNonce in interface DaprProtos.SubtleUnwrapKeyRequestOrBuilder
          +
          Returns:
          +
          The nonce.
          +
          +
        • +
        + + + +
          +
        • +

          getTag

          +
          public com.google.protobuf.ByteString getTag()
          +
          + Authentication tag.
          + This is nil when not using an authenticated cipher.
          + 
          + + bytes tag = 6;
          +
          +
          Specified by:
          +
          getTag in interface DaprProtos.SubtleUnwrapKeyRequestOrBuilder
          +
          Returns:
          +
          The tag.
          +
          +
        • +
        + + + +
          +
        • +

          getAssociatedData

          +
          public com.google.protobuf.ByteString getAssociatedData()
          +
          + Associated Data when using AEAD ciphers (optional).
          + 
          + + bytes associated_data = 7 [json_name = "associatedData"];
          +
          +
          Specified by:
          +
          getAssociatedData in interface DaprProtos.SubtleUnwrapKeyRequestOrBuilder
          +
          Returns:
          +
          The associatedData.
          +
          +
        • +
        + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          writeTo

          +
          public void writeTo​(com.google.protobuf.CodedOutputStream output)
          +             throws IOException
          +
          +
          Specified by:
          +
          writeTo in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          writeTo in class com.google.protobuf.GeneratedMessageV3
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + +
          +
        • +

          getSerializedSize

          +
          public int getSerializedSize()
          +
          +
          Specified by:
          +
          getSerializedSize in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getSerializedSize in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          equals

          +
          public boolean equals​(Object obj)
          +
          +
          Specified by:
          +
          equals in interface com.google.protobuf.Message
          +
          Overrides:
          +
          equals in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          hashCode

          +
          public int hashCode()
          +
          +
          Specified by:
          +
          hashCode in interface com.google.protobuf.Message
          +
          Overrides:
          +
          hashCode in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleUnwrapKeyRequest parseFrom​(ByteBuffer data)
          +                                                   throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleUnwrapKeyRequest parseFrom​(ByteBuffer data,
          +                                                          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                   throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleUnwrapKeyRequest parseFrom​(com.google.protobuf.ByteString data)
          +                                                   throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleUnwrapKeyRequest parseFrom​(com.google.protobuf.ByteString data,
          +                                                          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                   throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleUnwrapKeyRequest parseFrom​(byte[] data)
          +                                                   throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleUnwrapKeyRequest parseFrom​(byte[] data,
          +                                                          com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                   throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          newBuilderForType

          +
          public DaprProtos.SubtleUnwrapKeyRequest.Builder newBuilderForType()
          +
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          toBuilder

          +
          public DaprProtos.SubtleUnwrapKeyRequest.Builder toBuilder()
          +
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.Message
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + +
          +
        • +

          newBuilderForType

          +
          protected DaprProtos.SubtleUnwrapKeyRequest.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
          +
          +
          Specified by:
          +
          newBuilderForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          getParserForType

          +
          public com.google.protobuf.Parser<DaprProtos.SubtleUnwrapKeyRequest> getParserForType()
          +
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getParserForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public DaprProtos.SubtleUnwrapKeyRequest getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.SubtleUnwrapKeyRequestOrBuilder.html b/docs/io/dapr/v1/DaprProtos.SubtleUnwrapKeyRequestOrBuilder.html new file mode 100644 index 000000000..b4ed280ab --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.SubtleUnwrapKeyRequestOrBuilder.html @@ -0,0 +1,527 @@ + + + + + +DaprProtos.SubtleUnwrapKeyRequestOrBuilder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Interface DaprProtos.SubtleUnwrapKeyRequestOrBuilder

    +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        StringgetAlgorithm() +
        + Algorithm to use, as in the JWA standard.
        +
        com.google.protobuf.ByteStringgetAlgorithmBytes() +
        + Algorithm to use, as in the JWA standard.
        +
        com.google.protobuf.ByteStringgetAssociatedData() +
        + Associated Data when using AEAD ciphers (optional).
        +
        StringgetComponentName() +
        + Name of the component
        +
        com.google.protobuf.ByteStringgetComponentNameBytes() +
        + Name of the component
        +
        StringgetKeyName() +
        + Name (or name/version) of the key.
        +
        com.google.protobuf.ByteStringgetKeyNameBytes() +
        + Name (or name/version) of the key.
        +
        com.google.protobuf.ByteStringgetNonce() +
        + Nonce / initialization vector.
        +
        com.google.protobuf.ByteStringgetTag() +
        + Authentication tag.
        +
        com.google.protobuf.ByteStringgetWrappedKey() +
        + Wrapped key.
        +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getComponentName

          +
          String getComponentName()
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Returns:
          +
          The componentName.
          +
          +
        • +
        + + + +
          +
        • +

          getComponentNameBytes

          +
          com.google.protobuf.ByteString getComponentNameBytes()
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Returns:
          +
          The bytes for componentName.
          +
          +
        • +
        + + + +
          +
        • +

          getWrappedKey

          +
          com.google.protobuf.ByteString getWrappedKey()
          +
          + Wrapped key.
          + 
          + + bytes wrapped_key = 2 [json_name = "wrappedKey"];
          +
          +
          Returns:
          +
          The wrappedKey.
          +
          +
        • +
        + + + +
          +
        • +

          getAlgorithm

          +
          String getAlgorithm()
          +
          + Algorithm to use, as in the JWA standard.
          + 
          + + string algorithm = 3;
          +
          +
          Returns:
          +
          The algorithm.
          +
          +
        • +
        + + + +
          +
        • +

          getAlgorithmBytes

          +
          com.google.protobuf.ByteString getAlgorithmBytes()
          +
          + Algorithm to use, as in the JWA standard.
          + 
          + + string algorithm = 3;
          +
          +
          Returns:
          +
          The bytes for algorithm.
          +
          +
        • +
        + + + +
          +
        • +

          getKeyName

          +
          String getKeyName()
          +
          + Name (or name/version) of the key.
          + 
          + + string key_name = 4 [json_name = "keyName"];
          +
          +
          Returns:
          +
          The keyName.
          +
          +
        • +
        + + + +
          +
        • +

          getKeyNameBytes

          +
          com.google.protobuf.ByteString getKeyNameBytes()
          +
          + Name (or name/version) of the key.
          + 
          + + string key_name = 4 [json_name = "keyName"];
          +
          +
          Returns:
          +
          The bytes for keyName.
          +
          +
        • +
        + + + +
          +
        • +

          getNonce

          +
          com.google.protobuf.ByteString getNonce()
          +
          + Nonce / initialization vector.
          + Ignored with asymmetric ciphers.
          + 
          + + bytes nonce = 5;
          +
          +
          Returns:
          +
          The nonce.
          +
          +
        • +
        + + + +
          +
        • +

          getTag

          +
          com.google.protobuf.ByteString getTag()
          +
          + Authentication tag.
          + This is nil when not using an authenticated cipher.
          + 
          + + bytes tag = 6;
          +
          +
          Returns:
          +
          The tag.
          +
          +
        • +
        + + + +
          +
        • +

          getAssociatedData

          +
          com.google.protobuf.ByteString getAssociatedData()
          +
          + Associated Data when using AEAD ciphers (optional).
          + 
          + + bytes associated_data = 7 [json_name = "associatedData"];
          +
          +
          Returns:
          +
          The associatedData.
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.SubtleUnwrapKeyResponse.Builder.html b/docs/io/dapr/v1/DaprProtos.SubtleUnwrapKeyResponse.Builder.html new file mode 100644 index 000000000..f55fbe275 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.SubtleUnwrapKeyResponse.Builder.html @@ -0,0 +1,787 @@ + + + + + +DaprProtos.SubtleUnwrapKeyResponse.Builder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.SubtleUnwrapKeyResponse.Builder

    +
    +
    + +
    + +
    +
    + +
    +
    + +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.SubtleUnwrapKeyResponse.html b/docs/io/dapr/v1/DaprProtos.SubtleUnwrapKeyResponse.html new file mode 100644 index 000000000..558967052 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.SubtleUnwrapKeyResponse.html @@ -0,0 +1,1026 @@ + + + + + +DaprProtos.SubtleUnwrapKeyResponse (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.SubtleUnwrapKeyResponse

    +
    +
    + +
    + +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Field Detail

        + + + +
          +
        • +

          PLAINTEXT_KEY_FIELD_NUMBER

          +
          public static final int PLAINTEXT_KEY_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        +
      • +
      +
      + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          +
          newInstance in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getUnknownFields

          +
          public final com.google.protobuf.UnknownFieldSet getUnknownFields()
          +
          +
          Specified by:
          +
          getUnknownFields in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getUnknownFields in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          writeTo

          +
          public void writeTo​(com.google.protobuf.CodedOutputStream output)
          +             throws IOException
          +
          +
          Specified by:
          +
          writeTo in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          writeTo in class com.google.protobuf.GeneratedMessageV3
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + +
          +
        • +

          getSerializedSize

          +
          public int getSerializedSize()
          +
          +
          Specified by:
          +
          getSerializedSize in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getSerializedSize in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          equals

          +
          public boolean equals​(Object obj)
          +
          +
          Specified by:
          +
          equals in interface com.google.protobuf.Message
          +
          Overrides:
          +
          equals in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          hashCode

          +
          public int hashCode()
          +
          +
          Specified by:
          +
          hashCode in interface com.google.protobuf.Message
          +
          Overrides:
          +
          hashCode in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleUnwrapKeyResponse parseFrom​(ByteBuffer data)
          +                                                    throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleUnwrapKeyResponse parseFrom​(ByteBuffer data,
          +                                                           com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                    throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleUnwrapKeyResponse parseFrom​(com.google.protobuf.ByteString data)
          +                                                    throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleUnwrapKeyResponse parseFrom​(com.google.protobuf.ByteString data,
          +                                                           com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                    throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleUnwrapKeyResponse parseFrom​(byte[] data)
          +                                                    throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleUnwrapKeyResponse parseFrom​(byte[] data,
          +                                                           com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                    throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          newBuilderForType

          +
          public DaprProtos.SubtleUnwrapKeyResponse.Builder newBuilderForType()
          +
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          toBuilder

          +
          public DaprProtos.SubtleUnwrapKeyResponse.Builder toBuilder()
          +
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.Message
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + +
          +
        • +

          newBuilderForType

          +
          protected DaprProtos.SubtleUnwrapKeyResponse.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
          +
          +
          Specified by:
          +
          newBuilderForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          getParserForType

          +
          public com.google.protobuf.Parser<DaprProtos.SubtleUnwrapKeyResponse> getParserForType()
          +
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getParserForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public DaprProtos.SubtleUnwrapKeyResponse getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.SubtleUnwrapKeyResponseOrBuilder.html b/docs/io/dapr/v1/DaprProtos.SubtleUnwrapKeyResponseOrBuilder.html new file mode 100644 index 000000000..2046cffb6 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.SubtleUnwrapKeyResponseOrBuilder.html @@ -0,0 +1,291 @@ + + + + + +DaprProtos.SubtleUnwrapKeyResponseOrBuilder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Interface DaprProtos.SubtleUnwrapKeyResponseOrBuilder

    +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        com.google.protobuf.ByteStringgetPlaintextKey() +
        + Key in plaintext
        +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getPlaintextKey

          +
          com.google.protobuf.ByteString getPlaintextKey()
          +
          + Key in plaintext
          + 
          + + bytes plaintext_key = 1 [json_name = "plaintextKey"];
          +
          +
          Returns:
          +
          The plaintextKey.
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.SubtleVerifyRequest.Builder.html b/docs/io/dapr/v1/DaprProtos.SubtleVerifyRequest.Builder.html new file mode 100644 index 000000000..93c6422f0 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.SubtleVerifyRequest.Builder.html @@ -0,0 +1,1283 @@ + + + + + +DaprProtos.SubtleVerifyRequest.Builder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.SubtleVerifyRequest.Builder

    +
    +
    + +
    + +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SubtleVerifyRequest.Builder>
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getDescriptorForType

          +
          public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
          +
          +
          Specified by:
          +
          getDescriptorForType in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SubtleVerifyRequest.Builder>
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public DaprProtos.SubtleVerifyRequest getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        + + + +
          +
        • +

          build

          +
          public DaprProtos.SubtleVerifyRequest build()
          +
          +
          Specified by:
          +
          build in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          build in interface com.google.protobuf.MessageLite.Builder
          +
          +
        • +
        + + + +
          +
        • +

          buildPartial

          +
          public DaprProtos.SubtleVerifyRequest buildPartial()
          +
          +
          Specified by:
          +
          buildPartial in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          buildPartial in interface com.google.protobuf.MessageLite.Builder
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SubtleVerifyRequest.Builder>
          +
          +
        • +
        + + + +
          +
        • +

          mergeFrom

          +
          public DaprProtos.SubtleVerifyRequest.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
          +                                                        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                 throws IOException
          +
          +
          Specified by:
          +
          mergeFrom in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          mergeFrom in interface com.google.protobuf.MessageLite.Builder
          +
          Overrides:
          +
          mergeFrom in class com.google.protobuf.AbstractMessage.Builder<DaprProtos.SubtleVerifyRequest.Builder>
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getComponentNameBytes

          +
          public com.google.protobuf.ByteString getComponentNameBytes()
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Specified by:
          +
          getComponentNameBytes in interface DaprProtos.SubtleVerifyRequestOrBuilder
          +
          Returns:
          +
          The bytes for componentName.
          +
          +
        • +
        + + + +
          +
        • +

          setComponentName

          +
          public DaprProtos.SubtleVerifyRequest.Builder setComponentName​(String value)
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Parameters:
          +
          value - The componentName to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearComponentName

          +
          public DaprProtos.SubtleVerifyRequest.Builder clearComponentName()
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          setComponentNameBytes

          +
          public DaprProtos.SubtleVerifyRequest.Builder setComponentNameBytes​(com.google.protobuf.ByteString value)
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Parameters:
          +
          value - The bytes for componentName to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + + + + + +
          +
        • +

          setDigest

          +
          public DaprProtos.SubtleVerifyRequest.Builder setDigest​(com.google.protobuf.ByteString value)
          +
          + Digest of the message.
          + 
          + + bytes digest = 2;
          +
          +
          Parameters:
          +
          value - The digest to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          getAlgorithmBytes

          +
          public com.google.protobuf.ByteString getAlgorithmBytes()
          +
          + Algorithm to use, as in the JWA standard.
          + 
          + + string algorithm = 3;
          +
          +
          Specified by:
          +
          getAlgorithmBytes in interface DaprProtos.SubtleVerifyRequestOrBuilder
          +
          Returns:
          +
          The bytes for algorithm.
          +
          +
        • +
        + + + +
          +
        • +

          setAlgorithm

          +
          public DaprProtos.SubtleVerifyRequest.Builder setAlgorithm​(String value)
          +
          + Algorithm to use, as in the JWA standard.
          + 
          + + string algorithm = 3;
          +
          +
          Parameters:
          +
          value - The algorithm to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearAlgorithm

          +
          public DaprProtos.SubtleVerifyRequest.Builder clearAlgorithm()
          +
          + Algorithm to use, as in the JWA standard.
          + 
          + + string algorithm = 3;
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          setAlgorithmBytes

          +
          public DaprProtos.SubtleVerifyRequest.Builder setAlgorithmBytes​(com.google.protobuf.ByteString value)
          +
          + Algorithm to use, as in the JWA standard.
          + 
          + + string algorithm = 3;
          +
          +
          Parameters:
          +
          value - The bytes for algorithm to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getKeyNameBytes

          +
          public com.google.protobuf.ByteString getKeyNameBytes()
          +
          + Name (or name/version) of the key.
          + 
          + + string key_name = 4 [json_name = "keyName"];
          +
          +
          Specified by:
          +
          getKeyNameBytes in interface DaprProtos.SubtleVerifyRequestOrBuilder
          +
          Returns:
          +
          The bytes for keyName.
          +
          +
        • +
        + + + +
          +
        • +

          setKeyName

          +
          public DaprProtos.SubtleVerifyRequest.Builder setKeyName​(String value)
          +
          + Name (or name/version) of the key.
          + 
          + + string key_name = 4 [json_name = "keyName"];
          +
          +
          Parameters:
          +
          value - The keyName to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearKeyName

          +
          public DaprProtos.SubtleVerifyRequest.Builder clearKeyName()
          +
          + Name (or name/version) of the key.
          + 
          + + string key_name = 4 [json_name = "keyName"];
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          setKeyNameBytes

          +
          public DaprProtos.SubtleVerifyRequest.Builder setKeyNameBytes​(com.google.protobuf.ByteString value)
          +
          + Name (or name/version) of the key.
          + 
          + + string key_name = 4 [json_name = "keyName"];
          +
          +
          Parameters:
          +
          value - The bytes for keyName to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + + + + + +
          +
        • +

          setSignature

          +
          public DaprProtos.SubtleVerifyRequest.Builder setSignature​(com.google.protobuf.ByteString value)
          +
          + Signature to verify.
          + 
          + + bytes signature = 5;
          +
          +
          Parameters:
          +
          value - The signature to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + + + + + + + + + + +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.SubtleVerifyRequest.html b/docs/io/dapr/v1/DaprProtos.SubtleVerifyRequest.html new file mode 100644 index 000000000..447df9d75 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.SubtleVerifyRequest.html @@ -0,0 +1,1294 @@ + + + + + +DaprProtos.SubtleVerifyRequest (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.SubtleVerifyRequest

    +
    +
    + +
    +
      +
    • +
      +
      All Implemented Interfaces:
      +
      com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, DaprProtos.SubtleVerifyRequestOrBuilder, Serializable
      +
      +
      +
      Enclosing class:
      +
      DaprProtos
      +
      +
      +
      public static final class DaprProtos.SubtleVerifyRequest
      +extends com.google.protobuf.GeneratedMessageV3
      +implements DaprProtos.SubtleVerifyRequestOrBuilder
      +
      + SubtleVerifyRequest is the request for SubtleVerifyAlpha1.
      + 
      + + Protobuf type dapr.proto.runtime.v1.SubtleVerifyRequest
      +
      +
      See Also:
      +
      Serialized Form
      +
      +
    • +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Field Detail

        + + + +
          +
        • +

          COMPONENT_NAME_FIELD_NUMBER

          +
          public static final int COMPONENT_NAME_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        + + + +
          +
        • +

          DIGEST_FIELD_NUMBER

          +
          public static final int DIGEST_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        + + + +
          +
        • +

          ALGORITHM_FIELD_NUMBER

          +
          public static final int ALGORITHM_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        + + + +
          +
        • +

          KEY_NAME_FIELD_NUMBER

          +
          public static final int KEY_NAME_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        + + + +
          +
        • +

          SIGNATURE_FIELD_NUMBER

          +
          public static final int SIGNATURE_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        +
      • +
      +
      + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          +
          newInstance in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getUnknownFields

          +
          public final com.google.protobuf.UnknownFieldSet getUnknownFields()
          +
          +
          Specified by:
          +
          getUnknownFields in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getUnknownFields in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getComponentNameBytes

          +
          public com.google.protobuf.ByteString getComponentNameBytes()
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Specified by:
          +
          getComponentNameBytes in interface DaprProtos.SubtleVerifyRequestOrBuilder
          +
          Returns:
          +
          The bytes for componentName.
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          getAlgorithmBytes

          +
          public com.google.protobuf.ByteString getAlgorithmBytes()
          +
          + Algorithm to use, as in the JWA standard.
          + 
          + + string algorithm = 3;
          +
          +
          Specified by:
          +
          getAlgorithmBytes in interface DaprProtos.SubtleVerifyRequestOrBuilder
          +
          Returns:
          +
          The bytes for algorithm.
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getKeyNameBytes

          +
          public com.google.protobuf.ByteString getKeyNameBytes()
          +
          + Name (or name/version) of the key.
          + 
          + + string key_name = 4 [json_name = "keyName"];
          +
          +
          Specified by:
          +
          getKeyNameBytes in interface DaprProtos.SubtleVerifyRequestOrBuilder
          +
          Returns:
          +
          The bytes for keyName.
          +
          +
        • +
        + + + + + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          writeTo

          +
          public void writeTo​(com.google.protobuf.CodedOutputStream output)
          +             throws IOException
          +
          +
          Specified by:
          +
          writeTo in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          writeTo in class com.google.protobuf.GeneratedMessageV3
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + +
          +
        • +

          getSerializedSize

          +
          public int getSerializedSize()
          +
          +
          Specified by:
          +
          getSerializedSize in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getSerializedSize in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          equals

          +
          public boolean equals​(Object obj)
          +
          +
          Specified by:
          +
          equals in interface com.google.protobuf.Message
          +
          Overrides:
          +
          equals in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          hashCode

          +
          public int hashCode()
          +
          +
          Specified by:
          +
          hashCode in interface com.google.protobuf.Message
          +
          Overrides:
          +
          hashCode in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleVerifyRequest parseFrom​(ByteBuffer data)
          +                                                throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleVerifyRequest parseFrom​(ByteBuffer data,
          +                                                       com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleVerifyRequest parseFrom​(com.google.protobuf.ByteString data)
          +                                                throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleVerifyRequest parseFrom​(com.google.protobuf.ByteString data,
          +                                                       com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleVerifyRequest parseFrom​(byte[] data)
          +                                                throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleVerifyRequest parseFrom​(byte[] data,
          +                                                       com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          newBuilderForType

          +
          public DaprProtos.SubtleVerifyRequest.Builder newBuilderForType()
          +
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          toBuilder

          +
          public DaprProtos.SubtleVerifyRequest.Builder toBuilder()
          +
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.Message
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + +
          +
        • +

          newBuilderForType

          +
          protected DaprProtos.SubtleVerifyRequest.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
          +
          +
          Specified by:
          +
          newBuilderForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          getParserForType

          +
          public com.google.protobuf.Parser<DaprProtos.SubtleVerifyRequest> getParserForType()
          +
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getParserForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public DaprProtos.SubtleVerifyRequest getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.SubtleVerifyRequestOrBuilder.html b/docs/io/dapr/v1/DaprProtos.SubtleVerifyRequestOrBuilder.html new file mode 100644 index 000000000..39d3e1872 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.SubtleVerifyRequestOrBuilder.html @@ -0,0 +1,473 @@ + + + + + +DaprProtos.SubtleVerifyRequestOrBuilder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Interface DaprProtos.SubtleVerifyRequestOrBuilder

    +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        StringgetAlgorithm() +
        + Algorithm to use, as in the JWA standard.
        +
        com.google.protobuf.ByteStringgetAlgorithmBytes() +
        + Algorithm to use, as in the JWA standard.
        +
        StringgetComponentName() +
        + Name of the component
        +
        com.google.protobuf.ByteStringgetComponentNameBytes() +
        + Name of the component
        +
        com.google.protobuf.ByteStringgetDigest() +
        + Digest of the message.
        +
        StringgetKeyName() +
        + Name (or name/version) of the key.
        +
        com.google.protobuf.ByteStringgetKeyNameBytes() +
        + Name (or name/version) of the key.
        +
        com.google.protobuf.ByteStringgetSignature() +
        + Signature to verify.
        +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getComponentName

          +
          String getComponentName()
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Returns:
          +
          The componentName.
          +
          +
        • +
        + + + +
          +
        • +

          getComponentNameBytes

          +
          com.google.protobuf.ByteString getComponentNameBytes()
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Returns:
          +
          The bytes for componentName.
          +
          +
        • +
        + + + +
          +
        • +

          getDigest

          +
          com.google.protobuf.ByteString getDigest()
          +
          + Digest of the message.
          + 
          + + bytes digest = 2;
          +
          +
          Returns:
          +
          The digest.
          +
          +
        • +
        + + + +
          +
        • +

          getAlgorithm

          +
          String getAlgorithm()
          +
          + Algorithm to use, as in the JWA standard.
          + 
          + + string algorithm = 3;
          +
          +
          Returns:
          +
          The algorithm.
          +
          +
        • +
        + + + +
          +
        • +

          getAlgorithmBytes

          +
          com.google.protobuf.ByteString getAlgorithmBytes()
          +
          + Algorithm to use, as in the JWA standard.
          + 
          + + string algorithm = 3;
          +
          +
          Returns:
          +
          The bytes for algorithm.
          +
          +
        • +
        + + + +
          +
        • +

          getKeyName

          +
          String getKeyName()
          +
          + Name (or name/version) of the key.
          + 
          + + string key_name = 4 [json_name = "keyName"];
          +
          +
          Returns:
          +
          The keyName.
          +
          +
        • +
        + + + +
          +
        • +

          getKeyNameBytes

          +
          com.google.protobuf.ByteString getKeyNameBytes()
          +
          + Name (or name/version) of the key.
          + 
          + + string key_name = 4 [json_name = "keyName"];
          +
          +
          Returns:
          +
          The bytes for keyName.
          +
          +
        • +
        + + + +
          +
        • +

          getSignature

          +
          com.google.protobuf.ByteString getSignature()
          +
          + Signature to verify.
          + 
          + + bytes signature = 5;
          +
          +
          Returns:
          +
          The signature.
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.TerminateWorkflowResponse.Builder.html b/docs/io/dapr/v1/DaprProtos.SubtleVerifyResponse.Builder.html similarity index 66% rename from docs/io/dapr/v1/DaprProtos.TerminateWorkflowResponse.Builder.html rename to docs/io/dapr/v1/DaprProtos.SubtleVerifyResponse.Builder.html index 10a4057a2..ca5a8242f 100644 --- a/docs/io/dapr/v1/DaprProtos.TerminateWorkflowResponse.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.SubtleVerifyResponse.Builder.html @@ -2,10 +2,10 @@ - -DaprProtos.TerminateWorkflowResponse.Builder (dapr-sdk-parent 1.8.0 API) + +DaprProtos.SubtleVerifyResponse.Builder (dapr-sdk-parent 1.9.0 API) - + @@ -15,20 +15,20 @@ - + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.SubtleVerifyResponse

    +
    +
    + +
    +
      +
    • +
      +
      All Implemented Interfaces:
      +
      com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, DaprProtos.SubtleVerifyResponseOrBuilder, Serializable
      +
      +
      +
      Enclosing class:
      +
      DaprProtos
      +
      +
      +
      public static final class DaprProtos.SubtleVerifyResponse
      +extends com.google.protobuf.GeneratedMessageV3
      +implements DaprProtos.SubtleVerifyResponseOrBuilder
      +
      + SubtleVerifyResponse is the response for SubtleVerifyAlpha1.
      + 
      + + Protobuf type dapr.proto.runtime.v1.SubtleVerifyResponse
      +
      +
      See Also:
      +
      Serialized Form
      +
      +
    • +
    +
    +
    + +
    +
    +
      +
    • + +
      + +
      + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          +
          newInstance in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getUnknownFields

          +
          public final com.google.protobuf.UnknownFieldSet getUnknownFields()
          +
          +
          Specified by:
          +
          getUnknownFields in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getUnknownFields in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          writeTo

          +
          public void writeTo​(com.google.protobuf.CodedOutputStream output)
          +             throws IOException
          +
          +
          Specified by:
          +
          writeTo in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          writeTo in class com.google.protobuf.GeneratedMessageV3
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + +
          +
        • +

          getSerializedSize

          +
          public int getSerializedSize()
          +
          +
          Specified by:
          +
          getSerializedSize in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getSerializedSize in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          equals

          +
          public boolean equals​(Object obj)
          +
          +
          Specified by:
          +
          equals in interface com.google.protobuf.Message
          +
          Overrides:
          +
          equals in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          hashCode

          +
          public int hashCode()
          +
          +
          Specified by:
          +
          hashCode in interface com.google.protobuf.Message
          +
          Overrides:
          +
          hashCode in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleVerifyResponse parseFrom​(ByteBuffer data)
          +                                                 throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleVerifyResponse parseFrom​(ByteBuffer data,
          +                                                        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                 throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleVerifyResponse parseFrom​(com.google.protobuf.ByteString data)
          +                                                 throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleVerifyResponse parseFrom​(com.google.protobuf.ByteString data,
          +                                                        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                 throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleVerifyResponse parseFrom​(byte[] data)
          +                                                 throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleVerifyResponse parseFrom​(byte[] data,
          +                                                        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                 throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          newBuilderForType

          +
          public DaprProtos.SubtleVerifyResponse.Builder newBuilderForType()
          +
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          toBuilder

          +
          public DaprProtos.SubtleVerifyResponse.Builder toBuilder()
          +
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.Message
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + +
          +
        • +

          newBuilderForType

          +
          protected DaprProtos.SubtleVerifyResponse.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
          +
          +
          Specified by:
          +
          newBuilderForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          getParserForType

          +
          public com.google.protobuf.Parser<DaprProtos.SubtleVerifyResponse> getParserForType()
          +
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getParserForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public DaprProtos.SubtleVerifyResponse getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.TerminateWorkflowResponseOrBuilder.html b/docs/io/dapr/v1/DaprProtos.SubtleVerifyResponseOrBuilder.html similarity index 70% rename from docs/io/dapr/v1/DaprProtos.TerminateWorkflowResponseOrBuilder.html rename to docs/io/dapr/v1/DaprProtos.SubtleVerifyResponseOrBuilder.html index bb01aaeab..5915793cb 100644 --- a/docs/io/dapr/v1/DaprProtos.TerminateWorkflowResponseOrBuilder.html +++ b/docs/io/dapr/v1/DaprProtos.SubtleVerifyResponseOrBuilder.html @@ -2,10 +2,10 @@ - -DaprProtos.TerminateWorkflowResponseOrBuilder (dapr-sdk-parent 1.8.0 API) + +DaprProtos.SubtleVerifyResponseOrBuilder (dapr-sdk-parent 1.9.0 API) - + @@ -15,19 +15,25 @@ - + @@ -49,7 +55,7 @@
  • Overview
  • Package
  • -
  • Use
  • +
  • Use
  • Tree
  • Deprecated
  • Index
  • @@ -93,7 +99,7 @@
  • Detail: 
  • Field | 
  • Constr | 
  • -
  • Method
  • +
  • Method
  • @@ -112,7 +118,7 @@
    -

    Interface DaprProtos.TerminateWorkflowResponseOrBuilder

    +

    Interface DaprProtos.SubtleVerifyResponseOrBuilder

    @@ -124,14 +130,14 @@

    DaprProtos.TerminateWorkflowResponse, DaprProtos.TerminateWorkflowResponse.Builder +
    DaprProtos.SubtleVerifyResponse, DaprProtos.SubtleVerifyResponse.Builder
    Enclosing class:
    DaprProtos

    -
    public static interface DaprProtos.TerminateWorkflowResponseOrBuilder
    +
    public static interface DaprProtos.SubtleVerifyResponseOrBuilder
     extends com.google.protobuf.MessageOrBuilder
    @@ -146,6 +152,22 @@

    +All Methods Instance Methods Abstract Methods  + +Modifier and Type +Method +Description + + +boolean +getValid() + +
    + True if the signature is valid.
    + + +

    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getValid

          +
          boolean getValid()
          +
          + True if the signature is valid.
          + 
          + + bool valid = 1;
          +
          +
          Returns:
          +
          The valid.
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    @@ -183,7 +239,7 @@

    Methods inherited from interface com.google.protobuf.MessageOrBuilderOverview
  • Package
  • -
  • Use
  • +
  • Use
  • Tree
  • Deprecated
  • Index
  • @@ -221,7 +277,7 @@

    Methods inherited from interface com.google.protobuf.MessageOrBuilderDetail: 
  • Field | 
  • Constr | 
  • -
  • Method
  • +
  • Method
  • diff --git a/docs/io/dapr/v1/DaprProtos.SubtleWrapKeyRequest.Builder.html b/docs/io/dapr/v1/DaprProtos.SubtleWrapKeyRequest.Builder.html new file mode 100644 index 000000000..36f87b778 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.SubtleWrapKeyRequest.Builder.html @@ -0,0 +1,1368 @@ + + + + + +DaprProtos.SubtleWrapKeyRequest.Builder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.SubtleWrapKeyRequest.Builder

    +
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    + +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SubtleWrapKeyRequest.Builder>
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getDescriptorForType

          +
          public com.google.protobuf.Descriptors.Descriptor getDescriptorForType()
          +
          +
          Specified by:
          +
          getDescriptorForType in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          getDescriptorForType in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getDescriptorForType in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SubtleWrapKeyRequest.Builder>
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public DaprProtos.SubtleWrapKeyRequest getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        + + + +
          +
        • +

          build

          +
          public DaprProtos.SubtleWrapKeyRequest build()
          +
          +
          Specified by:
          +
          build in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          build in interface com.google.protobuf.MessageLite.Builder
          +
          +
        • +
        + + + +
          +
        • +

          buildPartial

          +
          public DaprProtos.SubtleWrapKeyRequest buildPartial()
          +
          +
          Specified by:
          +
          buildPartial in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          buildPartial in interface com.google.protobuf.MessageLite.Builder
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3.Builder<DaprProtos.SubtleWrapKeyRequest.Builder>
          +
          +
        • +
        + + + +
          +
        • +

          mergeFrom

          +
          public DaprProtos.SubtleWrapKeyRequest.Builder mergeFrom​(com.google.protobuf.CodedInputStream input,
          +                                                         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                  throws IOException
          +
          +
          Specified by:
          +
          mergeFrom in interface com.google.protobuf.Message.Builder
          +
          Specified by:
          +
          mergeFrom in interface com.google.protobuf.MessageLite.Builder
          +
          Overrides:
          +
          mergeFrom in class com.google.protobuf.AbstractMessage.Builder<DaprProtos.SubtleWrapKeyRequest.Builder>
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getComponentNameBytes

          +
          public com.google.protobuf.ByteString getComponentNameBytes()
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Specified by:
          +
          getComponentNameBytes in interface DaprProtos.SubtleWrapKeyRequestOrBuilder
          +
          Returns:
          +
          The bytes for componentName.
          +
          +
        • +
        + + + +
          +
        • +

          setComponentName

          +
          public DaprProtos.SubtleWrapKeyRequest.Builder setComponentName​(String value)
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Parameters:
          +
          value - The componentName to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearComponentName

          +
          public DaprProtos.SubtleWrapKeyRequest.Builder clearComponentName()
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          setComponentNameBytes

          +
          public DaprProtos.SubtleWrapKeyRequest.Builder setComponentNameBytes​(com.google.protobuf.ByteString value)
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Parameters:
          +
          value - The bytes for componentName to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          getPlaintextKey

          +
          public com.google.protobuf.ByteString getPlaintextKey()
          +
          + Key to wrap
          + 
          + + bytes plaintext_key = 2 [json_name = "plaintextKey"];
          +
          +
          Specified by:
          +
          getPlaintextKey in interface DaprProtos.SubtleWrapKeyRequestOrBuilder
          +
          Returns:
          +
          The plaintextKey.
          +
          +
        • +
        + + + +
          +
        • +

          setPlaintextKey

          +
          public DaprProtos.SubtleWrapKeyRequest.Builder setPlaintextKey​(com.google.protobuf.ByteString value)
          +
          + Key to wrap
          + 
          + + bytes plaintext_key = 2 [json_name = "plaintextKey"];
          +
          +
          Parameters:
          +
          value - The plaintextKey to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearPlaintextKey

          +
          public DaprProtos.SubtleWrapKeyRequest.Builder clearPlaintextKey()
          +
          + Key to wrap
          + 
          + + bytes plaintext_key = 2 [json_name = "plaintextKey"];
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getAlgorithmBytes

          +
          public com.google.protobuf.ByteString getAlgorithmBytes()
          +
          + Algorithm to use, as in the JWA standard.
          + 
          + + string algorithm = 3;
          +
          +
          Specified by:
          +
          getAlgorithmBytes in interface DaprProtos.SubtleWrapKeyRequestOrBuilder
          +
          Returns:
          +
          The bytes for algorithm.
          +
          +
        • +
        + + + +
          +
        • +

          setAlgorithm

          +
          public DaprProtos.SubtleWrapKeyRequest.Builder setAlgorithm​(String value)
          +
          + Algorithm to use, as in the JWA standard.
          + 
          + + string algorithm = 3;
          +
          +
          Parameters:
          +
          value - The algorithm to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearAlgorithm

          +
          public DaprProtos.SubtleWrapKeyRequest.Builder clearAlgorithm()
          +
          + Algorithm to use, as in the JWA standard.
          + 
          + + string algorithm = 3;
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          setAlgorithmBytes

          +
          public DaprProtos.SubtleWrapKeyRequest.Builder setAlgorithmBytes​(com.google.protobuf.ByteString value)
          +
          + Algorithm to use, as in the JWA standard.
          + 
          + + string algorithm = 3;
          +
          +
          Parameters:
          +
          value - The bytes for algorithm to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getKeyNameBytes

          +
          public com.google.protobuf.ByteString getKeyNameBytes()
          +
          + Name (or name/version) of the key.
          + 
          + + string key_name = 4 [json_name = "keyName"];
          +
          +
          Specified by:
          +
          getKeyNameBytes in interface DaprProtos.SubtleWrapKeyRequestOrBuilder
          +
          Returns:
          +
          The bytes for keyName.
          +
          +
        • +
        + + + +
          +
        • +

          setKeyName

          +
          public DaprProtos.SubtleWrapKeyRequest.Builder setKeyName​(String value)
          +
          + Name (or name/version) of the key.
          + 
          + + string key_name = 4 [json_name = "keyName"];
          +
          +
          Parameters:
          +
          value - The keyName to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearKeyName

          +
          public DaprProtos.SubtleWrapKeyRequest.Builder clearKeyName()
          +
          + Name (or name/version) of the key.
          + 
          + + string key_name = 4 [json_name = "keyName"];
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          setKeyNameBytes

          +
          public DaprProtos.SubtleWrapKeyRequest.Builder setKeyNameBytes​(com.google.protobuf.ByteString value)
          +
          + Name (or name/version) of the key.
          + 
          + + string key_name = 4 [json_name = "keyName"];
          +
          +
          Parameters:
          +
          value - The bytes for keyName to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          getNonce

          +
          public com.google.protobuf.ByteString getNonce()
          +
          + Nonce / initialization vector.
          + Ignored with asymmetric ciphers.
          + 
          + + bytes nonce = 5;
          +
          +
          Specified by:
          +
          getNonce in interface DaprProtos.SubtleWrapKeyRequestOrBuilder
          +
          Returns:
          +
          The nonce.
          +
          +
        • +
        + + + +
          +
        • +

          setNonce

          +
          public DaprProtos.SubtleWrapKeyRequest.Builder setNonce​(com.google.protobuf.ByteString value)
          +
          + Nonce / initialization vector.
          + Ignored with asymmetric ciphers.
          + 
          + + bytes nonce = 5;
          +
          +
          Parameters:
          +
          value - The nonce to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearNonce

          +
          public DaprProtos.SubtleWrapKeyRequest.Builder clearNonce()
          +
          + Nonce / initialization vector.
          + Ignored with asymmetric ciphers.
          + 
          + + bytes nonce = 5;
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          getAssociatedData

          +
          public com.google.protobuf.ByteString getAssociatedData()
          +
          + Associated Data when using AEAD ciphers (optional).
          + 
          + + bytes associated_data = 6 [json_name = "associatedData"];
          +
          +
          Specified by:
          +
          getAssociatedData in interface DaprProtos.SubtleWrapKeyRequestOrBuilder
          +
          Returns:
          +
          The associatedData.
          +
          +
        • +
        + + + +
          +
        • +

          setAssociatedData

          +
          public DaprProtos.SubtleWrapKeyRequest.Builder setAssociatedData​(com.google.protobuf.ByteString value)
          +
          + Associated Data when using AEAD ciphers (optional).
          + 
          + + bytes associated_data = 6 [json_name = "associatedData"];
          +
          +
          Parameters:
          +
          value - The associatedData to set.
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + +
          +
        • +

          clearAssociatedData

          +
          public DaprProtos.SubtleWrapKeyRequest.Builder clearAssociatedData()
          +
          + Associated Data when using AEAD ciphers (optional).
          + 
          + + bytes associated_data = 6 [json_name = "associatedData"];
          +
          +
          Returns:
          +
          This builder for chaining.
          +
          +
        • +
        + + + + + + + + +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.SubtleWrapKeyRequest.html b/docs/io/dapr/v1/DaprProtos.SubtleWrapKeyRequest.html new file mode 100644 index 000000000..1e09432d6 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.SubtleWrapKeyRequest.html @@ -0,0 +1,1341 @@ + + + + + +DaprProtos.SubtleWrapKeyRequest (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.SubtleWrapKeyRequest

    +
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.SubtleWrapKeyRequest
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
      +
    • +
      +
      All Implemented Interfaces:
      +
      com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, DaprProtos.SubtleWrapKeyRequestOrBuilder, Serializable
      +
      +
      +
      Enclosing class:
      +
      DaprProtos
      +
      +
      +
      public static final class DaprProtos.SubtleWrapKeyRequest
      +extends com.google.protobuf.GeneratedMessageV3
      +implements DaprProtos.SubtleWrapKeyRequestOrBuilder
      +
      + SubtleWrapKeyRequest is the request for SubtleWrapKeyAlpha1.
      + 
      + + Protobuf type dapr.proto.runtime.v1.SubtleWrapKeyRequest
      +
      +
      See Also:
      +
      Serialized Form
      +
      +
    • +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Field Detail

        + + + +
          +
        • +

          COMPONENT_NAME_FIELD_NUMBER

          +
          public static final int COMPONENT_NAME_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        + + + +
          +
        • +

          PLAINTEXT_KEY_FIELD_NUMBER

          +
          public static final int PLAINTEXT_KEY_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        + + + +
          +
        • +

          ALGORITHM_FIELD_NUMBER

          +
          public static final int ALGORITHM_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        + + + +
          +
        • +

          KEY_NAME_FIELD_NUMBER

          +
          public static final int KEY_NAME_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        + + + +
          +
        • +

          NONCE_FIELD_NUMBER

          +
          public static final int NONCE_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        + + + +
          +
        • +

          ASSOCIATED_DATA_FIELD_NUMBER

          +
          public static final int ASSOCIATED_DATA_FIELD_NUMBER
          +
          +
          See Also:
          +
          Constant Field Values
          +
          +
        • +
        +
      • +
      +
      + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          +
          newInstance in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getUnknownFields

          +
          public final com.google.protobuf.UnknownFieldSet getUnknownFields()
          +
          +
          Specified by:
          +
          getUnknownFields in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getUnknownFields in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getComponentNameBytes

          +
          public com.google.protobuf.ByteString getComponentNameBytes()
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Specified by:
          +
          getComponentNameBytes in interface DaprProtos.SubtleWrapKeyRequestOrBuilder
          +
          Returns:
          +
          The bytes for componentName.
          +
          +
        • +
        + + + +
          +
        • +

          getPlaintextKey

          +
          public com.google.protobuf.ByteString getPlaintextKey()
          +
          + Key to wrap
          + 
          + + bytes plaintext_key = 2 [json_name = "plaintextKey"];
          +
          +
          Specified by:
          +
          getPlaintextKey in interface DaprProtos.SubtleWrapKeyRequestOrBuilder
          +
          Returns:
          +
          The plaintextKey.
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getAlgorithmBytes

          +
          public com.google.protobuf.ByteString getAlgorithmBytes()
          +
          + Algorithm to use, as in the JWA standard.
          + 
          + + string algorithm = 3;
          +
          +
          Specified by:
          +
          getAlgorithmBytes in interface DaprProtos.SubtleWrapKeyRequestOrBuilder
          +
          Returns:
          +
          The bytes for algorithm.
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getKeyNameBytes

          +
          public com.google.protobuf.ByteString getKeyNameBytes()
          +
          + Name (or name/version) of the key.
          + 
          + + string key_name = 4 [json_name = "keyName"];
          +
          +
          Specified by:
          +
          getKeyNameBytes in interface DaprProtos.SubtleWrapKeyRequestOrBuilder
          +
          Returns:
          +
          The bytes for keyName.
          +
          +
        • +
        + + + +
          +
        • +

          getNonce

          +
          public com.google.protobuf.ByteString getNonce()
          +
          + Nonce / initialization vector.
          + Ignored with asymmetric ciphers.
          + 
          + + bytes nonce = 5;
          +
          +
          Specified by:
          +
          getNonce in interface DaprProtos.SubtleWrapKeyRequestOrBuilder
          +
          Returns:
          +
          The nonce.
          +
          +
        • +
        + + + +
          +
        • +

          getAssociatedData

          +
          public com.google.protobuf.ByteString getAssociatedData()
          +
          + Associated Data when using AEAD ciphers (optional).
          + 
          + + bytes associated_data = 6 [json_name = "associatedData"];
          +
          +
          Specified by:
          +
          getAssociatedData in interface DaprProtos.SubtleWrapKeyRequestOrBuilder
          +
          Returns:
          +
          The associatedData.
          +
          +
        • +
        + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          writeTo

          +
          public void writeTo​(com.google.protobuf.CodedOutputStream output)
          +             throws IOException
          +
          +
          Specified by:
          +
          writeTo in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          writeTo in class com.google.protobuf.GeneratedMessageV3
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + +
          +
        • +

          getSerializedSize

          +
          public int getSerializedSize()
          +
          +
          Specified by:
          +
          getSerializedSize in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getSerializedSize in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          equals

          +
          public boolean equals​(Object obj)
          +
          +
          Specified by:
          +
          equals in interface com.google.protobuf.Message
          +
          Overrides:
          +
          equals in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          hashCode

          +
          public int hashCode()
          +
          +
          Specified by:
          +
          hashCode in interface com.google.protobuf.Message
          +
          Overrides:
          +
          hashCode in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleWrapKeyRequest parseFrom​(ByteBuffer data)
          +                                                 throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleWrapKeyRequest parseFrom​(ByteBuffer data,
          +                                                        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                 throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleWrapKeyRequest parseFrom​(com.google.protobuf.ByteString data)
          +                                                 throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleWrapKeyRequest parseFrom​(com.google.protobuf.ByteString data,
          +                                                        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                 throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleWrapKeyRequest parseFrom​(byte[] data)
          +                                                 throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleWrapKeyRequest parseFrom​(byte[] data,
          +                                                        com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                 throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          newBuilderForType

          +
          public DaprProtos.SubtleWrapKeyRequest.Builder newBuilderForType()
          +
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          toBuilder

          +
          public DaprProtos.SubtleWrapKeyRequest.Builder toBuilder()
          +
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.Message
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + +
          +
        • +

          newBuilderForType

          +
          protected DaprProtos.SubtleWrapKeyRequest.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
          +
          +
          Specified by:
          +
          newBuilderForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          getParserForType

          +
          public com.google.protobuf.Parser<DaprProtos.SubtleWrapKeyRequest> getParserForType()
          +
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getParserForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public DaprProtos.SubtleWrapKeyRequest getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.SubtleWrapKeyRequestOrBuilder.html b/docs/io/dapr/v1/DaprProtos.SubtleWrapKeyRequestOrBuilder.html new file mode 100644 index 000000000..61c998494 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.SubtleWrapKeyRequestOrBuilder.html @@ -0,0 +1,500 @@ + + + + + +DaprProtos.SubtleWrapKeyRequestOrBuilder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Interface DaprProtos.SubtleWrapKeyRequestOrBuilder

    +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        StringgetAlgorithm() +
        + Algorithm to use, as in the JWA standard.
        +
        com.google.protobuf.ByteStringgetAlgorithmBytes() +
        + Algorithm to use, as in the JWA standard.
        +
        com.google.protobuf.ByteStringgetAssociatedData() +
        + Associated Data when using AEAD ciphers (optional).
        +
        StringgetComponentName() +
        + Name of the component
        +
        com.google.protobuf.ByteStringgetComponentNameBytes() +
        + Name of the component
        +
        StringgetKeyName() +
        + Name (or name/version) of the key.
        +
        com.google.protobuf.ByteStringgetKeyNameBytes() +
        + Name (or name/version) of the key.
        +
        com.google.protobuf.ByteStringgetNonce() +
        + Nonce / initialization vector.
        +
        com.google.protobuf.ByteStringgetPlaintextKey() +
        + Key to wrap
        +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getComponentName

          +
          String getComponentName()
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Returns:
          +
          The componentName.
          +
          +
        • +
        + + + +
          +
        • +

          getComponentNameBytes

          +
          com.google.protobuf.ByteString getComponentNameBytes()
          +
          + Name of the component
          + 
          + + string component_name = 1 [json_name = "componentName"];
          +
          +
          Returns:
          +
          The bytes for componentName.
          +
          +
        • +
        + + + +
          +
        • +

          getPlaintextKey

          +
          com.google.protobuf.ByteString getPlaintextKey()
          +
          + Key to wrap
          + 
          + + bytes plaintext_key = 2 [json_name = "plaintextKey"];
          +
          +
          Returns:
          +
          The plaintextKey.
          +
          +
        • +
        + + + +
          +
        • +

          getAlgorithm

          +
          String getAlgorithm()
          +
          + Algorithm to use, as in the JWA standard.
          + 
          + + string algorithm = 3;
          +
          +
          Returns:
          +
          The algorithm.
          +
          +
        • +
        + + + +
          +
        • +

          getAlgorithmBytes

          +
          com.google.protobuf.ByteString getAlgorithmBytes()
          +
          + Algorithm to use, as in the JWA standard.
          + 
          + + string algorithm = 3;
          +
          +
          Returns:
          +
          The bytes for algorithm.
          +
          +
        • +
        + + + +
          +
        • +

          getKeyName

          +
          String getKeyName()
          +
          + Name (or name/version) of the key.
          + 
          + + string key_name = 4 [json_name = "keyName"];
          +
          +
          Returns:
          +
          The keyName.
          +
          +
        • +
        + + + +
          +
        • +

          getKeyNameBytes

          +
          com.google.protobuf.ByteString getKeyNameBytes()
          +
          + Name (or name/version) of the key.
          + 
          + + string key_name = 4 [json_name = "keyName"];
          +
          +
          Returns:
          +
          The bytes for keyName.
          +
          +
        • +
        + + + +
          +
        • +

          getNonce

          +
          com.google.protobuf.ByteString getNonce()
          +
          + Nonce / initialization vector.
          + Ignored with asymmetric ciphers.
          + 
          + + bytes nonce = 5;
          +
          +
          Returns:
          +
          The nonce.
          +
          +
        • +
        + + + +
          +
        • +

          getAssociatedData

          +
          com.google.protobuf.ByteString getAssociatedData()
          +
          + Associated Data when using AEAD ciphers (optional).
          + 
          + + bytes associated_data = 6 [json_name = "associatedData"];
          +
          +
          Returns:
          +
          The associatedData.
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.SubtleWrapKeyResponse.Builder.html b/docs/io/dapr/v1/DaprProtos.SubtleWrapKeyResponse.Builder.html new file mode 100644 index 000000000..cf52e054d --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.SubtleWrapKeyResponse.Builder.html @@ -0,0 +1,872 @@ + + + + + +DaprProtos.SubtleWrapKeyResponse.Builder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.SubtleWrapKeyResponse.Builder

    +
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite.Builder
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage.Builder<BuilderType>
        • +
        • + +
        • +
        +
      • +
      +
    • +
    +
    + +
    +
    + +
    +
    + +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.SubtleWrapKeyResponse.html b/docs/io/dapr/v1/DaprProtos.SubtleWrapKeyResponse.html new file mode 100644 index 000000000..ede4718e5 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.SubtleWrapKeyResponse.html @@ -0,0 +1,1073 @@ + + + + + +DaprProtos.SubtleWrapKeyResponse (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Class DaprProtos.SubtleWrapKeyResponse

    +
    +
    +
      +
    • java.lang.Object
    • +
    • +
        +
      • com.google.protobuf.AbstractMessageLite
      • +
      • +
          +
        • com.google.protobuf.AbstractMessage
        • +
        • +
            +
          • com.google.protobuf.GeneratedMessageV3
          • +
          • +
              +
            • io.dapr.v1.DaprProtos.SubtleWrapKeyResponse
            • +
            +
          • +
          +
        • +
        +
      • +
      +
    • +
    +
    +
      +
    • +
      +
      All Implemented Interfaces:
      +
      com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, DaprProtos.SubtleWrapKeyResponseOrBuilder, Serializable
      +
      +
      +
      Enclosing class:
      +
      DaprProtos
      +
      +
      +
      public static final class DaprProtos.SubtleWrapKeyResponse
      +extends com.google.protobuf.GeneratedMessageV3
      +implements DaprProtos.SubtleWrapKeyResponseOrBuilder
      +
      + SubtleWrapKeyResponse is the response for SubtleWrapKeyAlpha1.
      + 
      + + Protobuf type dapr.proto.runtime.v1.SubtleWrapKeyResponse
      +
      +
      See Also:
      +
      Serialized Form
      +
      +
    • +
    +
    +
    + +
    +
    +
      +
    • + +
      + +
      + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          newInstance

          +
          protected Object newInstance​(com.google.protobuf.GeneratedMessageV3.UnusedPrivateParameter unused)
          +
          +
          Overrides:
          +
          newInstance in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getUnknownFields

          +
          public final com.google.protobuf.UnknownFieldSet getUnknownFields()
          +
          +
          Specified by:
          +
          getUnknownFields in interface com.google.protobuf.MessageOrBuilder
          +
          Overrides:
          +
          getUnknownFields in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDescriptor

          +
          public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
          +
        • +
        + + + +
          +
        • +

          internalGetFieldAccessorTable

          +
          protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
          +
          +
          Specified by:
          +
          internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + +
          +
        • +

          getTag

          +
          public com.google.protobuf.ByteString getTag()
          +
          + Authentication tag.
          + This is nil when not using an authenticated cipher.
          + 
          + + bytes tag = 2;
          +
          +
          Specified by:
          +
          getTag in interface DaprProtos.SubtleWrapKeyResponseOrBuilder
          +
          Returns:
          +
          The tag.
          +
          +
        • +
        + + + +
          +
        • +

          isInitialized

          +
          public final boolean isInitialized()
          +
          +
          Specified by:
          +
          isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Overrides:
          +
          isInitialized in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          writeTo

          +
          public void writeTo​(com.google.protobuf.CodedOutputStream output)
          +             throws IOException
          +
          +
          Specified by:
          +
          writeTo in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          writeTo in class com.google.protobuf.GeneratedMessageV3
          +
          Throws:
          +
          IOException
          +
          +
        • +
        + + + +
          +
        • +

          getSerializedSize

          +
          public int getSerializedSize()
          +
          +
          Specified by:
          +
          getSerializedSize in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getSerializedSize in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          equals

          +
          public boolean equals​(Object obj)
          +
          +
          Specified by:
          +
          equals in interface com.google.protobuf.Message
          +
          Overrides:
          +
          equals in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          hashCode

          +
          public int hashCode()
          +
          +
          Specified by:
          +
          hashCode in interface com.google.protobuf.Message
          +
          Overrides:
          +
          hashCode in class com.google.protobuf.AbstractMessage
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleWrapKeyResponse parseFrom​(ByteBuffer data)
          +                                                  throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleWrapKeyResponse parseFrom​(ByteBuffer data,
          +                                                         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                  throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleWrapKeyResponse parseFrom​(com.google.protobuf.ByteString data)
          +                                                  throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleWrapKeyResponse parseFrom​(com.google.protobuf.ByteString data,
          +                                                         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                  throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleWrapKeyResponse parseFrom​(byte[] data)
          +                                                  throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + +
          +
        • +

          parseFrom

          +
          public static DaprProtos.SubtleWrapKeyResponse parseFrom​(byte[] data,
          +                                                         com.google.protobuf.ExtensionRegistryLite extensionRegistry)
          +                                                  throws com.google.protobuf.InvalidProtocolBufferException
          +
          +
          Throws:
          +
          com.google.protobuf.InvalidProtocolBufferException
          +
          +
        • +
        + + + + + + + + + + + + + + + + + + + + + + + + + + + +
          +
        • +

          newBuilderForType

          +
          public DaprProtos.SubtleWrapKeyResponse.Builder newBuilderForType()
          +
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          newBuilderForType in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          toBuilder

          +
          public DaprProtos.SubtleWrapKeyResponse.Builder toBuilder()
          +
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.Message
          +
          Specified by:
          +
          toBuilder in interface com.google.protobuf.MessageLite
          +
          +
        • +
        + + + +
          +
        • +

          newBuilderForType

          +
          protected DaprProtos.SubtleWrapKeyResponse.Builder newBuilderForType​(com.google.protobuf.GeneratedMessageV3.BuilderParent parent)
          +
          +
          Specified by:
          +
          newBuilderForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + + + + + + + + + +
          +
        • +

          getParserForType

          +
          public com.google.protobuf.Parser<DaprProtos.SubtleWrapKeyResponse> getParserForType()
          +
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.Message
          +
          Specified by:
          +
          getParserForType in interface com.google.protobuf.MessageLite
          +
          Overrides:
          +
          getParserForType in class com.google.protobuf.GeneratedMessageV3
          +
          +
        • +
        + + + +
          +
        • +

          getDefaultInstanceForType

          +
          public DaprProtos.SubtleWrapKeyResponse getDefaultInstanceForType()
          +
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
          +
          Specified by:
          +
          getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.SubtleWrapKeyResponseOrBuilder.html b/docs/io/dapr/v1/DaprProtos.SubtleWrapKeyResponseOrBuilder.html new file mode 100644 index 000000000..a66b813d0 --- /dev/null +++ b/docs/io/dapr/v1/DaprProtos.SubtleWrapKeyResponseOrBuilder.html @@ -0,0 +1,318 @@ + + + + + +DaprProtos.SubtleWrapKeyResponseOrBuilder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    + +
    +
    +
    Package io.dapr.v1
    +

    Interface DaprProtos.SubtleWrapKeyResponseOrBuilder

    +
    +
    +
    + +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Summary

        + + + + + + + + + + + + + + + + + +
        All Methods Instance Methods Abstract Methods 
        Modifier and TypeMethodDescription
        com.google.protobuf.ByteStringgetTag() +
        + Authentication tag.
        +
        com.google.protobuf.ByteStringgetWrappedKey() +
        + Wrapped key.
        +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

          +isInitialized
        • +
        +
          +
        • + + +

          Methods inherited from interface com.google.protobuf.MessageOrBuilder

          +findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
      +
    • + +
      +
        +
      • + + +

        Method Detail

        + + + +
          +
        • +

          getWrappedKey

          +
          com.google.protobuf.ByteString getWrappedKey()
          +
          + Wrapped key.
          + 
          + + bytes wrapped_key = 1 [json_name = "wrappedKey"];
          +
          +
          Returns:
          +
          The wrappedKey.
          +
          +
        • +
        + + + +
          +
        • +

          getTag

          +
          com.google.protobuf.ByteString getTag()
          +
          + Authentication tag.
          + This is nil when not using an authenticated cipher.
          + 
          + + bytes tag = 2;
          +
          +
          Returns:
          +
          The tag.
          +
          +
        • +
        +
      • +
      +
      +
    • +
    +
    +
    +
    + + + + diff --git a/docs/io/dapr/v1/DaprProtos.TerminateWorkflowRequest.Builder.html b/docs/io/dapr/v1/DaprProtos.TerminateWorkflowRequest.Builder.html index c99169cce..c481afb0b 100644 --- a/docs/io/dapr/v1/DaprProtos.TerminateWorkflowRequest.Builder.html +++ b/docs/io/dapr/v1/DaprProtos.TerminateWorkflowRequest.Builder.html @@ -2,10 +2,10 @@ - -DaprProtos.TerminateWorkflowRequest.Builder (dapr-sdk-parent 1.8.0 API) + +DaprProtos.TerminateWorkflowRequest.Builder (dapr-sdk-parent 1.9.0 API) - + @@ -15,14 +15,14 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.DecryptRequest.Builder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.DecryptRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.DecryptRequest.html new file mode 100644 index 000000000..8dcf45f83 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.DecryptRequest.html @@ -0,0 +1,341 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.DecryptRequest (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.DecryptRequest

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.DecryptRequestOptions.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.DecryptRequestOptions.Builder.html new file mode 100644 index 000000000..461cbc689 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.DecryptRequestOptions.Builder.html @@ -0,0 +1,353 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.DecryptRequestOptions.Builder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.DecryptRequestOptions.Builder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.DecryptRequestOptions.html b/docs/io/dapr/v1/class-use/DaprProtos.DecryptRequestOptions.html new file mode 100644 index 000000000..d9007ef78 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.DecryptRequestOptions.html @@ -0,0 +1,360 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.DecryptRequestOptions (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.DecryptRequestOptions

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.DecryptRequestOptionsOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.DecryptRequestOptionsOrBuilder.html new file mode 100644 index 000000000..70cb3e140 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.DecryptRequestOptionsOrBuilder.html @@ -0,0 +1,239 @@ + + + + + +Uses of Interface io.dapr.v1.DaprProtos.DecryptRequestOptionsOrBuilder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.DecryptRequestOptionsOrBuilder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.DecryptRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.DecryptRequestOrBuilder.html new file mode 100644 index 000000000..f78c64a96 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.DecryptRequestOrBuilder.html @@ -0,0 +1,205 @@ + + + + + +Uses of Interface io.dapr.v1.DaprProtos.DecryptRequestOrBuilder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.DecryptRequestOrBuilder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.DecryptResponse.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.DecryptResponse.Builder.html new file mode 100644 index 000000000..975ccb043 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.DecryptResponse.Builder.html @@ -0,0 +1,311 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.DecryptResponse.Builder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.DecryptResponse.Builder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.DecryptResponse.html b/docs/io/dapr/v1/class-use/DaprProtos.DecryptResponse.html new file mode 100644 index 000000000..debd5a511 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.DecryptResponse.html @@ -0,0 +1,351 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.DecryptResponse (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.DecryptResponse

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.DecryptResponseOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.DecryptResponseOrBuilder.html new file mode 100644 index 000000000..cfea19e02 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.DecryptResponseOrBuilder.html @@ -0,0 +1,205 @@ + + + + + +Uses of Interface io.dapr.v1.DaprProtos.DecryptResponseOrBuilder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.DecryptResponseOrBuilder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.DeleteBulkStateRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.DeleteBulkStateRequest.Builder.html index bfe940d49..8b1db3a36 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.DeleteBulkStateRequest.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.DeleteBulkStateRequest.Builder.html @@ -2,10 +2,10 @@ - -Uses of Class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder (dapr-sdk-parent 1.8.0 API) + +Uses of Class io.dapr.v1.DaprProtos.DeleteBulkStateRequest.Builder (dapr-sdk-parent 1.9.0 API) - + @@ -15,14 +15,14 @@ - + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.EncryptRequest.Builder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.EncryptRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.EncryptRequest.html new file mode 100644 index 000000000..18b7153bf --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.EncryptRequest.html @@ -0,0 +1,341 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.EncryptRequest (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.EncryptRequest

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.EncryptRequestOptions.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.EncryptRequestOptions.Builder.html new file mode 100644 index 000000000..32b872d79 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.EncryptRequestOptions.Builder.html @@ -0,0 +1,441 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.EncryptRequestOptions.Builder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.EncryptRequestOptions.Builder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.EncryptRequestOptions.html b/docs/io/dapr/v1/class-use/DaprProtos.EncryptRequestOptions.html new file mode 100644 index 000000000..b39940818 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.EncryptRequestOptions.html @@ -0,0 +1,360 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.EncryptRequestOptions (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.EncryptRequestOptions

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.EncryptRequestOptionsOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.EncryptRequestOptionsOrBuilder.html new file mode 100644 index 000000000..80d176110 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.EncryptRequestOptionsOrBuilder.html @@ -0,0 +1,239 @@ + + + + + +Uses of Interface io.dapr.v1.DaprProtos.EncryptRequestOptionsOrBuilder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.EncryptRequestOptionsOrBuilder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.EncryptRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.EncryptRequestOrBuilder.html new file mode 100644 index 000000000..6d253cd7a --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.EncryptRequestOrBuilder.html @@ -0,0 +1,205 @@ + + + + + +Uses of Interface io.dapr.v1.DaprProtos.EncryptRequestOrBuilder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.EncryptRequestOrBuilder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.EncryptResponse.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.EncryptResponse.Builder.html new file mode 100644 index 000000000..98a5c66c7 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.EncryptResponse.Builder.html @@ -0,0 +1,311 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.EncryptResponse.Builder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.EncryptResponse.Builder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.EncryptResponse.html b/docs/io/dapr/v1/class-use/DaprProtos.EncryptResponse.html new file mode 100644 index 000000000..ccebf9f6c --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.EncryptResponse.html @@ -0,0 +1,351 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.EncryptResponse (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.EncryptResponse

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.EncryptResponseOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.EncryptResponseOrBuilder.html new file mode 100644 index 000000000..c3788b789 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.EncryptResponseOrBuilder.html @@ -0,0 +1,205 @@ + + + + + +Uses of Interface io.dapr.v1.DaprProtos.EncryptResponseOrBuilder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.EncryptResponseOrBuilder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.ExecuteActorStateTransactionRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.ExecuteActorStateTransactionRequest.Builder.html index eb6668127..148e1c541 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.ExecuteActorStateTransactionRequest.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.ExecuteActorStateTransactionRequest.Builder.html @@ -2,10 +2,10 @@ - -Uses of Class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder (dapr-sdk-parent 1.8.0 API) + +Uses of Class io.dapr.v1.DaprProtos.ExecuteActorStateTransactionRequest.Builder (dapr-sdk-parent 1.9.0 API) - + @@ -15,14 +15,14 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.PauseWorkflowRequest.Builder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.PauseWorkflowRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.PauseWorkflowRequest.html new file mode 100644 index 000000000..ed90fc809 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.PauseWorkflowRequest.html @@ -0,0 +1,359 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.PauseWorkflowRequest (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.PauseWorkflowRequest

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.PauseWorkflowRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.PauseWorkflowRequestOrBuilder.html new file mode 100644 index 000000000..58a9814ab --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.PauseWorkflowRequestOrBuilder.html @@ -0,0 +1,205 @@ + + + + + +Uses of Interface io.dapr.v1.DaprProtos.PauseWorkflowRequestOrBuilder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.PauseWorkflowRequestOrBuilder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.PublishEventRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.PublishEventRequest.Builder.html index c0939572a..6515f41e5 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.PublishEventRequest.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.PublishEventRequest.Builder.html @@ -2,10 +2,10 @@ - -Uses of Class io.dapr.v1.DaprProtos.PublishEventRequest.Builder (dapr-sdk-parent 1.8.0 API) + +Uses of Class io.dapr.v1.DaprProtos.PublishEventRequest.Builder (dapr-sdk-parent 1.9.0 API) - + @@ -15,14 +15,14 @@ - + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.PurgeWorkflowRequest.Builder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.PurgeWorkflowRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.PurgeWorkflowRequest.html new file mode 100644 index 000000000..2c948d9f1 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.PurgeWorkflowRequest.html @@ -0,0 +1,359 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.PurgeWorkflowRequest (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.PurgeWorkflowRequest

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.PurgeWorkflowRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.PurgeWorkflowRequestOrBuilder.html new file mode 100644 index 000000000..4ba606e70 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.PurgeWorkflowRequestOrBuilder.html @@ -0,0 +1,205 @@ + + + + + +Uses of Interface io.dapr.v1.DaprProtos.PurgeWorkflowRequestOrBuilder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.PurgeWorkflowRequestOrBuilder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.QueryStateItem.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.QueryStateItem.Builder.html index 857114fb0..2622fd3f2 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.QueryStateItem.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.QueryStateItem.Builder.html @@ -2,10 +2,10 @@ - -Uses of Class io.dapr.v1.DaprProtos.QueryStateItem.Builder (dapr-sdk-parent 1.8.0 API) + +Uses of Class io.dapr.v1.DaprProtos.QueryStateItem.Builder (dapr-sdk-parent 1.9.0 API) - + @@ -15,14 +15,14 @@ - + + + + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.RaiseEventWorkflowRequest.Builder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.TerminateWorkflowResponse.html b/docs/io/dapr/v1/class-use/DaprProtos.RaiseEventWorkflowRequest.html similarity index 54% rename from docs/io/dapr/v1/class-use/DaprProtos.TerminateWorkflowResponse.html rename to docs/io/dapr/v1/class-use/DaprProtos.RaiseEventWorkflowRequest.html index 6c7572e00..3f9b3830c 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.TerminateWorkflowResponse.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.RaiseEventWorkflowRequest.html @@ -2,10 +2,10 @@ - -Uses of Class io.dapr.v1.DaprProtos.TerminateWorkflowResponse (dapr-sdk-parent 1.8.0 API) + +Uses of Class io.dapr.v1.DaprProtos.RaiseEventWorkflowRequest (dapr-sdk-parent 1.9.0 API) - + @@ -15,14 +15,14 @@ - + + + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.ResumeWorkflowRequest.Builder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.ResumeWorkflowRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.ResumeWorkflowRequest.html new file mode 100644 index 000000000..6db9937a1 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.ResumeWorkflowRequest.html @@ -0,0 +1,359 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.ResumeWorkflowRequest (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.ResumeWorkflowRequest

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.ResumeWorkflowRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.ResumeWorkflowRequestOrBuilder.html new file mode 100644 index 000000000..9f9c39e58 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.ResumeWorkflowRequestOrBuilder.html @@ -0,0 +1,205 @@ + + + + + +Uses of Interface io.dapr.v1.DaprProtos.ResumeWorkflowRequestOrBuilder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.ResumeWorkflowRequestOrBuilder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SaveStateRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.SaveStateRequest.Builder.html index dd49a158b..ec6ed37c4 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.SaveStateRequest.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.SaveStateRequest.Builder.html @@ -2,10 +2,10 @@ - -Uses of Class io.dapr.v1.DaprProtos.SaveStateRequest.Builder (dapr-sdk-parent 1.8.0 API) + +Uses of Class io.dapr.v1.DaprProtos.SaveStateRequest.Builder (dapr-sdk-parent 1.9.0 API) - + @@ -15,14 +15,14 @@ - + + + + + + + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.StartWorkflowResponse.Builder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.StartWorkflowResponse.html b/docs/io/dapr/v1/class-use/DaprProtos.StartWorkflowResponse.html new file mode 100644 index 000000000..2a4a99150 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.StartWorkflowResponse.html @@ -0,0 +1,369 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.StartWorkflowResponse (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.StartWorkflowResponse

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.StartWorkflowResponseOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.StartWorkflowResponseOrBuilder.html new file mode 100644 index 000000000..9b6f57294 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.StartWorkflowResponseOrBuilder.html @@ -0,0 +1,205 @@ + + + + + +Uses of Interface io.dapr.v1.DaprProtos.StartWorkflowResponseOrBuilder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.StartWorkflowResponseOrBuilder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubscribeConfigurationRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubscribeConfigurationRequest.Builder.html index 28aa8b5e5..b4657b21d 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.SubscribeConfigurationRequest.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.SubscribeConfigurationRequest.Builder.html @@ -2,10 +2,10 @@ - -Uses of Class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder (dapr-sdk-parent 1.8.0 API) + +Uses of Class io.dapr.v1.DaprProtos.SubscribeConfigurationRequest.Builder (dapr-sdk-parent 1.9.0 API) - + @@ -15,14 +15,14 @@ - + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.SubtleDecryptRequest.Builder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleDecryptRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleDecryptRequest.html new file mode 100644 index 000000000..2fa90835f --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleDecryptRequest.html @@ -0,0 +1,359 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.SubtleDecryptRequest (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.SubtleDecryptRequest

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleDecryptRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleDecryptRequestOrBuilder.html new file mode 100644 index 000000000..67cb2d019 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleDecryptRequestOrBuilder.html @@ -0,0 +1,205 @@ + + + + + +Uses of Interface io.dapr.v1.DaprProtos.SubtleDecryptRequestOrBuilder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.SubtleDecryptRequestOrBuilder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleDecryptResponse.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleDecryptResponse.Builder.html new file mode 100644 index 000000000..c7d05fcb8 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleDecryptResponse.Builder.html @@ -0,0 +1,295 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.SubtleDecryptResponse.Builder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.SubtleDecryptResponse.Builder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleDecryptResponse.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleDecryptResponse.html new file mode 100644 index 000000000..11e20a9fb --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleDecryptResponse.html @@ -0,0 +1,369 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.SubtleDecryptResponse (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.SubtleDecryptResponse

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleDecryptResponseOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleDecryptResponseOrBuilder.html new file mode 100644 index 000000000..dc1f30264 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleDecryptResponseOrBuilder.html @@ -0,0 +1,205 @@ + + + + + +Uses of Interface io.dapr.v1.DaprProtos.SubtleDecryptResponseOrBuilder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.SubtleDecryptResponseOrBuilder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleEncryptRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleEncryptRequest.Builder.html new file mode 100644 index 000000000..f3b3e06bd --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleEncryptRequest.Builder.html @@ -0,0 +1,399 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.SubtleEncryptRequest.Builder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.SubtleEncryptRequest.Builder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleEncryptRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleEncryptRequest.html new file mode 100644 index 000000000..61a7c940c --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleEncryptRequest.html @@ -0,0 +1,359 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.SubtleEncryptRequest (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.SubtleEncryptRequest

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleEncryptRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleEncryptRequestOrBuilder.html new file mode 100644 index 000000000..f9c68615d --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleEncryptRequestOrBuilder.html @@ -0,0 +1,205 @@ + + + + + +Uses of Interface io.dapr.v1.DaprProtos.SubtleEncryptRequestOrBuilder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.SubtleEncryptRequestOrBuilder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleEncryptResponse.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleEncryptResponse.Builder.html new file mode 100644 index 000000000..c5df721ec --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleEncryptResponse.Builder.html @@ -0,0 +1,311 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.SubtleEncryptResponse.Builder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.SubtleEncryptResponse.Builder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleEncryptResponse.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleEncryptResponse.html new file mode 100644 index 000000000..09c9a5262 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleEncryptResponse.html @@ -0,0 +1,369 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.SubtleEncryptResponse (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.SubtleEncryptResponse

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleEncryptResponseOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleEncryptResponseOrBuilder.html new file mode 100644 index 000000000..5fc32f0aa --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleEncryptResponseOrBuilder.html @@ -0,0 +1,205 @@ + + + + + +Uses of Interface io.dapr.v1.DaprProtos.SubtleEncryptResponseOrBuilder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.SubtleEncryptResponseOrBuilder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleGetKeyRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleGetKeyRequest.Builder.html new file mode 100644 index 000000000..463e33192 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleGetKeyRequest.Builder.html @@ -0,0 +1,351 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.SubtleGetKeyRequest.Builder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.SubtleGetKeyRequest.Builder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleGetKeyRequest.KeyFormat.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleGetKeyRequest.KeyFormat.html new file mode 100644 index 000000000..6863402e3 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleGetKeyRequest.KeyFormat.html @@ -0,0 +1,280 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.SubtleGetKeyRequest.KeyFormat (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.SubtleGetKeyRequest.KeyFormat

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleGetKeyRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleGetKeyRequest.html new file mode 100644 index 000000000..3067e9eeb --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleGetKeyRequest.html @@ -0,0 +1,359 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.SubtleGetKeyRequest (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.SubtleGetKeyRequest

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleGetKeyRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleGetKeyRequestOrBuilder.html new file mode 100644 index 000000000..7196d6939 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleGetKeyRequestOrBuilder.html @@ -0,0 +1,205 @@ + + + + + +Uses of Interface io.dapr.v1.DaprProtos.SubtleGetKeyRequestOrBuilder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.SubtleGetKeyRequestOrBuilder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleGetKeyResponse.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleGetKeyResponse.Builder.html new file mode 100644 index 000000000..b10b408a5 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleGetKeyResponse.Builder.html @@ -0,0 +1,327 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.SubtleGetKeyResponse.Builder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.SubtleGetKeyResponse.Builder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleGetKeyResponse.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleGetKeyResponse.html new file mode 100644 index 000000000..ead517753 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleGetKeyResponse.html @@ -0,0 +1,369 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.SubtleGetKeyResponse (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.SubtleGetKeyResponse

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleGetKeyResponseOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleGetKeyResponseOrBuilder.html new file mode 100644 index 000000000..fe42318a5 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleGetKeyResponseOrBuilder.html @@ -0,0 +1,205 @@ + + + + + +Uses of Interface io.dapr.v1.DaprProtos.SubtleGetKeyResponseOrBuilder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.SubtleGetKeyResponseOrBuilder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleSignRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleSignRequest.Builder.html new file mode 100644 index 000000000..008e87db2 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleSignRequest.Builder.html @@ -0,0 +1,367 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.SubtleSignRequest.Builder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.SubtleSignRequest.Builder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.WorkflowReference.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleSignRequest.html similarity index 56% rename from docs/io/dapr/v1/class-use/DaprProtos.WorkflowReference.html rename to docs/io/dapr/v1/class-use/DaprProtos.SubtleSignRequest.html index 4846a94fe..40b06cfff 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.WorkflowReference.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleSignRequest.html @@ -2,10 +2,10 @@ - -Uses of Class io.dapr.v1.DaprProtos.WorkflowReference (dapr-sdk-parent 1.8.0 API) + +Uses of Class io.dapr.v1.DaprProtos.SubtleSignRequest (dapr-sdk-parent 1.9.0 API) - + @@ -15,14 +15,14 @@ - + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.SubtleSignResponse.Builder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleSignResponse.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleSignResponse.html new file mode 100644 index 000000000..167f5bad5 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleSignResponse.html @@ -0,0 +1,369 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.SubtleSignResponse (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.SubtleSignResponse

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleSignResponseOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleSignResponseOrBuilder.html new file mode 100644 index 000000000..5034a2d1d --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleSignResponseOrBuilder.html @@ -0,0 +1,205 @@ + + + + + +Uses of Interface io.dapr.v1.DaprProtos.SubtleSignResponseOrBuilder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.SubtleSignResponseOrBuilder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleUnwrapKeyRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleUnwrapKeyRequest.Builder.html new file mode 100644 index 000000000..4e3cc18f6 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleUnwrapKeyRequest.Builder.html @@ -0,0 +1,415 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.SubtleUnwrapKeyRequest.Builder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.SubtleUnwrapKeyRequest.Builder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleUnwrapKeyRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleUnwrapKeyRequest.html new file mode 100644 index 000000000..5ab115b45 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleUnwrapKeyRequest.html @@ -0,0 +1,359 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.SubtleUnwrapKeyRequest (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.SubtleUnwrapKeyRequest

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleUnwrapKeyRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleUnwrapKeyRequestOrBuilder.html new file mode 100644 index 000000000..8afe9ad72 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleUnwrapKeyRequestOrBuilder.html @@ -0,0 +1,205 @@ + + + + + +Uses of Interface io.dapr.v1.DaprProtos.SubtleUnwrapKeyRequestOrBuilder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.SubtleUnwrapKeyRequestOrBuilder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleUnwrapKeyResponse.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleUnwrapKeyResponse.Builder.html new file mode 100644 index 000000000..e59858d8e --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleUnwrapKeyResponse.Builder.html @@ -0,0 +1,295 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.SubtleUnwrapKeyResponse.Builder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.SubtleUnwrapKeyResponse.Builder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleUnwrapKeyResponse.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleUnwrapKeyResponse.html new file mode 100644 index 000000000..d25977d63 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleUnwrapKeyResponse.html @@ -0,0 +1,369 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.SubtleUnwrapKeyResponse (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.SubtleUnwrapKeyResponse

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleUnwrapKeyResponseOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleUnwrapKeyResponseOrBuilder.html new file mode 100644 index 000000000..baceb91d4 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleUnwrapKeyResponseOrBuilder.html @@ -0,0 +1,205 @@ + + + + + +Uses of Interface io.dapr.v1.DaprProtos.SubtleUnwrapKeyResponseOrBuilder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.SubtleUnwrapKeyResponseOrBuilder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleVerifyRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleVerifyRequest.Builder.html new file mode 100644 index 000000000..a49b17eac --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleVerifyRequest.Builder.html @@ -0,0 +1,383 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.SubtleVerifyRequest.Builder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.SubtleVerifyRequest.Builder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleVerifyRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleVerifyRequest.html new file mode 100644 index 000000000..462c5d1fa --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleVerifyRequest.html @@ -0,0 +1,359 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.SubtleVerifyRequest (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.SubtleVerifyRequest

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleVerifyRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleVerifyRequestOrBuilder.html new file mode 100644 index 000000000..6148e0eb3 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleVerifyRequestOrBuilder.html @@ -0,0 +1,205 @@ + + + + + +Uses of Interface io.dapr.v1.DaprProtos.SubtleVerifyRequestOrBuilder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.SubtleVerifyRequestOrBuilder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleVerifyResponse.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleVerifyResponse.Builder.html new file mode 100644 index 000000000..d703c969c --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleVerifyResponse.Builder.html @@ -0,0 +1,295 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.SubtleVerifyResponse.Builder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.SubtleVerifyResponse.Builder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleVerifyResponse.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleVerifyResponse.html new file mode 100644 index 000000000..daf022bba --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleVerifyResponse.html @@ -0,0 +1,369 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.SubtleVerifyResponse (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.SubtleVerifyResponse

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleVerifyResponseOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleVerifyResponseOrBuilder.html new file mode 100644 index 000000000..873bdf78a --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleVerifyResponseOrBuilder.html @@ -0,0 +1,205 @@ + + + + + +Uses of Interface io.dapr.v1.DaprProtos.SubtleVerifyResponseOrBuilder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.SubtleVerifyResponseOrBuilder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleWrapKeyRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleWrapKeyRequest.Builder.html new file mode 100644 index 000000000..0fa9b077b --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleWrapKeyRequest.Builder.html @@ -0,0 +1,399 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.SubtleWrapKeyRequest.Builder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.SubtleWrapKeyRequest.Builder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleWrapKeyRequest.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleWrapKeyRequest.html new file mode 100644 index 000000000..29637c317 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleWrapKeyRequest.html @@ -0,0 +1,359 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.SubtleWrapKeyRequest (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.SubtleWrapKeyRequest

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleWrapKeyRequestOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleWrapKeyRequestOrBuilder.html new file mode 100644 index 000000000..de4a32e29 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleWrapKeyRequestOrBuilder.html @@ -0,0 +1,205 @@ + + + + + +Uses of Interface io.dapr.v1.DaprProtos.SubtleWrapKeyRequestOrBuilder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.SubtleWrapKeyRequestOrBuilder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleWrapKeyResponse.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleWrapKeyResponse.Builder.html new file mode 100644 index 000000000..4f785535a --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleWrapKeyResponse.Builder.html @@ -0,0 +1,311 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.SubtleWrapKeyResponse.Builder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.SubtleWrapKeyResponse.Builder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleWrapKeyResponse.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleWrapKeyResponse.html new file mode 100644 index 000000000..940507d75 --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleWrapKeyResponse.html @@ -0,0 +1,369 @@ + + + + + +Uses of Class io.dapr.v1.DaprProtos.SubtleWrapKeyResponse (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Class
    io.dapr.v1.DaprProtos.SubtleWrapKeyResponse

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.SubtleWrapKeyResponseOrBuilder.html b/docs/io/dapr/v1/class-use/DaprProtos.SubtleWrapKeyResponseOrBuilder.html new file mode 100644 index 000000000..fce0d195c --- /dev/null +++ b/docs/io/dapr/v1/class-use/DaprProtos.SubtleWrapKeyResponseOrBuilder.html @@ -0,0 +1,205 @@ + + + + + +Uses of Interface io.dapr.v1.DaprProtos.SubtleWrapKeyResponseOrBuilder (dapr-sdk-parent 1.9.0 API) + + + + + + + + + + + + + + + +
    + +
    +
    +
    +

    Uses of Interface
    io.dapr.v1.DaprProtos.SubtleWrapKeyResponseOrBuilder

    +
    +
    + +
    +
    + + + diff --git a/docs/io/dapr/v1/class-use/DaprProtos.TerminateWorkflowRequest.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.TerminateWorkflowRequest.Builder.html index 01604b9b0..7060510be 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.TerminateWorkflowRequest.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.TerminateWorkflowRequest.Builder.html @@ -2,10 +2,10 @@ - -Uses of Class io.dapr.v1.DaprProtos.TerminateWorkflowRequest.Builder (dapr-sdk-parent 1.8.0 API) + +Uses of Class io.dapr.v1.DaprProtos.TerminateWorkflowRequest.Builder (dapr-sdk-parent 1.9.0 API) - + @@ -15,14 +15,14 @@ - + + + - - - - - - - - - -
    - -
    -
    -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.TerminateWorkflowResponse.Builder

    -
    -
    - -
    -
    - - - diff --git a/docs/io/dapr/v1/class-use/DaprProtos.TransactionalActorStateOperation.Builder.html b/docs/io/dapr/v1/class-use/DaprProtos.TransactionalActorStateOperation.Builder.html index e0417801c..17d179307 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.TransactionalActorStateOperation.Builder.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.TransactionalActorStateOperation.Builder.html @@ -2,10 +2,10 @@ - -Uses of Class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder (dapr-sdk-parent 1.8.0 API) + +Uses of Class io.dapr.v1.DaprProtos.TransactionalActorStateOperation.Builder (dapr-sdk-parent 1.9.0 API) - + @@ -15,14 +15,14 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - -
    - -
    -
    -
    -

    Uses of Class
    io.dapr.v1.DaprProtos.WorkflowReference.Builder

    -
    -
    - -
    -
    - - - diff --git a/docs/io/dapr/v1/class-use/DaprProtos.html b/docs/io/dapr/v1/class-use/DaprProtos.html index 71b9fdc48..280d9bb74 100644 --- a/docs/io/dapr/v1/class-use/DaprProtos.html +++ b/docs/io/dapr/v1/class-use/DaprProtos.html @@ -2,10 +2,10 @@ - -Uses of Class io.dapr.v1.DaprProtos (dapr-sdk-parent 1.8.0 API) + +Uses of Class io.dapr.v1.DaprProtos (dapr-sdk-parent 1.9.0 API) - + @@ -15,14 +15,14 @@ - + + + +