From f64fc82b066066a643c07c66796c004827749f8f Mon Sep 17 00:00:00 2001 From: tomstark99 Date: Wed, 27 Sep 2023 16:46:23 +0100 Subject: [PATCH 01/30] ES-1049: api-scanner --- application/build.gradle | 1 + .../src/api/corda-application-5.1.0.yaml | 1898 + base/build.gradle | 1 + base/src/api/corda-base-5.1.0.yaml | 771 + buildSrc/build.gradle | 5 +- .../src/main/groovy/corda.api-scanner.gradle | 4 + crypto-extensions/build.gradle | 1 + .../api/corda-crypto-extensions-5.1.0.yaml | 163 + crypto/build.gradle | 1 + crypto/src/api/corda-crypto-5.1.0.yaml | 563 + data/avro-schema/build.gradle | 1 + .../src/api/corda-avro-schema-5.1.0.yaml | 94579 ++++++++++++++++ data/config-schema/build.gradle | 1 + .../src/api/corda-config-schema-5.1.0.yaml | 1062 + data/db-schema/build.gradle | 1 + .../src/api/corda-db-schema-5.1.0.yaml | 220 + data/membership-schema/build.gradle | 1 + .../api/corda-membership-schema-5.1.0.yaml | 139 + data/rbac-schema/build.gradle | 1 + .../src/api/corda-rbac-schema-5.1.0.yaml | 44 + data/topic-schema/build.gradle | 1 + .../src/api/corda-topic-schema-5.1.0.yaml | 487 + gradle.properties | 2 +- ledger/ledger-common/build.gradle | 1 + .../src/api/corda-ledger-common-5.1.0.yaml | 238 + ledger/ledger-consensual/build.gradle | 1 + .../api/corda-ledger-consensual-5.1.0.yaml | 193 + ledger/ledger-utxo/build.gradle | 1 + .../src/api/corda-ledger-utxo-5.1.0.yaml | 2135 + ledger/notary-plugin/build.gradle | 1 + .../src/api/corda-notary-plugin-5.1.0.yaml | 67 + membership/build.gradle | 1 + .../src/api/corda-membership-5.1.0.yaml | 147 + serialization/build.gradle | 1 + .../src/api/corda-serialization-5.1.0.yaml | 123 + 35 files changed, 102853 insertions(+), 3 deletions(-) create mode 100644 application/src/api/corda-application-5.1.0.yaml create mode 100644 base/src/api/corda-base-5.1.0.yaml create mode 100644 buildSrc/src/main/groovy/corda.api-scanner.gradle create mode 100644 crypto-extensions/src/api/corda-crypto-extensions-5.1.0.yaml create mode 100644 crypto/src/api/corda-crypto-5.1.0.yaml create mode 100644 data/avro-schema/src/api/corda-avro-schema-5.1.0.yaml create mode 100644 data/config-schema/src/api/corda-config-schema-5.1.0.yaml create mode 100644 data/db-schema/src/api/corda-db-schema-5.1.0.yaml create mode 100644 data/membership-schema/src/api/corda-membership-schema-5.1.0.yaml create mode 100644 data/rbac-schema/src/api/corda-rbac-schema-5.1.0.yaml create mode 100644 data/topic-schema/src/api/corda-topic-schema-5.1.0.yaml create mode 100644 ledger/ledger-common/src/api/corda-ledger-common-5.1.0.yaml create mode 100644 ledger/ledger-consensual/src/api/corda-ledger-consensual-5.1.0.yaml create mode 100644 ledger/ledger-utxo/src/api/corda-ledger-utxo-5.1.0.yaml create mode 100644 ledger/notary-plugin/src/api/corda-notary-plugin-5.1.0.yaml create mode 100644 membership/src/api/corda-membership-5.1.0.yaml create mode 100644 serialization/src/api/corda-serialization-5.1.0.yaml diff --git a/application/build.gradle b/application/build.gradle index b93fbaefd1..7b4d113e22 100644 --- a/application/build.gradle +++ b/application/build.gradle @@ -2,6 +2,7 @@ plugins { id 'corda-api.common-library' id 'corda.common-publishing' id 'corda.java-only' + id 'corda.api-scanner' } description 'Corda Application' diff --git a/application/src/api/corda-application-5.1.0.yaml b/application/src/api/corda-application-5.1.0.yaml new file mode 100644 index 0000000000..32306de0aa --- /dev/null +++ b/application/src/api/corda-application-5.1.0.yaml @@ -0,0 +1,1898 @@ +net.corda.v5.application.crypto.CompositeKeyGenerator: + annotations: [] + type: public interface + extends: [] + interface: true + methods: + create: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.security.PublicKey + params: + keys: + annotation: + - NotNull + type: java.util.List + threshold: + annotation: + - Nullable + type: Integer +net.corda.v5.application.crypto.DigestService: + annotations: + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: + defaultDigestAlgorithm: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.crypto.DigestAlgorithmName + digestLength: + annotations: + - Suspendable + default: false + type: public abstract + returnType: int + params: + digestName: + annotation: + - NotNull + type: net.corda.v5.crypto.DigestAlgorithmName + hash: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.crypto.SecureHash + params: + inputStream: + annotation: + - NotNull + type: java.io.InputStream + digestName: + annotation: + - NotNull + type: net.corda.v5.crypto.DigestAlgorithmName + parseSecureHash: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.crypto.SecureHash + params: + algoNameAndHexString: + annotation: + - NotNull + type: String + supportedDigestAlgorithms: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.util.Set +net.corda.v5.application.crypto.DigitalSignatureAndMetadata: + annotations: + - CordaSerializable + type: public final class + extends: null + implements: [] + interface: false + methods: + equals: + annotations: [] + default: false + type: public + returnType: boolean + params: + obj: + annotation: + - Nullable + type: Object + getBy: + annotations: + - NotNull + default: false + type: public + returnType: net.corda.v5.crypto.SecureHash + getMetadata: + annotations: + - NotNull + default: false + type: public + returnType: net.corda.v5.application.crypto.DigitalSignatureMetadata + getProof: + annotations: + - Nullable + default: false + type: public + returnType: net.corda.v5.crypto.merkle.MerkleProof + getSignature: + annotations: + - NotNull + default: false + type: public + returnType: net.corda.v5.crypto.DigitalSignature$WithKeyId + hashCode: + annotations: [] + default: false + type: public + returnType: int + toString: + annotations: + - NotNull + default: false + type: public + returnType: String +net.corda.v5.application.crypto.DigitalSignatureMetadata: + annotations: + - CordaSerializable + type: public final class + extends: null + implements: [] + interface: false + methods: + equals: + annotations: [] + default: false + type: public + returnType: boolean + params: + obj: + annotation: + - Nullable + type: Object + getProperties: + annotations: + - NotNull + default: false + type: public + returnType: "java.util.Map" + getSignatureSpec: + annotations: + - NotNull + default: false + type: public + returnType: net.corda.v5.crypto.SignatureSpec + getTimestamp: + annotations: + - NotNull + default: false + type: public + returnType: java.time.Instant + hashCode: + annotations: [] + default: false + type: public + returnType: int + toString: + annotations: + - NotNull + default: false + type: public + returnType: String +net.corda.v5.application.crypto.DigitalSignatureVerificationService: + annotations: + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: + verify: + annotations: [] + default: false + type: public abstract + returnType: void + params: + originalData: + annotation: + - NotNull + type: "byte[]" + signature: + annotation: + - NotNull + type: net.corda.v5.crypto.DigitalSignature + publicKey: + annotation: + - NotNull + type: java.security.PublicKey + signatureSpec: + annotation: + - NotNull + type: net.corda.v5.crypto.SignatureSpec +net.corda.v5.application.crypto.MerkleTreeFactory: + annotations: + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: + createHashDigest: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.crypto.merkle.MerkleTreeHashDigest + params: + merkleTreeHashDigestProviderName: + annotation: + - NotNull + type: String + digestAlgorithmName: + annotation: + - NotNull + type: net.corda.v5.crypto.DigestAlgorithmName + options: + annotation: + - NotNull + type: "java.util.Map" + createTree: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.crypto.merkle.MerkleTree + params: + leaves: + annotation: + - NotNull + type: "java.util.List" + digest: + annotation: + - NotNull + type: net.corda.v5.crypto.merkle.MerkleTreeHashDigest +net.corda.v5.application.crypto.SignatureSpecService: + annotations: + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: + compatibleSignatureSpecs: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: java.util.List + params: + publicKey: + annotation: + - NotNull + type: java.security.PublicKey + digestAlgorithmName: + annotation: + - NotNull + type: net.corda.v5.crypto.DigestAlgorithmName + defaultSignatureSpec: + annotations: + - Suspendable + - Nullable + default: false + type: public abstract + returnType: net.corda.v5.crypto.SignatureSpec + params: + publicKey: + annotation: + - NotNull + type: java.security.PublicKey + digestAlgorithmName: + annotation: + - NotNull + type: net.corda.v5.crypto.DigestAlgorithmName +net.corda.v5.application.crypto.SigningService: + annotations: + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: + findMySigningKeys: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: "java.util.Map" + params: + keys: + annotation: + - NotNull + type: java.util.Set + sign: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.crypto.DigitalSignature$WithKeyId + params: + bytes: + annotation: + - NotNull + type: "byte[]" + publicKey: + annotation: + - NotNull + type: java.security.PublicKey + signatureSpec: + annotation: + - NotNull + type: net.corda.v5.crypto.SignatureSpec +net.corda.v5.application.flows.ClientRequestBody: + annotations: [] + type: public interface + extends: [] + interface: true + methods: + getRequestBody: + annotations: + - NotNull + default: false + type: public abstract + returnType: String + getRequestBodyAs: + annotations: + - NotNull + default: false + type: public abstract + returnType: T + params: + marshallingService: + annotation: + - NotNull + type: net.corda.v5.application.marshalling.MarshallingService + clazz: + annotation: + - NotNull + type: Class + getRequestBodyAsList: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.util.List + params: + marshallingService: + annotation: + - NotNull + type: net.corda.v5.application.marshalling.MarshallingService + clazz: + annotation: + - NotNull + type: Class + getRequestBodyAsMap: + annotations: + - NotNull + default: false + type: public abstract + returnType: "java.util.Map" + params: + marshallingService: + annotation: + - NotNull + type: net.corda.v5.application.marshalling.MarshallingService + keyClass: + annotation: + - NotNull + type: Class + valueClass: + annotation: + - NotNull + type: Class +net.corda.v5.application.flows.ClientStartableFlow: + annotations: + - DoNotImplement + type: public interface + extends: + - net.corda.v5.application.flows.Flow + interface: true + methods: + call: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: String + params: + requestBody: + annotation: + - NotNull + type: net.corda.v5.application.flows.ClientRequestBody +net.corda.v5.application.flows.CordaInject: + annotations: [] + type: public @interface + interface: false + methods: {} +net.corda.v5.application.flows.Flow: + annotations: + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: {} +net.corda.v5.application.flows.FlowContextProperties: + annotations: [] + type: public interface + extends: [] + interface: true + methods: + get: + annotations: + - Nullable + default: false + type: public abstract + returnType: String + params: + key: + annotation: + - NotNull + type: String + put: + annotations: [] + default: false + type: public abstract + returnType: void + params: + key: + annotation: + - NotNull + type: String + value: + annotation: + - NotNull + type: String +net.corda.v5.application.flows.FlowContextPropertyKeys: + annotations: [] + type: public final class + extends: null + implements: [] + interface: false + methods: {} + fields: + CPI_NAME: + annotation: [] + type: public static final String + initialised value: corda.cpiName + CPI_VERSION: + annotation: [] + type: public static final String + initialised value: corda.cpiVersion + CPI_SIGNER_SUMMARY_HASH: + annotation: [] + type: public static final String + initialised value: corda.cpiSignerSummaryHash + CPI_FILE_CHECKSUM: + annotation: [] + type: public static final String + initialised value: corda.cpiFileChecksum + CPK_FILE_CHECKSUM: + annotation: [] + type: public static final String + initialised value: corda.cpkFileChecksum + INITIAL_PLATFORM_VERSION: + annotation: [] + type: public static final String + initialised value: corda.initialPlatformVersion + INITIAL_SOFTWARE_VERSION: + annotation: [] + type: public static final String + initialised value: corda.initialSoftwareVersion +net.corda.v5.application.flows.FlowEngine: + annotations: + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: + getFlowContextProperties: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.application.flows.FlowContextProperties + getFlowId: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.util.UUID + getVirtualNodeName: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.base.types.MemberX500Name + subFlow: + annotations: + - Suspendable + default: false + type: public abstract + returnType: R + params: + subFlow: + annotation: + - NotNull + type: net.corda.v5.application.flows.SubFlow +net.corda.v5.application.flows.InitiatedBy: + annotations: [] + type: public @interface + interface: false + methods: + protocol: + annotations: [] + default: false + type: public abstract + returnType: String + version: + annotations: [] + default: false + type: public abstract + returnType: "int[]" +net.corda.v5.application.flows.InitiatingFlow: + annotations: [] + type: public @interface + interface: false + methods: + protocol: + annotations: [] + default: false + type: public abstract + returnType: String + version: + annotations: [] + default: false + type: public abstract + returnType: "int[]" +net.corda.v5.application.flows.ResponderFlow: + annotations: + - DoNotImplement + type: public interface + extends: + - net.corda.v5.application.flows.Flow + interface: true + methods: + call: + annotations: + - Suspendable + default: false + type: public abstract + returnType: void + params: + session: + annotation: + - NotNull + type: net.corda.v5.application.messaging.FlowSession +net.corda.v5.application.flows.SubFlow: + annotations: + - DoNotImplement + type: public interface + extends: + - net.corda.v5.application.flows.Flow + interface: true + methods: + call: + annotations: + - Suspendable + default: false + type: public abstract + returnType: T +net.corda.v5.application.marshalling.JsonMarshallingService: + annotations: + - DoNotImplement + type: public interface + extends: + - net.corda.v5.application.marshalling.MarshallingService + interface: true + methods: + format: + annotations: + - NotNull + default: false + type: public abstract + returnType: String + params: + data: + annotation: + - NotNull + type: Object + parse: + annotations: [] + default: false + type: public abstract + returnType: T + params: + input: + annotation: + - NotNull + type: String + clazz: + annotation: + - NotNull + type: Class + parseList: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.util.List + params: + input: + annotation: + - NotNull + type: String + clazz: + annotation: + - NotNull + type: Class + parseMap: + annotations: + - NotNull + default: false + type: public abstract + returnType: "java.util.Map" + params: + input: + annotation: + - NotNull + type: String + keyClass: + annotation: + - NotNull + type: Class + valueClass: + annotation: + - NotNull + type: Class +net.corda.v5.application.marshalling.MarshallingService: + annotations: + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: + format: + annotations: + - NotNull + default: false + type: public abstract + returnType: String + params: + data: + annotation: + - NotNull + type: Object + parse: + annotations: [] + default: false + type: public abstract + returnType: T + params: + input: + annotation: + - NotNull + type: String + clazz: + annotation: + - NotNull + type: Class + parseList: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.util.List + params: + input: + annotation: + - NotNull + type: String + clazz: + annotation: + - NotNull + type: Class + parseMap: + annotations: + - NotNull + default: false + type: public abstract + returnType: "java.util.Map" + params: + input: + annotation: + - NotNull + type: String + keyClass: + annotation: + - NotNull + type: Class + valueClass: + annotation: + - NotNull + type: Class +net.corda.v5.application.marshalling.json.JsonDeserializer: + annotations: [] + type: public interface + extends: [] + interface: true + methods: + deserialize: + annotations: [] + default: false + type: public abstract + returnType: T + params: + jsonRoot: + annotation: + - NotNull + type: net.corda.v5.application.marshalling.json.JsonNodeReader +net.corda.v5.application.marshalling.json.JsonNodeReader: + annotations: + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: + asArray: + annotations: + - Nullable + default: false + type: public abstract + returnType: java.util.Iterator + asBoolean: + annotations: [] + default: false + type: public abstract + returnType: boolean + params: + defaultValue: + annotation: [] + type: boolean + asDouble: + annotations: [] + default: false + type: public abstract + returnType: double + params: + defaultValue: + annotation: [] + type: double + asInt: + annotations: [] + default: false + type: public abstract + returnType: int + params: + defaultValue: + annotation: [] + type: int + asLong: + annotations: [] + default: false + type: public abstract + returnType: long + params: + defaultValue: + annotation: [] + type: long + asText: + annotations: + - NotNull + default: false + type: public abstract + returnType: String + params: + defaultValue: + annotation: + - NotNull + type: String + bigDecimalValue: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.math.BigDecimal + bigIntegerValue: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.math.BigInteger + binaryValue: + annotations: + - Nullable + default: false + type: public abstract + returnType: "byte[]" + canConvertToInt: + annotations: [] + default: false + type: public abstract + returnType: boolean + canConvertToLong: + annotations: [] + default: false + type: public abstract + returnType: boolean + doubleValue: + annotations: [] + default: false + type: public abstract + returnType: double + fields: + annotations: + - Nullable + default: false + type: public abstract + returnType: "java.util.Iterator>" + floatValue: + annotations: [] + default: false + type: public abstract + returnType: float + getField: + annotations: + - Nullable + default: false + type: public abstract + returnType: net.corda.v5.application.marshalling.json.JsonNodeReader + params: + fieldName: + annotation: + - NotNull + type: String + getType: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.application.marshalling.json.JsonNodeReaderType + hasField: + annotations: [] + default: false + type: public abstract + returnType: boolean + params: + fieldName: + annotation: + - NotNull + type: String + isArray: + annotations: [] + default: false + type: public abstract + returnType: boolean + isBoolean: + annotations: [] + default: false + type: public abstract + returnType: boolean + isDouble: + annotations: [] + default: false + type: public abstract + returnType: boolean + isFloatingPointNumber: + annotations: [] + default: false + type: public abstract + returnType: boolean + isInt: + annotations: [] + default: false + type: public abstract + returnType: boolean + isNull: + annotations: [] + default: false + type: public abstract + returnType: boolean + isNumber: + annotations: [] + default: false + type: public abstract + returnType: boolean + isObject: + annotations: [] + default: false + type: public abstract + returnType: boolean + isText: + annotations: [] + default: false + type: public abstract + returnType: boolean + numberValue: + annotations: + - Nullable + default: false + type: public abstract + returnType: Number + parse: + annotations: + - Nullable + default: false + type: public abstract + returnType: T + params: + clazz: + annotation: + - NotNull + type: Class + shortValue: + annotations: [] + default: false + type: public abstract + returnType: short +net.corda.v5.application.marshalling.json.JsonNodeReaderType: + annotations: [] + type: public final class + extends: java.lang.Enum + implements: [] + interface: false + methods: + valueOf: + annotations: [] + default: false + type: public static + returnType: net.corda.v5.application.marshalling.json.JsonNodeReaderType + params: {} + values: + annotations: [] + default: false + type: public static + returnType: "net.corda.v5.application.marshalling.json.JsonNodeReaderType[]" +net.corda.v5.application.marshalling.json.JsonSerializedBase64Config: + annotations: [] + type: public final class + extends: java.lang.Enum + implements: [] + interface: false + methods: + valueOf: + annotations: [] + default: false + type: public static + returnType: net.corda.v5.application.marshalling.json.JsonSerializedBase64Config + params: {} + values: + annotations: [] + default: false + type: public static + returnType: "net.corda.v5.application.marshalling.json.JsonSerializedBase64Config[]" +net.corda.v5.application.marshalling.json.JsonSerializer: + annotations: [] + type: public interface + extends: [] + interface: true + methods: + serialize: + annotations: [] + default: false + type: public abstract + returnType: void + params: + item: + annotation: [] + type: T + jsonWriter: + annotation: + - NotNull + type: net.corda.v5.application.marshalling.json.JsonWriter +net.corda.v5.application.marshalling.json.JsonWriter: + annotations: + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: + writeArray: + annotations: [] + default: false + type: public abstract + returnType: void + params: + array: + annotation: + - NotNull + type: "String[]" + offset: + annotation: [] + type: int + len: + annotation: [] + type: int + writeArrayFieldStart: + annotations: [] + default: false + type: public abstract + returnType: void + params: + fieldName: + annotation: + - NotNull + type: String + writeBinary: + annotations: [] + default: false + type: public abstract + returnType: void + params: + data: + annotation: + - NotNull + type: java.io.InputStream + len: + annotation: [] + type: int + writeBinaryField: + annotations: [] + default: false + type: public abstract + returnType: void + params: + fieldName: + annotation: + - NotNull + type: String + data: + annotation: + - NotNull + type: "byte[]" + writeBoolean: + annotations: [] + default: false + type: public abstract + returnType: void + params: + state: + annotation: [] + type: boolean + writeBooleanField: + annotations: [] + default: false + type: public abstract + returnType: void + params: + fieldName: + annotation: + - NotNull + type: String + state: + annotation: [] + type: boolean + writeEndArray: + annotations: [] + default: false + type: public abstract + returnType: void + writeEndObject: + annotations: [] + default: false + type: public abstract + returnType: void + writeFieldName: + annotations: [] + default: false + type: public abstract + returnType: void + params: + fieldName: + annotation: + - NotNull + type: String + writeNull: + annotations: [] + default: false + type: public abstract + returnType: void + writeNullField: + annotations: [] + default: false + type: public abstract + returnType: void + params: + fieldName: + annotation: + - NotNull + type: String + writeNumber: + annotations: [] + default: false + type: public abstract + returnType: void + params: + v: + annotation: [] + type: short + writeNumberField: + annotations: [] + default: false + type: public abstract + returnType: void + params: + fieldName: + annotation: + - NotNull + type: String + v: + annotation: [] + type: long + writeObject: + annotations: [] + default: false + type: public abstract + returnType: void + params: + pojo: + annotation: + - NotNull + type: Object + writeObjectField: + annotations: [] + default: false + type: public abstract + returnType: void + params: + fieldName: + annotation: + - NotNull + type: String + pojo: + annotation: + - NotNull + type: Object + writeObjectFieldStart: + annotations: [] + default: false + type: public abstract + returnType: void + params: + fieldName: + annotation: + - NotNull + type: String + writeRaw: + annotations: [] + default: false + type: public abstract + returnType: void + params: + text: + annotation: + - NotNull + type: String + offset: + annotation: [] + type: int + len: + annotation: [] + type: int + writeRawValue: + annotations: [] + default: false + type: public abstract + returnType: void + params: + text: + annotation: + - NotNull + type: String + offset: + annotation: [] + type: int + len: + annotation: [] + type: int + writeStartArray: + annotations: [] + default: false + type: public abstract + returnType: void + writeStartObject: + annotations: [] + default: false + type: public abstract + returnType: void + writeString: + annotations: [] + default: false + type: public abstract + returnType: void + params: + text: + annotation: + - NotNull + type: String + writeStringField: + annotations: [] + default: false + type: public abstract + returnType: void + params: + fieldName: + annotation: + - NotNull + type: String + text: + annotation: + - NotNull + type: String +net.corda.v5.application.membership.MemberLookup: + annotations: + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: + lookup: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: java.util.List + myInfo: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.membership.MemberInfo +net.corda.v5.application.messaging.ExternalMessaging: + annotations: [] + type: public interface + extends: [] + interface: true + methods: + send: + annotations: + - Suspendable + default: false + type: public abstract + returnType: void + params: + channelName: + annotation: + - NotNull + type: String + messageId: + annotation: + - NotNull + type: String + message: + annotation: + - NotNull + type: String +net.corda.v5.application.messaging.FlowContextPropertiesBuilder: + annotations: [] + type: public interface + extends: [] + interface: true + methods: + apply: + annotations: [] + default: false + type: public abstract + returnType: void + params: + flowContextProperties: + annotation: + - NotNull + type: net.corda.v5.application.flows.FlowContextProperties +net.corda.v5.application.messaging.FlowInfo: + annotations: + - CordaSerializable + type: public interface + extends: [] + interface: true + methods: + protocol: + annotations: + - NotNull + default: false + type: public abstract + returnType: String + protocolVersion: + annotations: + - NotNull + default: false + type: public abstract + returnType: Integer +net.corda.v5.application.messaging.FlowMessaging: + annotations: + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: + initiateFlow: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.application.messaging.FlowSession + params: + x500Name: + annotation: + - NotNull + type: net.corda.v5.base.types.MemberX500Name + requireClose: + annotation: [] + type: boolean + flowContextPropertiesBuilder: + annotation: + - NotNull + type: net.corda.v5.application.messaging.FlowContextPropertiesBuilder + receiveAll: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: java.util.List + params: + receiveType: + annotation: + - NotNull + type: Class + sessions: + annotation: + - NotNull + type: java.util.Set + receiveAllMap: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: "java.util.Map" + params: + sessions: + annotation: + - NotNull + type: "java.util.Map>" + sendAll: + annotations: + - Suspendable + default: false + type: public abstract + returnType: void + params: + payload: + annotation: + - NotNull + type: Object + sessions: + annotation: + - NotNull + type: java.util.Set + sendAllMap: + annotations: + - Suspendable + default: false + type: public abstract + returnType: void + params: + payloadsPerSession: + annotation: + - NotNull + type: "java.util.Map" +net.corda.v5.application.messaging.FlowSession: + annotations: + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: + close: + annotations: + - Suspendable + default: false + type: public abstract + returnType: void + getContextProperties: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.application.flows.FlowContextProperties + getCounterparty: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.base.types.MemberX500Name + getCounterpartyFlowInfo: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.application.messaging.FlowInfo + receive: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: R + params: + receiveType: + annotation: + - NotNull + type: Class + send: + annotations: + - Suspendable + default: false + type: public abstract + returnType: void + params: + payload: + annotation: + - NotNull + type: Object + sendAndReceive: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: R + params: + receiveType: + annotation: + - NotNull + type: Class + payload: + annotation: + - NotNull + type: Object +net.corda.v5.application.persistence.CordaPersistenceException: + annotations: [] + type: public final class + extends: net.corda.v5.base.exceptions.CordaRuntimeException + implements: [] + interface: false + methods: {} +net.corda.v5.application.persistence.PagedQuery: + annotations: [] + type: public interface + extends: [] + interface: true + methods: + execute: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.application.persistence.PagedQuery$ResultSet + setLimit: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.application.persistence.PagedQuery + params: + limit: + annotation: [] + type: int + setOffset: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.application.persistence.PagedQuery + params: + offset: + annotation: [] + type: int +net.corda.v5.application.persistence.PagedQuery$ResultSet: + annotations: [] + type: public static interface + extends: [] + interface: true + methods: + getResults: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.util.List + hasNext: + annotations: [] + default: false + type: public abstract + returnType: boolean + next: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: java.util.List +net.corda.v5.application.persistence.ParameterizedQuery: + annotations: [] + type: public interface + extends: + - net.corda.v5.application.persistence.PagedQuery + interface: true + methods: + execute: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.application.persistence.PagedQuery$ResultSet + setLimit: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.application.persistence.ParameterizedQuery + params: + limit: + annotation: [] + type: int + setOffset: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.application.persistence.ParameterizedQuery + params: + offset: + annotation: [] + type: int + setParameter: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.application.persistence.ParameterizedQuery + params: + name: + annotation: + - NotNull + type: String + value: + annotation: + - NotNull + type: Object + setParameters: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.application.persistence.ParameterizedQuery + params: + parameters: + annotation: + - NotNull + type: "java.util.Map" +net.corda.v5.application.persistence.PersistenceService: + annotations: + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: + find: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: java.util.List + params: + entityClass: + annotation: + - NotNull + type: Class + primaryKeys: + annotation: + - NotNull + type: java.util.List + findAll: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.application.persistence.PagedQuery + params: + entityClass: + annotation: + - NotNull + type: Class + merge: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: java.util.List + params: + entities: + annotation: + - NotNull + type: java.util.List + persist: + annotations: + - Suspendable + default: false + type: public abstract + returnType: void + params: + entities: + annotation: + - NotNull + type: java.util.List + query: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.application.persistence.ParameterizedQuery + params: + queryName: + annotation: + - NotNull + type: String + entityClass: + annotation: + - NotNull + type: Class + remove: + annotations: + - Suspendable + default: false + type: public abstract + returnType: void + params: + entities: + annotation: + - NotNull + type: java.util.List +net.corda.v5.application.serialization.SerializationService: + annotations: + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: + deserialize: + annotations: + - NotNull + default: false + type: public abstract + returnType: T + params: + bytes: + annotation: + - NotNull + type: "byte[]" + clazz: + annotation: + - NotNull + type: Class + serialize: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.serialization.SerializedBytes + params: + obj: + annotation: + - NotNull + type: T +net.corda.v5.application.uniqueness.model.UniquenessCheckError: + annotations: [] + type: public interface + extends: [] + interface: true + methods: {} +net.corda.v5.application.uniqueness.model.UniquenessCheckErrorInputStateConflict: + annotations: [] + type: public interface + extends: + - net.corda.v5.application.uniqueness.model.UniquenessCheckError + interface: true + methods: + getConflictingStates: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.util.List +net.corda.v5.application.uniqueness.model.UniquenessCheckErrorInputStateUnknown: + annotations: [] + type: public interface + extends: + - net.corda.v5.application.uniqueness.model.UniquenessCheckError + interface: true + methods: + getUnknownStates: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.util.List +net.corda.v5.application.uniqueness.model.UniquenessCheckErrorMalformedRequest: + annotations: [] + type: public interface + extends: + - net.corda.v5.application.uniqueness.model.UniquenessCheckError + interface: true + methods: + getErrorText: + annotations: + - NotNull + default: false + type: public abstract + returnType: String +net.corda.v5.application.uniqueness.model.UniquenessCheckErrorReferenceStateConflict: + annotations: [] + type: public interface + extends: + - net.corda.v5.application.uniqueness.model.UniquenessCheckError + interface: true + methods: + getConflictingStates: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.util.List +net.corda.v5.application.uniqueness.model.UniquenessCheckErrorReferenceStateUnknown: + annotations: [] + type: public interface + extends: + - net.corda.v5.application.uniqueness.model.UniquenessCheckError + interface: true + methods: + getUnknownStates: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.util.List +net.corda.v5.application.uniqueness.model.UniquenessCheckErrorTimeWindowOutOfBounds: + annotations: [] + type: public interface + extends: + - net.corda.v5.application.uniqueness.model.UniquenessCheckError + interface: true + methods: + getEvaluationTimestamp: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.time.Instant + getTimeWindowLowerBound: + annotations: + - Nullable + default: false + type: public abstract + returnType: java.time.Instant + getTimeWindowUpperBound: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.time.Instant +net.corda.v5.application.uniqueness.model.UniquenessCheckErrorUnhandledException: + annotations: [] + type: public interface + extends: + - net.corda.v5.application.uniqueness.model.UniquenessCheckError + interface: true + methods: + getUnhandledExceptionMessage: + annotations: + - NotNull + default: false + type: public abstract + returnType: String + getUnhandledExceptionType: + annotations: + - NotNull + default: false + type: public abstract + returnType: String +net.corda.v5.application.uniqueness.model.UniquenessCheckResult: + annotations: [] + type: public interface + extends: [] + interface: true + methods: + getResultTimestamp: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.time.Instant +net.corda.v5.application.uniqueness.model.UniquenessCheckResultFailure: + annotations: [] + type: public interface + extends: + - net.corda.v5.application.uniqueness.model.UniquenessCheckResult + interface: true + methods: + getError: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.application.uniqueness.model.UniquenessCheckError + getResultTimestamp: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.time.Instant +net.corda.v5.application.uniqueness.model.UniquenessCheckResultSuccess: + annotations: [] + type: public interface + extends: + - net.corda.v5.application.uniqueness.model.UniquenessCheckResult + interface: true + methods: + getResultTimestamp: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.time.Instant +net.corda.v5.application.uniqueness.model.UniquenessCheckStateDetails: + annotations: + - CordaSerializable + type: public interface + extends: [] + interface: true + methods: + getConsumingTxId: + annotations: + - Nullable + default: false + type: public abstract + returnType: net.corda.v5.crypto.SecureHash + getStateRef: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.application.uniqueness.model.UniquenessCheckStateRef +net.corda.v5.application.uniqueness.model.UniquenessCheckStateRef: + annotations: + - CordaSerializable + type: public interface + extends: [] + interface: true + methods: + getStateIndex: + annotations: [] + default: false + type: public abstract + returnType: int + getTxHash: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.crypto.SecureHash diff --git a/base/build.gradle b/base/build.gradle index 247376625d..69b7096ac2 100644 --- a/base/build.gradle +++ b/base/build.gradle @@ -2,6 +2,7 @@ plugins { id 'corda-api.common-library' id 'corda.common-publishing' id 'corda.java-only' + id 'corda.api-scanner' } description 'Corda Base' diff --git a/base/src/api/corda-base-5.1.0.yaml b/base/src/api/corda-base-5.1.0.yaml new file mode 100644 index 0000000000..0fd08a81fe --- /dev/null +++ b/base/src/api/corda-base-5.1.0.yaml @@ -0,0 +1,771 @@ +net.corda.v5.base.annotations.ConstructorForDeserialization: + annotations: [] + type: public @interface + interface: false + methods: {} +net.corda.v5.base.annotations.CordaSerializable: + annotations: [] + type: public @interface + interface: false + methods: {} +net.corda.v5.base.annotations.DeprecatedConstructorForDeserialization: + annotations: [] + type: public @interface + interface: false + methods: + version: + annotations: [] + default: false + type: public abstract + returnType: int +net.corda.v5.base.annotations.DoNotImplement: + annotations: [] + type: public @interface + interface: false + methods: {} +net.corda.v5.base.annotations.Suspendable: + annotations: [] + type: public @interface + interface: false + methods: {} +net.corda.v5.base.annotations.VisibleForTesting: + annotations: [] + type: public @interface + interface: false + methods: {} +net.corda.v5.base.exceptions.CordaRuntimeException: + annotations: + - CordaSerializable + type: public class + extends: java.lang.RuntimeException + implements: + - net.corda.v5.base.exceptions.CordaThrowable + interface: false + methods: + addSuppressed: + annotations: [] + default: false + type: public + returnType: void + params: + suppressed: + annotation: + - NotNull + type: "Throwable[]" + equals: + annotations: [] + default: false + type: public + returnType: boolean + params: + obj: + annotation: + - Nullable + type: Object + getCause: + annotations: + - Nullable + default: false + type: public + returnType: Throwable + getMessage: + annotations: + - Nullable + default: false + type: public + returnType: String + getOriginalExceptionClassName: + annotations: + - Nullable + default: false + type: public + returnType: String + getOriginalMessage: + annotations: + - Nullable + default: false + type: public + returnType: String + hashCode: + annotations: [] + default: false + type: public + returnType: int + setCause: + annotations: [] + default: false + type: public + returnType: void + params: + cause: + annotation: + - Nullable + type: Throwable + setMessage: + annotations: [] + default: false + type: public + returnType: void + params: + message: + annotation: + - Nullable + type: String + setOriginalExceptionClassName: + annotations: [] + default: false + type: public + returnType: void + params: + originalExceptionClassName: + annotation: + - Nullable + type: String +net.corda.v5.base.exceptions.CordaThrowable: + annotations: + - CordaSerializable + type: public interface + extends: [] + interface: true + methods: + addSuppressed: + annotations: [] + default: false + type: public abstract + returnType: void + params: + suppressed: + annotation: + - NotNull + type: "Throwable[]" + getOriginalExceptionClassName: + annotations: + - Nullable + default: false + type: public abstract + returnType: String + getOriginalMessage: + annotations: + - Nullable + default: false + type: public abstract + returnType: String + setCause: + annotations: [] + default: false + type: public abstract + returnType: void + params: + cause: + annotation: + - Nullable + type: Throwable + setMessage: + annotations: [] + default: false + type: public abstract + returnType: void + params: + message: + annotation: + - Nullable + type: String + setOriginalExceptionClassName: + annotations: [] + default: false + type: public abstract + returnType: void + params: + originalExceptionClassName: + annotation: + - Nullable + type: String +net.corda.v5.base.exceptions.ValueNotFoundException: + annotations: + - CordaSerializable + type: public final class + extends: net.corda.v5.base.exceptions.CordaThrowable + implements: [] + interface: false + methods: + addSuppressed: + annotations: [] + default: false + type: public + returnType: void + params: + suppressed: + annotation: + - NotNull + type: "Throwable[]" + equals: + annotations: [] + default: false + type: public + returnType: boolean + params: + obj: + annotation: + - Nullable + type: Object + getCause: + annotations: + - Nullable + default: false + type: public + returnType: Throwable + getMessage: + annotations: + - Nullable + default: false + type: public + returnType: String + getOriginalExceptionClassName: + annotations: + - Nullable + default: false + type: public + returnType: String + getOriginalMessage: + annotations: + - Nullable + default: false + type: public + returnType: String + hashCode: + annotations: [] + default: false + type: public + returnType: int + setCause: + annotations: [] + default: false + type: public + returnType: void + params: + cause: + annotation: + - Nullable + type: Throwable + setMessage: + annotations: [] + default: false + type: public + returnType: void + params: + message: + annotation: + - Nullable + type: String + setOriginalExceptionClassName: + annotations: [] + default: false + type: public + returnType: void + params: + originalExceptionClassName: + annotation: + - Nullable + type: String +net.corda.v5.base.types.LayeredPropertyMap: + annotations: [] + type: public interface + extends: [] + interface: true + methods: + get: + annotations: + - Nullable + default: false + type: public abstract + returnType: String + params: + key: + annotation: + - NotNull + type: String + getEntries: + annotations: + - NotNull + default: false + type: public abstract + returnType: "java.util.Set>" + parse: + annotations: + - NotNull + default: false + type: public abstract + returnType: T + params: + key: + annotation: + - NotNull + type: String + clazz: + annotation: + - NotNull + type: Class + parseList: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.util.List + params: + itemKeyPrefix: + annotation: + - NotNull + type: String + clazz: + annotation: + - NotNull + type: Class + parseOrNull: + annotations: + - Nullable + default: false + type: public abstract + returnType: T + params: + key: + annotation: + - NotNull + type: String + clazz: + annotation: + - NotNull + type: Class + parseSet: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.util.Set + params: + itemKeyPrefix: + annotation: + - NotNull + type: String + clazz: + annotation: + - NotNull + type: Class +net.corda.v5.base.types.MemberX500Name: + annotations: + - CordaSerializable + type: public final class + extends: null + implements: + - java.lang.Comparable + interface: false + methods: + build: + annotations: + - NotNull + default: false + type: public static + returnType: net.corda.v5.base.types.MemberX500Name + params: + principal: + annotation: + - NotNull + type: javax.security.auth.x500.X500Principal + compareTo: + annotations: [] + default: false + type: public + returnType: int + params: + other: + annotation: + - NotNull + type: net.corda.v5.base.types.MemberX500Name + equals: + annotations: [] + default: false + type: public + returnType: boolean + params: + obj: + annotation: + - Nullable + type: Object + getCommonName: + annotations: + - Nullable + default: false + type: public + returnType: String + getCountry: + annotations: + - NotNull + default: false + type: public + returnType: String + getLocality: + annotations: + - NotNull + default: false + type: public + returnType: String + getOrganization: + annotations: + - NotNull + default: false + type: public + returnType: String + getOrganizationUnit: + annotations: + - Nullable + default: false + type: public + returnType: String + getState: + annotations: + - Nullable + default: false + type: public + returnType: String + getX500Principal: + annotations: + - NotNull + default: false + type: public synchronized + returnType: javax.security.auth.x500.X500Principal + hashCode: + annotations: [] + default: false + type: public + returnType: int + parse: + annotations: + - NotNull + default: false + type: public static + returnType: net.corda.v5.base.types.MemberX500Name + params: + name: + annotation: + - NotNull + type: String + toAttributesMap: + annotations: + - NotNull + default: false + type: public static + returnType: "java.util.Map" + params: + name: + annotation: + - NotNull + type: String + toString: + annotations: + - NotNull + default: false + type: public + returnType: String + fields: + MAX_LENGTH_ORGANIZATION: + annotation: [] + type: public static final int + initialised value: 128 + MAX_LENGTH_LOCALITY: + annotation: [] + type: public static final int + initialised value: 64 + MAX_LENGTH_STATE: + annotation: [] + type: public static final int + initialised value: 64 + MAX_LENGTH_ORGANIZATION_UNIT: + annotation: [] + type: public static final int + initialised value: 64 + MAX_LENGTH_COMMON_NAME: + annotation: [] + type: public static final int + initialised value: 64 +net.corda.v5.base.util.Base58: + annotations: [] + type: public class + extends: null + implements: [] + interface: false + methods: + decode: + annotations: [] + default: false + type: public static + returnType: "byte[]" + params: + input: + annotation: [] + type: String + decodeToBigInteger: + annotations: [] + default: false + type: public static + returnType: java.math.BigInteger + params: + input: + annotation: [] + type: String + encode: + annotations: [] + default: false + type: public static + returnType: String + params: + input: + annotation: [] + type: "byte[]" +net.corda.v5.base.util.ByteArrays: + annotations: [] + type: public final class + extends: null + implements: [] + interface: false + methods: + parseAsHex: + annotations: + - NotNull + default: false + type: public static + returnType: "byte[]" + params: + str: + annotation: + - NotNull + type: String + toHexString: + annotations: + - NotNull + default: false + type: public static + returnType: String + params: + bytes: + annotation: + - NotNull + type: "byte[]" +net.corda.v5.base.util.EncodingUtils: + annotations: [] + type: public final class + extends: null + implements: [] + interface: false + methods: + base58ToByteArray: + annotations: + - NotNull + default: false + type: public static + returnType: "byte[]" + params: + encoded: + annotation: + - NotNull + type: String + base58ToRealString: + annotations: + - NotNull + default: false + type: public static + returnType: String + params: + encoded: + annotation: + - NotNull + type: String + base58toBase64: + annotations: + - NotNull + default: false + type: public static + returnType: String + params: + input: + annotation: + - NotNull + type: String + base58toHex: + annotations: + - NotNull + default: false + type: public static + returnType: String + params: + input: + annotation: + - NotNull + type: String + base64ToByteArray: + annotations: + - NotNull + default: false + type: public static + returnType: "byte[]" + params: + encoded: + annotation: + - NotNull + type: String + base64ToRealString: + annotations: + - NotNull + default: false + type: public static + returnType: String + params: + encoded: + annotation: + - NotNull + type: String + base64toBase58: + annotations: + - NotNull + default: false + type: public static + returnType: String + params: + input: + annotation: + - NotNull + type: String + base64toHex: + annotations: + - NotNull + default: false + type: public static + returnType: String + params: + input: + annotation: + - NotNull + type: String + hexToBase58: + annotations: + - NotNull + default: false + type: public static + returnType: String + params: + input: + annotation: + - NotNull + type: String + hexToBase64: + annotations: + - NotNull + default: false + type: public static + returnType: String + params: + input: + annotation: + - NotNull + type: String + hexToByteArray: + annotations: + - NotNull + default: false + type: public static + returnType: "byte[]" + params: + encoded: + annotation: + - NotNull + type: String + hexToRealString: + annotations: + - NotNull + default: false + type: public static + returnType: String + params: + encoded: + annotation: + - NotNull + type: String + toBase58: + annotations: + - NotNull + default: false + type: public static + returnType: String + params: + bytes: + annotation: + - NotNull + type: "byte[]" + toBase64: + annotations: + - NotNull + default: false + type: public static + returnType: String + params: + bytes: + annotation: + - NotNull + type: "byte[]" + toHex: + annotations: + - NotNull + default: false + type: public static + returnType: String + params: + bytes: + annotation: + - NotNull + type: "byte[]" +net.corda.v5.base.versioning.Version: + annotations: [] + type: public final class + extends: null + implements: [] + interface: false + methods: + equals: + annotations: [] + default: false + type: public + returnType: boolean + params: + obj: + annotation: + - Nullable + type: Object + fromString: + annotations: [] + default: false + type: public static + returnType: net.corda.v5.base.versioning.Version + params: + versionString: + annotation: + - NotNull + type: String + getMajor: + annotations: [] + default: false + type: public + returnType: int + getMinor: + annotations: [] + default: false + type: public + returnType: int + hashCode: + annotations: [] + default: false + type: public + returnType: int + toString: + annotations: + - NotNull + default: false + type: public + returnType: String diff --git a/buildSrc/build.gradle b/buildSrc/build.gradle index f02fe0bed3..422eda9adf 100644 --- a/buildSrc/build.gradle +++ b/buildSrc/build.gradle @@ -12,7 +12,7 @@ def constants = new Properties() file("$rootDir/../gradle.properties").withInputStream { InputStream input -> constants.load(input) } def bndVersion = constants.getProperty('bndVersion') def bndlibVersion = constants.getProperty('bndlibVersion') -def internalPublishVersion = constants.getProperty('internalPublishVersion') +def internalPluginVersion = constants.getProperty('internalPluginVersion') def artifactoryContextUrl = constants.getProperty('artifactoryContextUrl') repositories { @@ -70,7 +70,8 @@ dependencies { implementation "biz.aQute.bnd:biz.aQute.bnd.gradle:$bndVersion" if (System.getenv('CORDA_ARTIFACTORY_USERNAME') != null || project.hasProperty('cordaArtifactoryUsername')) { - implementation "com.r3.internal.gradle.plugins:publish:$internalPublishVersion" + implementation "com.r3.internal.gradle.plugins:publish:$internalPluginVersion" + implementation "com.r3.internal.gradle.plugins:api-scanner:$internalPluginVersion" } } diff --git a/buildSrc/src/main/groovy/corda.api-scanner.gradle b/buildSrc/src/main/groovy/corda.api-scanner.gradle new file mode 100644 index 0000000000..e2966efd4f --- /dev/null +++ b/buildSrc/src/main/groovy/corda.api-scanner.gradle @@ -0,0 +1,4 @@ +// Apply api-scanner +if (System.getenv('CORDA_ARTIFACTORY_USERNAME') != null || project.hasProperty('cordaArtifactoryUsername')) { + project.pluginManager.apply('net.corda.internal.gradle.plugins.api-scanner') +} \ No newline at end of file diff --git a/crypto-extensions/build.gradle b/crypto-extensions/build.gradle index c967245895..41587cd7e6 100644 --- a/crypto-extensions/build.gradle +++ b/crypto-extensions/build.gradle @@ -2,6 +2,7 @@ plugins { id 'corda-api.common-library' id 'corda.common-publishing' id 'corda.java-only' + id 'corda.api-scanner' } description 'Corda Crypto Extensions API' diff --git a/crypto-extensions/src/api/corda-crypto-extensions-5.1.0.yaml b/crypto-extensions/src/api/corda-crypto-extensions-5.1.0.yaml new file mode 100644 index 0000000000..98f7f0b6f3 --- /dev/null +++ b/crypto-extensions/src/api/corda-crypto-extensions-5.1.0.yaml @@ -0,0 +1,163 @@ +net.corda.v5.crypto.extensions.DigestAlgorithm: + annotations: [] + type: public interface + extends: [] + interface: true + methods: + digest: + annotations: + - NotNull + default: false + type: public abstract + returnType: "byte[]" + params: + inputStream: + annotation: + - NotNull + type: java.io.InputStream + getAlgorithm: + annotations: + - NotNull + default: false + type: public abstract + returnType: String + getDigestLength: + annotations: [] + default: false + type: public abstract + returnType: int +net.corda.v5.crypto.extensions.DigestAlgorithmFactory: + annotations: [] + type: public interface + extends: [] + interface: true + methods: + getAlgorithm: + annotations: + - NotNull + default: false + type: public abstract + returnType: String + getInstance: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.crypto.extensions.DigestAlgorithm +net.corda.v5.crypto.extensions.merkle.MerkleTreeHashDigestProvider: + annotations: [] + type: public interface + extends: + - net.corda.v5.crypto.merkle.MerkleTreeHashDigest + interface: true + methods: + leafHash: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.crypto.SecureHash + params: + index: + annotation: [] + type: int + nonce: + annotation: + - Nullable + type: "byte[]" + bytes: + annotation: + - NotNull + type: "byte[]" + leafNonce: + annotations: + - Nullable + default: false + type: public abstract + returnType: "byte[]" + params: + index: + annotation: [] + type: int + nodeHash: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.crypto.SecureHash + params: + depth: + annotation: [] + type: int + left: + annotation: + - NotNull + type: net.corda.v5.crypto.SecureHash + right: + annotation: + - NotNull + type: net.corda.v5.crypto.SecureHash +net.corda.v5.crypto.extensions.merkle.MerkleTreeHashDigestProviderWithSizeProofSupport: + annotations: [] + type: public interface + extends: + - net.corda.v5.crypto.extensions.merkle.MerkleTreeHashDigestProvider + interface: true + methods: + getSizeProof: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.crypto.merkle.MerkleProof + params: + leaves: + annotation: + - NotNull + type: "java.util.List" + leafHash: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.crypto.SecureHash + params: + index: + annotation: [] + type: int + nonce: + annotation: + - Nullable + type: "byte[]" + bytes: + annotation: + - NotNull + type: "byte[]" + leafNonce: + annotations: + - Nullable + default: false + type: public abstract + returnType: "byte[]" + params: + index: + annotation: [] + type: int + nodeHash: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.crypto.SecureHash + params: + depth: + annotation: [] + type: int + left: + annotation: + - NotNull + type: net.corda.v5.crypto.SecureHash + right: + annotation: + - NotNull + type: net.corda.v5.crypto.SecureHash diff --git a/crypto/build.gradle b/crypto/build.gradle index 7063d8c3d8..ec911decc4 100644 --- a/crypto/build.gradle +++ b/crypto/build.gradle @@ -2,6 +2,7 @@ plugins { id 'corda-api.common-library' id 'corda.common-publishing' id 'corda.java-only' + id 'corda.api-scanner' } description 'Corda Crypto' diff --git a/crypto/src/api/corda-crypto-5.1.0.yaml b/crypto/src/api/corda-crypto-5.1.0.yaml new file mode 100644 index 0000000000..430c542388 --- /dev/null +++ b/crypto/src/api/corda-crypto-5.1.0.yaml @@ -0,0 +1,563 @@ +net.corda.v5.crypto.CompositeKey: + annotations: [] + type: public interface + extends: + - java.security.PublicKey + interface: true + methods: + checkValidity: + annotations: [] + default: false + type: public abstract + returnType: void + getLeafKeys: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.util.Set + isFulfilledBy: + annotations: [] + default: false + type: public abstract + returnType: boolean + params: + keysToCheck: + annotation: + - NotNull + type: java.util.Set +net.corda.v5.crypto.CompositeKeyNodeAndWeight: + annotations: [] + type: public final class + extends: null + implements: [] + interface: false + methods: + equals: + annotations: [] + default: false + type: public + returnType: boolean + params: + other: + annotation: [] + type: Object + getNode: + annotations: + - NotNull + default: false + type: public + returnType: java.security.PublicKey + getWeight: + annotations: [] + default: false + type: public + returnType: int + hashCode: + annotations: [] + default: false + type: public + returnType: int + toString: + annotations: + - NotNull + default: false + type: public + returnType: String +net.corda.v5.crypto.CordaOID: + annotations: [] + type: public final class + extends: null + implements: [] + interface: false + methods: {} + fields: + OID_R3_ROOT: + annotation: + - NotNull + type: public static final String + initialised value: 1.3.6.1.4.1.50530 + OID_CORDA_PLATFORM: + annotation: + - NotNull + type: public static final String + initialised value: 1.3.6.1.4.1.50530.1 + OID_X509_EXTENSION_CORDA_ROLE: + annotation: + - NotNull + type: public static final String + initialised value: 1.3.6.1.4.1.50530.1.1 + OID_ALIAS_PRIVATE_KEY: + annotation: + - NotNull + type: public static final String + initialised value: 1.3.6.1.4.1.50530.1.2 + OID_COMPOSITE_KEY: + annotation: + - NotNull + type: public static final String + initialised value: 1.3.6.1.4.1.50530.1.3 + OID_COMPOSITE_SIGNATURE: + annotation: + - NotNull + type: public static final String + initialised value: 1.3.6.1.4.1.50530.1.4 +net.corda.v5.crypto.DigestAlgorithmName: + annotations: + - CordaSerializable + type: public final class + extends: null + implements: [] + interface: false + methods: + equals: + annotations: [] + default: false + type: public + returnType: boolean + params: + other: + annotation: + - Nullable + type: Object + getName: + annotations: + - NotNull + default: false + type: public + returnType: String + hashCode: + annotations: [] + default: false + type: public + returnType: int + toString: + annotations: + - NotNull + default: false + type: public + returnType: String + fields: + SHA2_256: + annotation: + - NotNull + type: public static final net.corda.v5.crypto.DigestAlgorithmName + SHA2_256D: + annotation: + - NotNull + type: public static final net.corda.v5.crypto.DigestAlgorithmName + SHA2_384: + annotation: + - NotNull + type: public static final net.corda.v5.crypto.DigestAlgorithmName + SHA2_512: + annotation: + - NotNull + type: public static final net.corda.v5.crypto.DigestAlgorithmName +net.corda.v5.crypto.DigitalSignature: + annotations: + - CordaSerializable + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: + getBytes: + annotations: + - NotNull + default: false + type: public abstract + returnType: "byte[]" +net.corda.v5.crypto.DigitalSignature$WithKeyId: + annotations: + - CordaSerializable + - DoNotImplement + type: public static interface + extends: + - net.corda.v5.crypto.DigitalSignature + interface: true + methods: + getBy: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.crypto.SecureHash + getBytes: + annotations: + - NotNull + default: false + type: public abstract + returnType: "byte[]" +net.corda.v5.crypto.KeySchemeCodes: + annotations: [] + type: public final class + extends: null + implements: [] + interface: false + methods: {} + fields: + RSA_CODE_NAME: + annotation: + - NotNull + type: public static final String + initialised value: CORDA.RSA + ECDSA_SECP256K1_CODE_NAME: + annotation: + - NotNull + type: public static final String + initialised value: CORDA.ECDSA.SECP256K1 + ECDSA_SECP256R1_CODE_NAME: + annotation: + - NotNull + type: public static final String + initialised value: CORDA.ECDSA.SECP256R1 + EDDSA_ED25519_CODE_NAME: + annotation: + - NotNull + type: public static final String + initialised value: CORDA.EDDSA.ED25519 + X25519_CODE_NAME: + annotation: + - NotNull + type: public static final String + initialised value: CORDA.X25519 + SM2_CODE_NAME: + annotation: + - NotNull + type: public static final String + initialised value: CORDA.SM2 + GOST3410_GOST3411_CODE_NAME: + annotation: + - NotNull + type: public static final String + initialised value: CORDA.GOST3410.GOST3411 + SPHINCS256_CODE_NAME: + annotation: + - NotNull + type: public static final String + initialised value: CORDA.SPHINCS-256 + COMPOSITE_KEY_CODE_NAME: + annotation: + - NotNull + type: public static final String + initialised value: COMPOSITE +net.corda.v5.crypto.KeyUtils: + annotations: [] + type: public final class + extends: null + implements: [] + interface: false + methods: + isKeyFulfilledBy: + annotations: [] + default: false + type: public static + returnType: boolean + params: + key: + annotation: + - NotNull + type: java.security.PublicKey + otherKey: + annotation: + - NotNull + type: java.security.PublicKey + isKeyInSet: + annotations: [] + default: false + type: public static + returnType: boolean + params: + key: + annotation: + - NotNull + type: java.security.PublicKey + otherKeys: + annotation: + - NotNull + type: java.util.Set +net.corda.v5.crypto.MessageAuthenticationCode: + annotations: [] + type: public final class + extends: null + implements: [] + interface: false + methods: {} + fields: + HMAC_SHA256_ALGORITHM: + annotation: + - NotNull + type: public static final String + initialised value: HmacSHA256 + HMAC_SHA512_ALGORITHM: + annotation: + - NotNull + type: public static final String + initialised value: HmacSHA512 +net.corda.v5.crypto.SecureHash: + annotations: + - CordaSerializable + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: + getAlgorithm: + annotations: + - NotNull + default: false + type: public abstract + returnType: String + toHexString: + annotations: + - NotNull + default: false + type: public abstract + returnType: String + toString: + annotations: + - NotNull + default: false + type: public abstract + returnType: String +net.corda.v5.crypto.SignatureSpec: + annotations: + - CordaSerializable + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: + getSignatureName: + annotations: + - NotNull + default: false + type: public abstract + returnType: String +net.corda.v5.crypto.exceptions.CryptoException: + annotations: + - CordaSerializable + type: public class + extends: net.corda.v5.base.exceptions.CordaRuntimeException + implements: [] + interface: false + methods: + isRecoverable: + annotations: [] + default: false + type: public final + returnType: boolean +net.corda.v5.crypto.exceptions.CryptoSignatureException: + annotations: + - CordaSerializable + type: public final class + extends: net.corda.v5.base.exceptions.CordaRuntimeException + implements: [] + interface: false + methods: + isRecoverable: + annotations: [] + default: false + type: public final + returnType: boolean +net.corda.v5.crypto.merkle.HashDigestConstants: + annotations: [] + type: public final class + extends: null + implements: [] + interface: false + methods: {} + fields: + HASH_DIGEST_PROVIDER_DEFAULT_NAME: + annotation: + - NotNull + type: public static final String + initialised value: DefaultHashDigestProvider + HASH_DIGEST_PROVIDER_NONCE_NAME: + annotation: + - NotNull + type: public static final String + initialised value: NonceHashDigestProvider + HASH_DIGEST_PROVIDER_NONCE_VERIFY_NAME: + annotation: + - NotNull + type: public static final String + initialised value: NonceHashDigestProviderVerify + HASH_DIGEST_PROVIDER_NONCE_SIZE_ONLY_VERIFY_NAME: + annotation: + - NotNull + type: public static final String + initialised value: NonceHashDigestProviderSizeOnlyVerify + HASH_DIGEST_PROVIDER_TWEAKABLE_NAME: + annotation: + - NotNull + type: public static final String + initialised value: TweakableHashDigestProvider + HASH_DIGEST_PROVIDER_LEAF_PREFIX_OPTION: + annotation: + - NotNull + type: public static final String + initialised value: leafPrefix + HASH_DIGEST_PROVIDER_NODE_PREFIX_OPTION: + annotation: + - NotNull + type: public static final String + initialised value: nodePrefix + HASH_DIGEST_PROVIDER_ENTROPY_OPTION: + annotation: + - NotNull + type: public static final String + initialised value: entropy +net.corda.v5.crypto.merkle.IndexedMerkleLeaf: + annotations: + - CordaSerializable + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: + getIndex: + annotations: [] + default: false + type: public abstract + returnType: int + getLeafData: + annotations: + - NotNull + default: false + type: public abstract + returnType: "byte[]" + getNonce: + annotations: + - Nullable + default: false + type: public abstract + returnType: "byte[]" +net.corda.v5.crypto.merkle.MerkleProof: + annotations: + - CordaSerializable + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: + calculateRoot: + annotations: [] + default: false + type: public abstract + returnType: net.corda.v5.crypto.SecureHash + params: + digest: + annotation: + - NotNull + type: net.corda.v5.crypto.merkle.MerkleTreeHashDigest + getHashes: + annotations: [] + default: false + type: public abstract + returnType: java.util.List + getLeaves: + annotations: [] + default: false + type: public abstract + returnType: java.util.List + getProofType: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.crypto.merkle.MerkleProofType + getTreeSize: + annotations: [] + default: false + type: public abstract + returnType: int + verify: + annotations: [] + default: false + type: public abstract + returnType: boolean + params: + root: + annotation: + - NotNull + type: net.corda.v5.crypto.SecureHash + digest: + annotation: + - NotNull + type: net.corda.v5.crypto.merkle.MerkleTreeHashDigest +net.corda.v5.crypto.merkle.MerkleProofRebuildFailureException: + annotations: [] + type: public final class + extends: net.corda.v5.base.exceptions.CordaRuntimeException + implements: [] + interface: false + methods: {} +net.corda.v5.crypto.merkle.MerkleProofType: + annotations: + - CordaSerializable + type: public final class + extends: java.lang.Enum + implements: [] + interface: false + methods: + valueOf: + annotations: [] + default: false + type: public static + returnType: net.corda.v5.crypto.merkle.MerkleProofType + params: {} + values: + annotations: [] + default: false + type: public static + returnType: "net.corda.v5.crypto.merkle.MerkleProofType[]" +net.corda.v5.crypto.merkle.MerkleTree: + annotations: + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: + createAuditProof: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.crypto.merkle.MerkleProof + params: + leafIndices: + annotation: + - NotNull + type: java.util.List + getDigest: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.crypto.merkle.MerkleTreeHashDigest + getLeaves: + annotations: + - NotNull + default: false + type: public abstract + returnType: "java.util.List" + getRoot: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.crypto.SecureHash +net.corda.v5.crypto.merkle.MerkleTreeHashDigest: + annotations: [] + type: public interface + extends: [] + interface: true + methods: + getDigestAlgorithmName: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.crypto.DigestAlgorithmName diff --git a/data/avro-schema/build.gradle b/data/avro-schema/build.gradle index e6c6bfd02c..983cebe39f 100644 --- a/data/avro-schema/build.gradle +++ b/data/avro-schema/build.gradle @@ -7,6 +7,7 @@ plugins { id 'corda.common-publishing' id 'corda.java-only' id "com.github.davidmc24.gradle.plugin.avro-base" + id 'corda.api-scanner' } dependencies { diff --git a/data/avro-schema/src/api/corda-avro-schema-5.1.0.yaml b/data/avro-schema/src/api/corda-avro-schema-5.1.0.yaml new file mode 100644 index 0000000000..e59f6bbb39 --- /dev/null +++ b/data/avro-schema/src/api/corda-avro-schema-5.1.0.yaml @@ -0,0 +1,94579 @@ +net.corda.data.AvroEnvelope: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.AvroEnvelope + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getFingerprint: + annotations: [] + default: false + type: public + returnType: net.corda.data.Fingerprint + getFlags: + annotations: [] + default: false + type: public + returnType: int + getMagic: + annotations: [] + default: false + type: public + returnType: net.corda.data.Magic + getPayload: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.AvroEnvelope$Builder + params: + other: + annotation: [] + type: net.corda.data.AvroEnvelope + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setFingerprint: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.Fingerprint + setFlags: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + setMagic: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.Magic + setPayload: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.AvroEnvelope$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.AvroEnvelope + clearFingerprint: + annotations: [] + default: false + type: public + returnType: net.corda.data.AvroEnvelope$Builder + clearFlags: + annotations: [] + default: false + type: public + returnType: net.corda.data.AvroEnvelope$Builder + clearMagic: + annotations: [] + default: false + type: public + returnType: net.corda.data.AvroEnvelope$Builder + clearPayload: + annotations: [] + default: false + type: public + returnType: net.corda.data.AvroEnvelope$Builder + getFingerprint: + annotations: [] + default: false + type: public + returnType: net.corda.data.Fingerprint + getFlags: + annotations: [] + default: false + type: public + returnType: int + getMagic: + annotations: [] + default: false + type: public + returnType: net.corda.data.Magic + getPayload: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + hasFingerprint: + annotations: [] + default: false + type: public + returnType: boolean + hasFlags: + annotations: [] + default: false + type: public + returnType: boolean + hasMagic: + annotations: [] + default: false + type: public + returnType: boolean + hasPayload: + annotations: [] + default: false + type: public + returnType: boolean + setFingerprint: + annotations: [] + default: false + type: public + returnType: net.corda.data.AvroEnvelope$Builder + params: + value: + annotation: [] + type: net.corda.data.Fingerprint + setFlags: + annotations: [] + default: false + type: public + returnType: net.corda.data.AvroEnvelope$Builder + params: + value: + annotation: [] + type: int + setMagic: + annotations: [] + default: false + type: public + returnType: net.corda.data.AvroEnvelope$Builder + params: + value: + annotation: [] + type: net.corda.data.Magic + setPayload: + annotations: [] + default: false + type: public + returnType: net.corda.data.AvroEnvelope$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer +net.corda.data.AvroGeneratedMessageClasses: + annotations: [] + type: public final class + extends: null + implements: [] + interface: false + methods: + getAvroGeneratedMessageClasses: + annotations: + - NotNull + default: false + type: public static + returnType: java.util.Set> +net.corda.data.ExceptionEnvelope: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ExceptionEnvelope + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getErrorMessage: + annotations: [] + default: false + type: public + returnType: String + getErrorType: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ExceptionEnvelope$Builder + params: + other: + annotation: [] + type: net.corda.data.ExceptionEnvelope + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setErrorMessage: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setErrorType: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.ExceptionEnvelope$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.ExceptionEnvelope + clearErrorMessage: + annotations: [] + default: false + type: public + returnType: net.corda.data.ExceptionEnvelope$Builder + clearErrorType: + annotations: [] + default: false + type: public + returnType: net.corda.data.ExceptionEnvelope$Builder + getErrorMessage: + annotations: [] + default: false + type: public + returnType: String + getErrorType: + annotations: [] + default: false + type: public + returnType: String + hasErrorMessage: + annotations: [] + default: false + type: public + returnType: boolean + hasErrorType: + annotations: [] + default: false + type: public + returnType: boolean + setErrorMessage: + annotations: [] + default: false + type: public + returnType: net.corda.data.ExceptionEnvelope$Builder + params: + value: + annotation: [] + type: String + setErrorType: + annotations: [] + default: false + type: public + returnType: net.corda.data.ExceptionEnvelope$Builder + params: + value: + annotation: [] + type: String +net.corda.data.Fingerprint: + annotations: + - AvroGenerated + - FixedSize + type: public class + extends: org.apache.avro.specific.SpecificFixed + implements: [] + interface: false + methods: + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.KeyValuePair: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.KeyValuePair + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getKey: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getValue: + annotations: [] + default: false + type: public + returnType: String + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.KeyValuePair$Builder + params: + other: + annotation: [] + type: net.corda.data.KeyValuePair + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setKey: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setValue: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.KeyValuePair$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePair + clearKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePair$Builder + clearValue: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePair$Builder + getKey: + annotations: [] + default: false + type: public + returnType: String + getValue: + annotations: [] + default: false + type: public + returnType: String + hasKey: + annotations: [] + default: false + type: public + returnType: boolean + hasValue: + annotations: [] + default: false + type: public + returnType: boolean + setKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePair$Builder + params: + value: + annotation: [] + type: String + setValue: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePair$Builder + params: + value: + annotation: [] + type: String +net.corda.data.KeyValuePairList: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.KeyValuePairList + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getItems: + annotations: [] + default: false + type: public + returnType: java.util.List + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.KeyValuePairList$Builder + params: + other: + annotation: [] + type: net.corda.data.KeyValuePairList + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setItems: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.KeyValuePairList$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + clearItems: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList$Builder + getItems: + annotations: [] + default: false + type: public + returnType: java.util.List + hasItems: + annotations: [] + default: false + type: public + returnType: boolean + setItems: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList$Builder + params: + value: + annotation: [] + type: java.util.List +net.corda.data.Magic: + annotations: + - AvroGenerated + - FixedSize + type: public class + extends: org.apache.avro.specific.SpecificFixed + implements: [] + interface: false + methods: + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.SchemaLoadException: + annotations: [] + type: public final class + extends: net.corda.v5.base.exceptions.CordaRuntimeException + implements: [] + interface: false + methods: {} +net.corda.data.certificates.CertificateUsage: + annotations: + - AvroGenerated + type: public final class + extends: java.lang.Enum + implements: + - org.apache.avro.generic.GenericEnumSymbol + interface: false + methods: + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + valueOf: + annotations: [] + default: false + type: public static + returnType: net.corda.data.certificates.CertificateUsage + params: {} + values: + annotations: [] + default: false + type: public static + returnType: "net.corda.data.certificates.CertificateUsage[]" + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.certificates.rpc.request.CertificateRpcRequest: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.certificates.rpc.request.CertificateRpcRequest + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getHoldingIdentity: + annotations: [] + default: false + type: public + returnType: String + getRequest: + annotations: [] + default: false + type: public + returnType: Object + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getUsage: + annotations: [] + default: false + type: public + returnType: net.corda.data.certificates.CertificateUsage + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.certificates.rpc.request.CertificateRpcRequest$Builder + params: + other: + annotation: [] + type: net.corda.data.certificates.rpc.request.CertificateRpcRequest + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setHoldingIdentity: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setRequest: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Object + setUsage: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.certificates.CertificateUsage + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.certificates.rpc.request.CertificateRpcRequest$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.certificates.rpc.request.CertificateRpcRequest + clearHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.certificates.rpc.request.CertificateRpcRequest$Builder + clearRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.certificates.rpc.request.CertificateRpcRequest$Builder + clearUsage: + annotations: [] + default: false + type: public + returnType: net.corda.data.certificates.rpc.request.CertificateRpcRequest$Builder + getHoldingIdentity: + annotations: [] + default: false + type: public + returnType: String + getRequest: + annotations: [] + default: false + type: public + returnType: Object + getUsage: + annotations: [] + default: false + type: public + returnType: net.corda.data.certificates.CertificateUsage + hasHoldingIdentity: + annotations: [] + default: false + type: public + returnType: boolean + hasRequest: + annotations: [] + default: false + type: public + returnType: boolean + hasUsage: + annotations: [] + default: false + type: public + returnType: boolean + setHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.certificates.rpc.request.CertificateRpcRequest$Builder + params: + value: + annotation: [] + type: String + setRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.certificates.rpc.request.CertificateRpcRequest$Builder + params: + value: + annotation: [] + type: Object + setUsage: + annotations: [] + default: false + type: public + returnType: net.corda.data.certificates.rpc.request.CertificateRpcRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.certificates.CertificateUsage +net.corda.data.certificates.rpc.request.ImportCertificateRpcRequest: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.certificates.rpc.request.ImportCertificateRpcRequest + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getAlias: + annotations: [] + default: false + type: public + returnType: String + getCertificates: + annotations: [] + default: false + type: public + returnType: String + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.certificates.rpc.request.ImportCertificateRpcRequest$Builder + params: + other: + annotation: [] + type: net.corda.data.certificates.rpc.request.ImportCertificateRpcRequest + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setAlias: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setCertificates: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.certificates.rpc.request.ImportCertificateRpcRequest$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.certificates.rpc.request.ImportCertificateRpcRequest + clearAlias: + annotations: [] + default: false + type: public + returnType: net.corda.data.certificates.rpc.request.ImportCertificateRpcRequest$Builder + clearCertificates: + annotations: [] + default: false + type: public + returnType: net.corda.data.certificates.rpc.request.ImportCertificateRpcRequest$Builder + getAlias: + annotations: [] + default: false + type: public + returnType: String + getCertificates: + annotations: [] + default: false + type: public + returnType: String + hasAlias: + annotations: [] + default: false + type: public + returnType: boolean + hasCertificates: + annotations: [] + default: false + type: public + returnType: boolean + setAlias: + annotations: [] + default: false + type: public + returnType: net.corda.data.certificates.rpc.request.ImportCertificateRpcRequest$Builder + params: + value: + annotation: [] + type: String + setCertificates: + annotations: [] + default: false + type: public + returnType: net.corda.data.certificates.rpc.request.ImportCertificateRpcRequest$Builder + params: + value: + annotation: [] + type: String +net.corda.data.certificates.rpc.request.ListCertificateAliasesRpcRequest: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.certificates.rpc.request.ListCertificateAliasesRpcRequest + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.certificates.rpc.request.ListCertificateAliasesRpcRequest$Builder + params: + other: + annotation: [] + type: net.corda.data.certificates.rpc.request.ListCertificateAliasesRpcRequest + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.certificates.rpc.request.ListCertificateAliasesRpcRequest$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.certificates.rpc.request.ListCertificateAliasesRpcRequest +net.corda.data.certificates.rpc.request.RetrieveCertificateRpcRequest: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.certificates.rpc.request.RetrieveCertificateRpcRequest + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getAlias: + annotations: [] + default: false + type: public + returnType: String + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.certificates.rpc.request.RetrieveCertificateRpcRequest$Builder + params: + other: + annotation: [] + type: net.corda.data.certificates.rpc.request.RetrieveCertificateRpcRequest + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setAlias: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.certificates.rpc.request.RetrieveCertificateRpcRequest$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.certificates.rpc.request.RetrieveCertificateRpcRequest + clearAlias: + annotations: [] + default: false + type: public + returnType: net.corda.data.certificates.rpc.request.RetrieveCertificateRpcRequest$Builder + getAlias: + annotations: [] + default: false + type: public + returnType: String + hasAlias: + annotations: [] + default: false + type: public + returnType: boolean + setAlias: + annotations: [] + default: false + type: public + returnType: net.corda.data.certificates.rpc.request.RetrieveCertificateRpcRequest$Builder + params: + value: + annotation: [] + type: String +net.corda.data.certificates.rpc.response.CertificateImportedRpcResponse: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.certificates.rpc.response.CertificateImportedRpcResponse + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.certificates.rpc.response.CertificateImportedRpcResponse$Builder + params: + other: + annotation: [] + type: net.corda.data.certificates.rpc.response.CertificateImportedRpcResponse + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.certificates.rpc.response.CertificateImportedRpcResponse$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.certificates.rpc.response.CertificateImportedRpcResponse +net.corda.data.certificates.rpc.response.CertificateRetrievalRpcResponse: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.certificates.rpc.response.CertificateRetrievalRpcResponse + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getCertificates: + annotations: [] + default: false + type: public + returnType: String + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.certificates.rpc.response.CertificateRetrievalRpcResponse$Builder + params: + other: + annotation: [] + type: net.corda.data.certificates.rpc.response.CertificateRetrievalRpcResponse + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setCertificates: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.certificates.rpc.response.CertificateRetrievalRpcResponse$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.certificates.rpc.response.CertificateRetrievalRpcResponse + clearCertificates: + annotations: [] + default: false + type: public + returnType: net.corda.data.certificates.rpc.response.CertificateRetrievalRpcResponse$Builder + getCertificates: + annotations: [] + default: false + type: public + returnType: String + hasCertificates: + annotations: [] + default: false + type: public + returnType: boolean + setCertificates: + annotations: [] + default: false + type: public + returnType: net.corda.data.certificates.rpc.response.CertificateRetrievalRpcResponse$Builder + params: + value: + annotation: [] + type: String +net.corda.data.certificates.rpc.response.CertificateRpcResponse: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.certificates.rpc.response.CertificateRpcResponse + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getResponse: + annotations: [] + default: false + type: public + returnType: Object + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.certificates.rpc.response.CertificateRpcResponse$Builder + params: + other: + annotation: [] + type: net.corda.data.certificates.rpc.response.CertificateRpcResponse + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setResponse: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Object + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.certificates.rpc.response.CertificateRpcResponse$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.certificates.rpc.response.CertificateRpcResponse + clearResponse: + annotations: [] + default: false + type: public + returnType: net.corda.data.certificates.rpc.response.CertificateRpcResponse$Builder + getResponse: + annotations: [] + default: false + type: public + returnType: Object + hasResponse: + annotations: [] + default: false + type: public + returnType: boolean + setResponse: + annotations: [] + default: false + type: public + returnType: net.corda.data.certificates.rpc.response.CertificateRpcResponse$Builder + params: + value: + annotation: [] + type: Object +net.corda.data.certificates.rpc.response.ListCertificateAliasRpcResponse: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.certificates.rpc.response.ListCertificateAliasRpcResponse + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getAliases: + annotations: [] + default: false + type: public + returnType: java.util.List + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.certificates.rpc.response.ListCertificateAliasRpcResponse$Builder + params: + other: + annotation: [] + type: net.corda.data.certificates.rpc.response.ListCertificateAliasRpcResponse + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setAliases: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.certificates.rpc.response.ListCertificateAliasRpcResponse$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.certificates.rpc.response.ListCertificateAliasRpcResponse + clearAliases: + annotations: [] + default: false + type: public + returnType: net.corda.data.certificates.rpc.response.ListCertificateAliasRpcResponse$Builder + getAliases: + annotations: [] + default: false + type: public + returnType: java.util.List + hasAliases: + annotations: [] + default: false + type: public + returnType: boolean + setAliases: + annotations: [] + default: false + type: public + returnType: net.corda.data.certificates.rpc.response.ListCertificateAliasRpcResponse$Builder + params: + value: + annotation: [] + type: java.util.List +net.corda.data.chunking.Chunk: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.chunking.Chunk + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getChecksum: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.SecureHash + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getData: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getOffset: + annotations: [] + default: false + type: public + returnType: long + getPartNumber: + annotations: [] + default: false + type: public + returnType: int + getProperties: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getRequestId: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.chunking.Chunk$Builder + params: + other: + annotation: [] + type: net.corda.data.chunking.Chunk + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setChecksum: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.crypto.SecureHash + setData: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setOffset: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: long + setPartNumber: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + setProperties: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setRequestId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.chunking.Chunk$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.chunking.Chunk + clearChecksum: + annotations: [] + default: false + type: public + returnType: net.corda.data.chunking.Chunk$Builder + clearData: + annotations: [] + default: false + type: public + returnType: net.corda.data.chunking.Chunk$Builder + clearOffset: + annotations: [] + default: false + type: public + returnType: net.corda.data.chunking.Chunk$Builder + clearPartNumber: + annotations: [] + default: false + type: public + returnType: net.corda.data.chunking.Chunk$Builder + clearProperties: + annotations: [] + default: false + type: public + returnType: net.corda.data.chunking.Chunk$Builder + clearRequestId: + annotations: [] + default: false + type: public + returnType: net.corda.data.chunking.Chunk$Builder + getChecksum: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.SecureHash + getChecksumBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.SecureHash$Builder + getData: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getOffset: + annotations: [] + default: false + type: public + returnType: long + getPartNumber: + annotations: [] + default: false + type: public + returnType: int + getProperties: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getPropertiesBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList$Builder + getRequestId: + annotations: [] + default: false + type: public + returnType: String + hasChecksum: + annotations: [] + default: false + type: public + returnType: boolean + hasChecksumBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasData: + annotations: [] + default: false + type: public + returnType: boolean + hasOffset: + annotations: [] + default: false + type: public + returnType: boolean + hasPartNumber: + annotations: [] + default: false + type: public + returnType: boolean + hasProperties: + annotations: [] + default: false + type: public + returnType: boolean + hasPropertiesBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasRequestId: + annotations: [] + default: false + type: public + returnType: boolean + setChecksum: + annotations: [] + default: false + type: public + returnType: net.corda.data.chunking.Chunk$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.SecureHash + setChecksumBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.chunking.Chunk$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.SecureHash$Builder + setData: + annotations: [] + default: false + type: public + returnType: net.corda.data.chunking.Chunk$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setOffset: + annotations: [] + default: false + type: public + returnType: net.corda.data.chunking.Chunk$Builder + params: + value: + annotation: [] + type: long + setPartNumber: + annotations: [] + default: false + type: public + returnType: net.corda.data.chunking.Chunk$Builder + params: + value: + annotation: [] + type: int + setProperties: + annotations: [] + default: false + type: public + returnType: net.corda.data.chunking.Chunk$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setPropertiesBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.chunking.Chunk$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList$Builder + setRequestId: + annotations: [] + default: false + type: public + returnType: net.corda.data.chunking.Chunk$Builder + params: + value: + annotation: [] + type: String +net.corda.data.chunking.ChunkKey: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.chunking.ChunkKey + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getPartNumber: + annotations: [] + default: false + type: public + returnType: int + getRealKey: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.chunking.ChunkKey$Builder + params: + other: + annotation: [] + type: net.corda.data.chunking.ChunkKey + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setPartNumber: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + setRealKey: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.chunking.ChunkKey$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.chunking.ChunkKey + clearPartNumber: + annotations: [] + default: false + type: public + returnType: net.corda.data.chunking.ChunkKey$Builder + clearRealKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.chunking.ChunkKey$Builder + getPartNumber: + annotations: [] + default: false + type: public + returnType: int + getRealKey: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + hasPartNumber: + annotations: [] + default: false + type: public + returnType: boolean + hasRealKey: + annotations: [] + default: false + type: public + returnType: boolean + setPartNumber: + annotations: [] + default: false + type: public + returnType: net.corda.data.chunking.ChunkKey$Builder + params: + value: + annotation: [] + type: int + setRealKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.chunking.ChunkKey$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer +net.corda.data.chunking.CpkChunkId: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.chunking.CpkChunkId + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getCpkChecksum: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.SecureHash + getCpkChunkPartNumber: + annotations: [] + default: false + type: public + returnType: int + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.chunking.CpkChunkId$Builder + params: + other: + annotation: [] + type: net.corda.data.chunking.CpkChunkId + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setCpkChecksum: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.crypto.SecureHash + setCpkChunkPartNumber: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.chunking.CpkChunkId$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.chunking.CpkChunkId + clearCpkChecksum: + annotations: [] + default: false + type: public + returnType: net.corda.data.chunking.CpkChunkId$Builder + clearCpkChunkPartNumber: + annotations: [] + default: false + type: public + returnType: net.corda.data.chunking.CpkChunkId$Builder + getCpkChecksum: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.SecureHash + getCpkChecksumBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.SecureHash$Builder + getCpkChunkPartNumber: + annotations: [] + default: false + type: public + returnType: int + hasCpkChecksum: + annotations: [] + default: false + type: public + returnType: boolean + hasCpkChecksumBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasCpkChunkPartNumber: + annotations: [] + default: false + type: public + returnType: boolean + setCpkChecksum: + annotations: [] + default: false + type: public + returnType: net.corda.data.chunking.CpkChunkId$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.SecureHash + setCpkChecksumBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.chunking.CpkChunkId$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.SecureHash$Builder + setCpkChunkPartNumber: + annotations: [] + default: false + type: public + returnType: net.corda.data.chunking.CpkChunkId$Builder + params: + value: + annotation: [] + type: int +net.corda.data.chunking.PropertyKeys: + annotations: [] + type: public final class + extends: null + implements: [] + interface: false + methods: {} + fields: + FORCE_UPLOAD: + annotation: [] + type: public static final String + initialised value: forceUpload + RESET_DB: + annotation: [] + type: public static final String + initialised value: resetDb + ACTOR: + annotation: [] + type: public static final String + initialised value: actor +net.corda.data.chunking.UploadStatus: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.chunking.UploadStatus + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getChecksum: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.SecureHash + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getComplete: + annotations: [] + default: false + type: public + returnType: boolean + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getException: + annotations: [] + default: false + type: public + returnType: net.corda.data.ExceptionEnvelope + getMessage: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.chunking.UploadStatus$Builder + params: + other: + annotation: [] + type: net.corda.data.chunking.UploadStatus + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setChecksum: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.crypto.SecureHash + setComplete: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: boolean + setException: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.ExceptionEnvelope + setMessage: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.chunking.UploadStatus$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.chunking.UploadStatus + clearChecksum: + annotations: [] + default: false + type: public + returnType: net.corda.data.chunking.UploadStatus$Builder + clearComplete: + annotations: [] + default: false + type: public + returnType: net.corda.data.chunking.UploadStatus$Builder + clearException: + annotations: [] + default: false + type: public + returnType: net.corda.data.chunking.UploadStatus$Builder + clearMessage: + annotations: [] + default: false + type: public + returnType: net.corda.data.chunking.UploadStatus$Builder + getChecksum: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.SecureHash + getChecksumBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.SecureHash$Builder + getComplete: + annotations: [] + default: false + type: public + returnType: boolean + getException: + annotations: [] + default: false + type: public + returnType: net.corda.data.ExceptionEnvelope + getExceptionBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ExceptionEnvelope$Builder + getMessage: + annotations: [] + default: false + type: public + returnType: String + hasChecksum: + annotations: [] + default: false + type: public + returnType: boolean + hasChecksumBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasComplete: + annotations: [] + default: false + type: public + returnType: boolean + hasException: + annotations: [] + default: false + type: public + returnType: boolean + hasExceptionBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasMessage: + annotations: [] + default: false + type: public + returnType: boolean + setChecksum: + annotations: [] + default: false + type: public + returnType: net.corda.data.chunking.UploadStatus$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.SecureHash + setChecksumBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.chunking.UploadStatus$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.SecureHash$Builder + setComplete: + annotations: [] + default: false + type: public + returnType: net.corda.data.chunking.UploadStatus$Builder + params: + value: + annotation: [] + type: boolean + setException: + annotations: [] + default: false + type: public + returnType: net.corda.data.chunking.UploadStatus$Builder + params: + value: + annotation: [] + type: net.corda.data.ExceptionEnvelope + setExceptionBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.chunking.UploadStatus$Builder + params: + value: + annotation: [] + type: net.corda.data.ExceptionEnvelope$Builder + setMessage: + annotations: [] + default: false + type: public + returnType: net.corda.data.chunking.UploadStatus$Builder + params: + value: + annotation: [] + type: String +net.corda.data.chunking.UploadStatusKey: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.chunking.UploadStatusKey + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getRequestId: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSequenceNumber: + annotations: [] + default: false + type: public + returnType: int + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.chunking.UploadStatusKey$Builder + params: + other: + annotation: [] + type: net.corda.data.chunking.UploadStatusKey + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setRequestId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setSequenceNumber: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.chunking.UploadStatusKey$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.chunking.UploadStatusKey + clearRequestId: + annotations: [] + default: false + type: public + returnType: net.corda.data.chunking.UploadStatusKey$Builder + clearSequenceNumber: + annotations: [] + default: false + type: public + returnType: net.corda.data.chunking.UploadStatusKey$Builder + getRequestId: + annotations: [] + default: false + type: public + returnType: String + getSequenceNumber: + annotations: [] + default: false + type: public + returnType: int + hasRequestId: + annotations: [] + default: false + type: public + returnType: boolean + hasSequenceNumber: + annotations: [] + default: false + type: public + returnType: boolean + setRequestId: + annotations: [] + default: false + type: public + returnType: net.corda.data.chunking.UploadStatusKey$Builder + params: + value: + annotation: [] + type: String + setSequenceNumber: + annotations: [] + default: false + type: public + returnType: net.corda.data.chunking.UploadStatusKey$Builder + params: + value: + annotation: [] + type: int +net.corda.data.config.Configuration: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.config.Configuration + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSchemaVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.ConfigurationSchemaVersion + getSource: + annotations: [] + default: false + type: public + returnType: String + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getValue: + annotations: [] + default: false + type: public + returnType: String + getVersion: + annotations: [] + default: false + type: public + returnType: int + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.config.Configuration$Builder + params: + other: + annotation: [] + type: net.corda.data.config.Configuration + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setSchemaVersion: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.config.ConfigurationSchemaVersion + setSource: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setValue: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setVersion: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.config.Configuration$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.Configuration + clearSchemaVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.Configuration$Builder + clearSource: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.Configuration$Builder + clearValue: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.Configuration$Builder + clearVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.Configuration$Builder + getSchemaVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.ConfigurationSchemaVersion + getSchemaVersionBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.ConfigurationSchemaVersion$Builder + getSource: + annotations: [] + default: false + type: public + returnType: String + getValue: + annotations: [] + default: false + type: public + returnType: String + getVersion: + annotations: [] + default: false + type: public + returnType: int + hasSchemaVersion: + annotations: [] + default: false + type: public + returnType: boolean + hasSchemaVersionBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasSource: + annotations: [] + default: false + type: public + returnType: boolean + hasValue: + annotations: [] + default: false + type: public + returnType: boolean + hasVersion: + annotations: [] + default: false + type: public + returnType: boolean + setSchemaVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.Configuration$Builder + params: + value: + annotation: [] + type: net.corda.data.config.ConfigurationSchemaVersion + setSchemaVersionBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.Configuration$Builder + params: + value: + annotation: [] + type: net.corda.data.config.ConfigurationSchemaVersion$Builder + setSource: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.Configuration$Builder + params: + value: + annotation: [] + type: String + setValue: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.Configuration$Builder + params: + value: + annotation: [] + type: String + setVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.Configuration$Builder + params: + value: + annotation: [] + type: int +net.corda.data.config.ConfigurationManagementRequest: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.config.ConfigurationManagementRequest + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConfig: + annotations: [] + default: false + type: public + returnType: String + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSchemaVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.ConfigurationSchemaVersion + getSection: + annotations: [] + default: false + type: public + returnType: String + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getUpdateActor: + annotations: [] + default: false + type: public + returnType: String + getVersion: + annotations: [] + default: false + type: public + returnType: int + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.config.ConfigurationManagementRequest$Builder + params: + other: + annotation: [] + type: net.corda.data.config.ConfigurationManagementRequest + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setConfig: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setSchemaVersion: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.config.ConfigurationSchemaVersion + setSection: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setUpdateActor: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setVersion: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.config.ConfigurationManagementRequest$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.ConfigurationManagementRequest + clearConfig: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.ConfigurationManagementRequest$Builder + clearSchemaVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.ConfigurationManagementRequest$Builder + clearSection: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.ConfigurationManagementRequest$Builder + clearUpdateActor: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.ConfigurationManagementRequest$Builder + clearVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.ConfigurationManagementRequest$Builder + getConfig: + annotations: [] + default: false + type: public + returnType: String + getSchemaVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.ConfigurationSchemaVersion + getSchemaVersionBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.ConfigurationSchemaVersion$Builder + getSection: + annotations: [] + default: false + type: public + returnType: String + getUpdateActor: + annotations: [] + default: false + type: public + returnType: String + getVersion: + annotations: [] + default: false + type: public + returnType: int + hasConfig: + annotations: [] + default: false + type: public + returnType: boolean + hasSchemaVersion: + annotations: [] + default: false + type: public + returnType: boolean + hasSchemaVersionBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasSection: + annotations: [] + default: false + type: public + returnType: boolean + hasUpdateActor: + annotations: [] + default: false + type: public + returnType: boolean + hasVersion: + annotations: [] + default: false + type: public + returnType: boolean + setConfig: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.ConfigurationManagementRequest$Builder + params: + value: + annotation: [] + type: String + setSchemaVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.ConfigurationManagementRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.config.ConfigurationSchemaVersion + setSchemaVersionBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.ConfigurationManagementRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.config.ConfigurationSchemaVersion$Builder + setSection: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.ConfigurationManagementRequest$Builder + params: + value: + annotation: [] + type: String + setUpdateActor: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.ConfigurationManagementRequest$Builder + params: + value: + annotation: [] + type: String + setVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.ConfigurationManagementRequest$Builder + params: + value: + annotation: [] + type: int +net.corda.data.config.ConfigurationManagementResponse: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.config.ConfigurationManagementResponse + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConfig: + annotations: [] + default: false + type: public + returnType: String + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getException: + annotations: [] + default: false + type: public + returnType: net.corda.data.ExceptionEnvelope + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSchemaVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.ConfigurationSchemaVersion + getSection: + annotations: [] + default: false + type: public + returnType: String + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getSuccess: + annotations: [] + default: false + type: public + returnType: boolean + getVersion: + annotations: [] + default: false + type: public + returnType: int + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.config.ConfigurationManagementResponse$Builder + params: + other: + annotation: [] + type: net.corda.data.config.ConfigurationManagementResponse + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setConfig: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setException: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.ExceptionEnvelope + setSchemaVersion: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.config.ConfigurationSchemaVersion + setSection: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setSuccess: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: boolean + setVersion: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.config.ConfigurationManagementResponse$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.ConfigurationManagementResponse + clearConfig: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.ConfigurationManagementResponse$Builder + clearException: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.ConfigurationManagementResponse$Builder + clearSchemaVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.ConfigurationManagementResponse$Builder + clearSection: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.ConfigurationManagementResponse$Builder + clearSuccess: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.ConfigurationManagementResponse$Builder + clearVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.ConfigurationManagementResponse$Builder + getConfig: + annotations: [] + default: false + type: public + returnType: String + getException: + annotations: [] + default: false + type: public + returnType: net.corda.data.ExceptionEnvelope + getExceptionBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ExceptionEnvelope$Builder + getSchemaVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.ConfigurationSchemaVersion + getSchemaVersionBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.ConfigurationSchemaVersion$Builder + getSection: + annotations: [] + default: false + type: public + returnType: String + getSuccess: + annotations: [] + default: false + type: public + returnType: boolean + getVersion: + annotations: [] + default: false + type: public + returnType: int + hasConfig: + annotations: [] + default: false + type: public + returnType: boolean + hasException: + annotations: [] + default: false + type: public + returnType: boolean + hasExceptionBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasSchemaVersion: + annotations: [] + default: false + type: public + returnType: boolean + hasSchemaVersionBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasSection: + annotations: [] + default: false + type: public + returnType: boolean + hasSuccess: + annotations: [] + default: false + type: public + returnType: boolean + hasVersion: + annotations: [] + default: false + type: public + returnType: boolean + setConfig: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.ConfigurationManagementResponse$Builder + params: + value: + annotation: [] + type: String + setException: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.ConfigurationManagementResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.ExceptionEnvelope + setExceptionBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.ConfigurationManagementResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.ExceptionEnvelope$Builder + setSchemaVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.ConfigurationManagementResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.config.ConfigurationSchemaVersion + setSchemaVersionBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.ConfigurationManagementResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.config.ConfigurationSchemaVersion$Builder + setSection: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.ConfigurationManagementResponse$Builder + params: + value: + annotation: [] + type: String + setSuccess: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.ConfigurationManagementResponse$Builder + params: + value: + annotation: [] + type: boolean + setVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.ConfigurationManagementResponse$Builder + params: + value: + annotation: [] + type: int +net.corda.data.config.ConfigurationSchemaVersion: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.config.ConfigurationSchemaVersion + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getMajorVersion: + annotations: [] + default: false + type: public + returnType: int + getMinorVersion: + annotations: [] + default: false + type: public + returnType: int + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.config.ConfigurationSchemaVersion$Builder + params: + other: + annotation: [] + type: net.corda.data.config.ConfigurationSchemaVersion + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setMajorVersion: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + setMinorVersion: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.config.ConfigurationSchemaVersion$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.ConfigurationSchemaVersion + clearMajorVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.ConfigurationSchemaVersion$Builder + clearMinorVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.ConfigurationSchemaVersion$Builder + getMajorVersion: + annotations: [] + default: false + type: public + returnType: int + getMinorVersion: + annotations: [] + default: false + type: public + returnType: int + hasMajorVersion: + annotations: [] + default: false + type: public + returnType: boolean + hasMinorVersion: + annotations: [] + default: false + type: public + returnType: boolean + setMajorVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.ConfigurationSchemaVersion$Builder + params: + value: + annotation: [] + type: int + setMinorVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.config.ConfigurationSchemaVersion$Builder + params: + value: + annotation: [] + type: int +net.corda.data.crypto.SecureHash: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.SecureHash + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getAlgorithm: + annotations: [] + default: false + type: public + returnType: String + getBytes: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.SecureHash$Builder + params: + other: + annotation: [] + type: net.corda.data.crypto.SecureHash + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setAlgorithm: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setBytes: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.crypto.SecureHash$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.SecureHash + clearAlgorithm: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.SecureHash$Builder + clearBytes: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.SecureHash$Builder + getAlgorithm: + annotations: [] + default: false + type: public + returnType: String + getBytes: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + hasAlgorithm: + annotations: [] + default: false + type: public + returnType: boolean + hasBytes: + annotations: [] + default: false + type: public + returnType: boolean + setAlgorithm: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.SecureHash$Builder + params: + value: + annotation: [] + type: String + setBytes: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.SecureHash$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer +net.corda.data.crypto.SecureHashes: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.SecureHashes + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getHashes: + annotations: [] + default: false + type: public + returnType: java.util.List + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.SecureHashes$Builder + params: + other: + annotation: [] + type: net.corda.data.crypto.SecureHashes + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setHashes: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.crypto.SecureHashes$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.SecureHashes + clearHashes: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.SecureHashes$Builder + getHashes: + annotations: [] + default: false + type: public + returnType: java.util.List + hasHashes: + annotations: [] + default: false + type: public + returnType: boolean + setHashes: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.SecureHashes$Builder + params: + value: + annotation: [] + type: java.util.List +net.corda.data.crypto.ShortHashes: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.ShortHashes + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getHashes: + annotations: [] + default: false + type: public + returnType: java.util.List + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.ShortHashes$Builder + params: + other: + annotation: [] + type: net.corda.data.crypto.ShortHashes + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setHashes: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.crypto.ShortHashes$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.ShortHashes + clearHashes: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.ShortHashes$Builder + getHashes: + annotations: [] + default: false + type: public + returnType: java.util.List + hasHashes: + annotations: [] + default: false + type: public + returnType: boolean + setHashes: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.ShortHashes$Builder + params: + value: + annotation: [] + type: java.util.List +net.corda.data.crypto.wire.CryptoDerivedSharedSecret: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.CryptoDerivedSharedSecret + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSecret: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.CryptoDerivedSharedSecret$Builder + params: + other: + annotation: [] + type: net.corda.data.crypto.wire.CryptoDerivedSharedSecret + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setSecret: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.crypto.wire.CryptoDerivedSharedSecret$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoDerivedSharedSecret + clearSecret: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoDerivedSharedSecret$Builder + getSecret: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + hasSecret: + annotations: [] + default: false + type: public + returnType: boolean + setSecret: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoDerivedSharedSecret$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer +net.corda.data.crypto.wire.CryptoKeySchemes: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.CryptoKeySchemes + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getCodes: + annotations: [] + default: false + type: public + returnType: java.util.List + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.CryptoKeySchemes$Builder + params: + other: + annotation: [] + type: net.corda.data.crypto.wire.CryptoKeySchemes + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setCodes: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.crypto.wire.CryptoKeySchemes$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoKeySchemes + clearCodes: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoKeySchemes$Builder + getCodes: + annotations: [] + default: false + type: public + returnType: java.util.List + hasCodes: + annotations: [] + default: false + type: public + returnType: boolean + setCodes: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoKeySchemes$Builder + params: + value: + annotation: [] + type: java.util.List +net.corda.data.crypto.wire.CryptoNoContentValue: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.CryptoNoContentValue + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.CryptoNoContentValue$Builder + params: + other: + annotation: [] + type: net.corda.data.crypto.wire.CryptoNoContentValue + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.crypto.wire.CryptoNoContentValue$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoNoContentValue +net.corda.data.crypto.wire.CryptoPublicKey: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.CryptoPublicKey + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getKey: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.CryptoPublicKey$Builder + params: + other: + annotation: [] + type: net.corda.data.crypto.wire.CryptoPublicKey + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setKey: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.crypto.wire.CryptoPublicKey$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoPublicKey + clearKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoPublicKey$Builder + getKey: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + hasKey: + annotations: [] + default: false + type: public + returnType: boolean + setKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoPublicKey$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer +net.corda.data.crypto.wire.CryptoRequestContext: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.CryptoRequestContext + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getOther: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getRequestId: + annotations: [] + default: false + type: public + returnType: String + getRequestTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getRequestingComponent: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getTenantId: + annotations: [] + default: false + type: public + returnType: String + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.CryptoRequestContext$Builder + params: + other: + annotation: [] + type: net.corda.data.crypto.wire.CryptoRequestContext + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setOther: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setRequestId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setRequestTimestamp: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + setRequestingComponent: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setTenantId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.crypto.wire.CryptoRequestContext$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoRequestContext + clearOther: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoRequestContext$Builder + clearRequestId: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoRequestContext$Builder + clearRequestTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoRequestContext$Builder + clearRequestingComponent: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoRequestContext$Builder + clearTenantId: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoRequestContext$Builder + getOther: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getOtherBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList$Builder + getRequestId: + annotations: [] + default: false + type: public + returnType: String + getRequestTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getRequestingComponent: + annotations: [] + default: false + type: public + returnType: String + getTenantId: + annotations: [] + default: false + type: public + returnType: String + hasOther: + annotations: [] + default: false + type: public + returnType: boolean + hasOtherBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasRequestId: + annotations: [] + default: false + type: public + returnType: boolean + hasRequestTimestamp: + annotations: [] + default: false + type: public + returnType: boolean + hasRequestingComponent: + annotations: [] + default: false + type: public + returnType: boolean + hasTenantId: + annotations: [] + default: false + type: public + returnType: boolean + setOther: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoRequestContext$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setOtherBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoRequestContext$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList$Builder + setRequestId: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoRequestContext$Builder + params: + value: + annotation: [] + type: String + setRequestTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoRequestContext$Builder + params: + value: + annotation: [] + type: java.time.Instant + setRequestingComponent: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoRequestContext$Builder + params: + value: + annotation: [] + type: String + setTenantId: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoRequestContext$Builder + params: + value: + annotation: [] + type: String +net.corda.data.crypto.wire.CryptoResponseContext: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.CryptoResponseContext + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getOther: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getRequestId: + annotations: [] + default: false + type: public + returnType: String + getRequestTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getRequestingComponent: + annotations: [] + default: false + type: public + returnType: String + getResponseTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getTenantId: + annotations: [] + default: false + type: public + returnType: String + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.CryptoResponseContext$Builder + params: + other: + annotation: [] + type: net.corda.data.crypto.wire.CryptoResponseContext + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setOther: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setRequestId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setRequestTimestamp: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + setRequestingComponent: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setResponseTimestamp: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + setTenantId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.crypto.wire.CryptoResponseContext$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoResponseContext + clearOther: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoResponseContext$Builder + clearRequestId: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoResponseContext$Builder + clearRequestTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoResponseContext$Builder + clearRequestingComponent: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoResponseContext$Builder + clearResponseTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoResponseContext$Builder + clearTenantId: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoResponseContext$Builder + getOther: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getOtherBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList$Builder + getRequestId: + annotations: [] + default: false + type: public + returnType: String + getRequestTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getRequestingComponent: + annotations: [] + default: false + type: public + returnType: String + getResponseTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getTenantId: + annotations: [] + default: false + type: public + returnType: String + hasOther: + annotations: [] + default: false + type: public + returnType: boolean + hasOtherBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasRequestId: + annotations: [] + default: false + type: public + returnType: boolean + hasRequestTimestamp: + annotations: [] + default: false + type: public + returnType: boolean + hasRequestingComponent: + annotations: [] + default: false + type: public + returnType: boolean + hasResponseTimestamp: + annotations: [] + default: false + type: public + returnType: boolean + hasTenantId: + annotations: [] + default: false + type: public + returnType: boolean + setOther: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoResponseContext$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setOtherBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoResponseContext$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList$Builder + setRequestId: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoResponseContext$Builder + params: + value: + annotation: [] + type: String + setRequestTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoResponseContext$Builder + params: + value: + annotation: [] + type: java.time.Instant + setRequestingComponent: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoResponseContext$Builder + params: + value: + annotation: [] + type: String + setResponseTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoResponseContext$Builder + params: + value: + annotation: [] + type: java.time.Instant + setTenantId: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoResponseContext$Builder + params: + value: + annotation: [] + type: String +net.corda.data.crypto.wire.CryptoSignature: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.CryptoSignature + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getBytes: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.CryptoSignature$Builder + params: + other: + annotation: [] + type: net.corda.data.crypto.wire.CryptoSignature + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setBytes: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.crypto.wire.CryptoSignature$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignature + clearBytes: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignature$Builder + getBytes: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + hasBytes: + annotations: [] + default: false + type: public + returnType: boolean + setBytes: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignature$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer +net.corda.data.crypto.wire.CryptoSignatureParameterSpec: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.CryptoSignatureParameterSpec + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getBytes: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getClassName: + annotations: [] + default: false + type: public + returnType: String + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.CryptoSignatureParameterSpec$Builder + params: + other: + annotation: [] + type: net.corda.data.crypto.wire.CryptoSignatureParameterSpec + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setBytes: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setClassName: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.crypto.wire.CryptoSignatureParameterSpec$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureParameterSpec + clearBytes: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureParameterSpec$Builder + clearClassName: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureParameterSpec$Builder + getBytes: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getClassName: + annotations: [] + default: false + type: public + returnType: String + hasBytes: + annotations: [] + default: false + type: public + returnType: boolean + hasClassName: + annotations: [] + default: false + type: public + returnType: boolean + setBytes: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureParameterSpec$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setClassName: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureParameterSpec$Builder + params: + value: + annotation: [] + type: String +net.corda.data.crypto.wire.CryptoSignatureSpec: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.CryptoSignatureSpec + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getCustomDigestName: + annotations: [] + default: false + type: public + returnType: String + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getParams: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureParameterSpec + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSignatureName: + annotations: [] + default: false + type: public + returnType: String + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.CryptoSignatureSpec$Builder + params: + other: + annotation: [] + type: net.corda.data.crypto.wire.CryptoSignatureSpec + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setCustomDigestName: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setParams: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoSignatureParameterSpec + setSignatureName: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.crypto.wire.CryptoSignatureSpec$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureSpec + clearCustomDigestName: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureSpec$Builder + clearParams: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureSpec$Builder + clearSignatureName: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureSpec$Builder + getCustomDigestName: + annotations: [] + default: false + type: public + returnType: String + getParams: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureParameterSpec + getParamsBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureParameterSpec$Builder + getSignatureName: + annotations: [] + default: false + type: public + returnType: String + hasCustomDigestName: + annotations: [] + default: false + type: public + returnType: boolean + hasParams: + annotations: [] + default: false + type: public + returnType: boolean + hasParamsBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasSignatureName: + annotations: [] + default: false + type: public + returnType: boolean + setCustomDigestName: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureSpec$Builder + params: + value: + annotation: [] + type: String + setParams: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureSpec$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoSignatureParameterSpec + setParamsBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureSpec$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoSignatureParameterSpec$Builder + setSignatureName: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureSpec$Builder + params: + value: + annotation: [] + type: String +net.corda.data.crypto.wire.CryptoSignatureWithKey: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.CryptoSignatureWithKey + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getBytes: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getPublicKey: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.CryptoSignatureWithKey$Builder + params: + other: + annotation: [] + type: net.corda.data.crypto.wire.CryptoSignatureWithKey + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setBytes: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setPublicKey: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.crypto.wire.CryptoSignatureWithKey$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureWithKey + clearBytes: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureWithKey$Builder + clearPublicKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureWithKey$Builder + getBytes: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getPublicKey: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + hasBytes: + annotations: [] + default: false + type: public + returnType: boolean + hasPublicKey: + annotations: [] + default: false + type: public + returnType: boolean + setBytes: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureWithKey$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setPublicKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureWithKey$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer +net.corda.data.crypto.wire.CryptoSigningKey: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.CryptoSigningKey + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getAlias: + annotations: [] + default: false + type: public + returnType: String + getCategory: + annotations: [] + default: false + type: public + returnType: String + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getCreated: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getEncodingVersion: + annotations: [] + default: false + type: public + returnType: Integer + getExternalId: + annotations: [] + default: false + type: public + returnType: String + getHsmAlias: + annotations: [] + default: false + type: public + returnType: String + getId: + annotations: [] + default: false + type: public + returnType: String + getMasterKeyAlias: + annotations: [] + default: false + type: public + returnType: String + getPublicKey: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSchemeCodeName: + annotations: [] + default: false + type: public + returnType: String + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getTenantId: + annotations: [] + default: false + type: public + returnType: String + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.CryptoSigningKey$Builder + params: + other: + annotation: [] + type: net.corda.data.crypto.wire.CryptoSigningKey + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setAlias: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setCategory: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setCreated: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + setEncodingVersion: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Integer + setExternalId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setHsmAlias: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setMasterKeyAlias: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setPublicKey: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setSchemeCodeName: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setTenantId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.crypto.wire.CryptoSigningKey$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSigningKey + clearAlias: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSigningKey$Builder + clearCategory: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSigningKey$Builder + clearCreated: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSigningKey$Builder + clearEncodingVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSigningKey$Builder + clearExternalId: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSigningKey$Builder + clearHsmAlias: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSigningKey$Builder + clearId: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSigningKey$Builder + clearMasterKeyAlias: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSigningKey$Builder + clearPublicKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSigningKey$Builder + clearSchemeCodeName: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSigningKey$Builder + clearTenantId: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSigningKey$Builder + getAlias: + annotations: [] + default: false + type: public + returnType: String + getCategory: + annotations: [] + default: false + type: public + returnType: String + getCreated: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getEncodingVersion: + annotations: [] + default: false + type: public + returnType: Integer + getExternalId: + annotations: [] + default: false + type: public + returnType: String + getHsmAlias: + annotations: [] + default: false + type: public + returnType: String + getId: + annotations: [] + default: false + type: public + returnType: String + getMasterKeyAlias: + annotations: [] + default: false + type: public + returnType: String + getPublicKey: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getSchemeCodeName: + annotations: [] + default: false + type: public + returnType: String + getTenantId: + annotations: [] + default: false + type: public + returnType: String + hasAlias: + annotations: [] + default: false + type: public + returnType: boolean + hasCategory: + annotations: [] + default: false + type: public + returnType: boolean + hasCreated: + annotations: [] + default: false + type: public + returnType: boolean + hasEncodingVersion: + annotations: [] + default: false + type: public + returnType: boolean + hasExternalId: + annotations: [] + default: false + type: public + returnType: boolean + hasHsmAlias: + annotations: [] + default: false + type: public + returnType: boolean + hasId: + annotations: [] + default: false + type: public + returnType: boolean + hasMasterKeyAlias: + annotations: [] + default: false + type: public + returnType: boolean + hasPublicKey: + annotations: [] + default: false + type: public + returnType: boolean + hasSchemeCodeName: + annotations: [] + default: false + type: public + returnType: boolean + hasTenantId: + annotations: [] + default: false + type: public + returnType: boolean + setAlias: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSigningKey$Builder + params: + value: + annotation: [] + type: String + setCategory: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSigningKey$Builder + params: + value: + annotation: [] + type: String + setCreated: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSigningKey$Builder + params: + value: + annotation: [] + type: java.time.Instant + setEncodingVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSigningKey$Builder + params: + value: + annotation: [] + type: Integer + setExternalId: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSigningKey$Builder + params: + value: + annotation: [] + type: String + setHsmAlias: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSigningKey$Builder + params: + value: + annotation: [] + type: String + setId: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSigningKey$Builder + params: + value: + annotation: [] + type: String + setMasterKeyAlias: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSigningKey$Builder + params: + value: + annotation: [] + type: String + setPublicKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSigningKey$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setSchemeCodeName: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSigningKey$Builder + params: + value: + annotation: [] + type: String + setTenantId: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSigningKey$Builder + params: + value: + annotation: [] + type: String +net.corda.data.crypto.wire.CryptoSigningKeys: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.CryptoSigningKeys + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getKeys: + annotations: [] + default: false + type: public + returnType: java.util.List + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.CryptoSigningKeys$Builder + params: + other: + annotation: [] + type: net.corda.data.crypto.wire.CryptoSigningKeys + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setKeys: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.crypto.wire.CryptoSigningKeys$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSigningKeys + clearKeys: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSigningKeys$Builder + getKeys: + annotations: [] + default: false + type: public + returnType: java.util.List + hasKeys: + annotations: [] + default: false + type: public + returnType: boolean + setKeys: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSigningKeys$Builder + params: + value: + annotation: [] + type: java.util.List +net.corda.data.crypto.wire.CryptoStringResult: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.CryptoStringResult + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getValue: + annotations: [] + default: false + type: public + returnType: String + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.CryptoStringResult$Builder + params: + other: + annotation: [] + type: net.corda.data.crypto.wire.CryptoStringResult + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setValue: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.crypto.wire.CryptoStringResult$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoStringResult + clearValue: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoStringResult$Builder + getValue: + annotations: [] + default: false + type: public + returnType: String + hasValue: + annotations: [] + default: false + type: public + returnType: boolean + setValue: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoStringResult$Builder + params: + value: + annotation: [] + type: String +net.corda.data.crypto.wire.hsm.HSMAssociationInfo: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.hsm.HSMAssociationInfo + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getCategory: + annotations: [] + default: false + type: public + returnType: String + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getDeprecatedAt: + annotations: [] + default: false + type: public + returnType: long + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getHsmId: + annotations: [] + default: false + type: public + returnType: String + getId: + annotations: [] + default: false + type: public + returnType: String + getMasterKeyAlias: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getTenantId: + annotations: [] + default: false + type: public + returnType: String + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.hsm.HSMAssociationInfo$Builder + params: + other: + annotation: [] + type: net.corda.data.crypto.wire.hsm.HSMAssociationInfo + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setCategory: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setDeprecatedAt: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: long + setHsmId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setMasterKeyAlias: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setTenantId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.crypto.wire.hsm.HSMAssociationInfo$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.hsm.HSMAssociationInfo + clearCategory: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.hsm.HSMAssociationInfo$Builder + clearDeprecatedAt: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.hsm.HSMAssociationInfo$Builder + clearHsmId: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.hsm.HSMAssociationInfo$Builder + clearId: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.hsm.HSMAssociationInfo$Builder + clearMasterKeyAlias: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.hsm.HSMAssociationInfo$Builder + clearTenantId: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.hsm.HSMAssociationInfo$Builder + getCategory: + annotations: [] + default: false + type: public + returnType: String + getDeprecatedAt: + annotations: [] + default: false + type: public + returnType: long + getHsmId: + annotations: [] + default: false + type: public + returnType: String + getId: + annotations: [] + default: false + type: public + returnType: String + getMasterKeyAlias: + annotations: [] + default: false + type: public + returnType: String + getTenantId: + annotations: [] + default: false + type: public + returnType: String + hasCategory: + annotations: [] + default: false + type: public + returnType: boolean + hasDeprecatedAt: + annotations: [] + default: false + type: public + returnType: boolean + hasHsmId: + annotations: [] + default: false + type: public + returnType: boolean + hasId: + annotations: [] + default: false + type: public + returnType: boolean + hasMasterKeyAlias: + annotations: [] + default: false + type: public + returnType: boolean + hasTenantId: + annotations: [] + default: false + type: public + returnType: boolean + setCategory: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.hsm.HSMAssociationInfo$Builder + params: + value: + annotation: [] + type: String + setDeprecatedAt: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.hsm.HSMAssociationInfo$Builder + params: + value: + annotation: [] + type: long + setHsmId: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.hsm.HSMAssociationInfo$Builder + params: + value: + annotation: [] + type: String + setId: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.hsm.HSMAssociationInfo$Builder + params: + value: + annotation: [] + type: String + setMasterKeyAlias: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.hsm.HSMAssociationInfo$Builder + params: + value: + annotation: [] + type: String + setTenantId: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.hsm.HSMAssociationInfo$Builder + params: + value: + annotation: [] + type: String +net.corda.data.crypto.wire.hsm.registration.HSMRegistrationRequest: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.hsm.registration.HSMRegistrationRequest + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoRequestContext + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getRequest: + annotations: [] + default: false + type: public + returnType: Object + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.hsm.registration.HSMRegistrationRequest$Builder + params: + other: + annotation: [] + type: net.corda.data.crypto.wire.hsm.registration.HSMRegistrationRequest + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setContext: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoRequestContext + setRequest: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Object + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.crypto.wire.hsm.registration.HSMRegistrationRequest$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.hsm.registration.HSMRegistrationRequest + clearContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.hsm.registration.HSMRegistrationRequest$Builder + clearRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.hsm.registration.HSMRegistrationRequest$Builder + getContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoRequestContext + getContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoRequestContext$Builder + getRequest: + annotations: [] + default: false + type: public + returnType: Object + hasContext: + annotations: [] + default: false + type: public + returnType: boolean + hasContextBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasRequest: + annotations: [] + default: false + type: public + returnType: boolean + setContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.hsm.registration.HSMRegistrationRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoRequestContext + setContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.hsm.registration.HSMRegistrationRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoRequestContext$Builder + setRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.hsm.registration.HSMRegistrationRequest$Builder + params: + value: + annotation: [] + type: Object +net.corda.data.crypto.wire.hsm.registration.HSMRegistrationResponse: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.hsm.registration.HSMRegistrationResponse + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoResponseContext + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getResponse: + annotations: [] + default: false + type: public + returnType: Object + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.hsm.registration.HSMRegistrationResponse$Builder + params: + other: + annotation: [] + type: net.corda.data.crypto.wire.hsm.registration.HSMRegistrationResponse + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setContext: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoResponseContext + setResponse: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Object + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.crypto.wire.hsm.registration.HSMRegistrationResponse$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.hsm.registration.HSMRegistrationResponse + clearContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.hsm.registration.HSMRegistrationResponse$Builder + clearResponse: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.hsm.registration.HSMRegistrationResponse$Builder + getContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoResponseContext + getContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoResponseContext$Builder + getResponse: + annotations: [] + default: false + type: public + returnType: Object + hasContext: + annotations: [] + default: false + type: public + returnType: boolean + hasContextBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasResponse: + annotations: [] + default: false + type: public + returnType: boolean + setContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.hsm.registration.HSMRegistrationResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoResponseContext + setContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.hsm.registration.HSMRegistrationResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoResponseContext$Builder + setResponse: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.hsm.registration.HSMRegistrationResponse$Builder + params: + value: + annotation: [] + type: Object +net.corda.data.crypto.wire.hsm.registration.commands.AssignHSMCommand: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.hsm.registration.commands.AssignHSMCommand + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getCategory: + annotations: [] + default: false + type: public + returnType: String + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.hsm.registration.commands.AssignHSMCommand$Builder + params: + other: + annotation: [] + type: net.corda.data.crypto.wire.hsm.registration.commands.AssignHSMCommand + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setCategory: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setContext: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.crypto.wire.hsm.registration.commands.AssignHSMCommand$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.hsm.registration.commands.AssignHSMCommand + clearCategory: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.hsm.registration.commands.AssignHSMCommand$Builder + clearContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.hsm.registration.commands.AssignHSMCommand$Builder + getCategory: + annotations: [] + default: false + type: public + returnType: String + getContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList$Builder + hasCategory: + annotations: [] + default: false + type: public + returnType: boolean + hasContext: + annotations: [] + default: false + type: public + returnType: boolean + hasContextBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setCategory: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.hsm.registration.commands.AssignHSMCommand$Builder + params: + value: + annotation: [] + type: String + setContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.hsm.registration.commands.AssignHSMCommand$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.hsm.registration.commands.AssignHSMCommand$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList$Builder +net.corda.data.crypto.wire.hsm.registration.commands.AssignSoftHSMCommand: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.hsm.registration.commands.AssignSoftHSMCommand + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getCategory: + annotations: [] + default: false + type: public + returnType: String + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.hsm.registration.commands.AssignSoftHSMCommand$Builder + params: + other: + annotation: [] + type: net.corda.data.crypto.wire.hsm.registration.commands.AssignSoftHSMCommand + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setCategory: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.crypto.wire.hsm.registration.commands.AssignSoftHSMCommand$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.hsm.registration.commands.AssignSoftHSMCommand + clearCategory: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.hsm.registration.commands.AssignSoftHSMCommand$Builder + getCategory: + annotations: [] + default: false + type: public + returnType: String + hasCategory: + annotations: [] + default: false + type: public + returnType: boolean + setCategory: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.hsm.registration.commands.AssignSoftHSMCommand$Builder + params: + value: + annotation: [] + type: String +net.corda.data.crypto.wire.hsm.registration.queries.AssignedHSMQuery: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.hsm.registration.queries.AssignedHSMQuery + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getCategory: + annotations: [] + default: false + type: public + returnType: String + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.hsm.registration.queries.AssignedHSMQuery$Builder + params: + other: + annotation: [] + type: net.corda.data.crypto.wire.hsm.registration.queries.AssignedHSMQuery + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setCategory: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.crypto.wire.hsm.registration.queries.AssignedHSMQuery$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.hsm.registration.queries.AssignedHSMQuery + clearCategory: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.hsm.registration.queries.AssignedHSMQuery$Builder + getCategory: + annotations: [] + default: false + type: public + returnType: String + hasCategory: + annotations: [] + default: false + type: public + returnType: boolean + setCategory: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.hsm.registration.queries.AssignedHSMQuery$Builder + params: + value: + annotation: [] + type: String +net.corda.data.crypto.wire.ops.flow.FlowOpsRequest: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.ops.flow.FlowOpsRequest + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoRequestContext + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getFlowExternalEventContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventContext + getRequest: + annotations: [] + default: false + type: public + returnType: Object + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.ops.flow.FlowOpsRequest$Builder + params: + other: + annotation: [] + type: net.corda.data.crypto.wire.ops.flow.FlowOpsRequest + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setContext: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoRequestContext + setFlowExternalEventContext: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.flow.event.external.ExternalEventContext + setRequest: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Object + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.crypto.wire.ops.flow.FlowOpsRequest$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.flow.FlowOpsRequest + clearContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.flow.FlowOpsRequest$Builder + clearFlowExternalEventContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.flow.FlowOpsRequest$Builder + clearRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.flow.FlowOpsRequest$Builder + getContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoRequestContext + getContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoRequestContext$Builder + getFlowExternalEventContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventContext + getFlowExternalEventContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventContext$Builder + getRequest: + annotations: [] + default: false + type: public + returnType: Object + hasContext: + annotations: [] + default: false + type: public + returnType: boolean + hasContextBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasFlowExternalEventContext: + annotations: [] + default: false + type: public + returnType: boolean + hasFlowExternalEventContextBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasRequest: + annotations: [] + default: false + type: public + returnType: boolean + setContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.flow.FlowOpsRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoRequestContext + setContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.flow.FlowOpsRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoRequestContext$Builder + setFlowExternalEventContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.flow.FlowOpsRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.event.external.ExternalEventContext + setFlowExternalEventContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.flow.FlowOpsRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.event.external.ExternalEventContext$Builder + setRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.flow.FlowOpsRequest$Builder + params: + value: + annotation: [] + type: Object +net.corda.data.crypto.wire.ops.flow.FlowOpsResponse: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.ops.flow.FlowOpsResponse + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoResponseContext + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getException: + annotations: [] + default: false + type: public + returnType: net.corda.data.ExceptionEnvelope + getResponse: + annotations: [] + default: false + type: public + returnType: Object + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.ops.flow.FlowOpsResponse$Builder + params: + other: + annotation: [] + type: net.corda.data.crypto.wire.ops.flow.FlowOpsResponse + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setContext: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoResponseContext + setException: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.ExceptionEnvelope + setResponse: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Object + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.crypto.wire.ops.flow.FlowOpsResponse$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.flow.FlowOpsResponse + clearContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.flow.FlowOpsResponse$Builder + clearException: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.flow.FlowOpsResponse$Builder + clearResponse: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.flow.FlowOpsResponse$Builder + getContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoResponseContext + getContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoResponseContext$Builder + getException: + annotations: [] + default: false + type: public + returnType: net.corda.data.ExceptionEnvelope + getExceptionBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ExceptionEnvelope$Builder + getResponse: + annotations: [] + default: false + type: public + returnType: Object + hasContext: + annotations: [] + default: false + type: public + returnType: boolean + hasContextBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasException: + annotations: [] + default: false + type: public + returnType: boolean + hasExceptionBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasResponse: + annotations: [] + default: false + type: public + returnType: boolean + setContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.flow.FlowOpsResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoResponseContext + setContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.flow.FlowOpsResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoResponseContext$Builder + setException: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.flow.FlowOpsResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.ExceptionEnvelope + setExceptionBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.flow.FlowOpsResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.ExceptionEnvelope$Builder + setResponse: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.flow.FlowOpsResponse$Builder + params: + value: + annotation: [] + type: Object +net.corda.data.crypto.wire.ops.flow.commands.GenerateFreshKeyFlowCommand: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.ops.flow.commands.GenerateFreshKeyFlowCommand + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getCategory: + annotations: [] + default: false + type: public + returnType: String + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getExternalId: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSchemeCodeName: + annotations: [] + default: false + type: public + returnType: String + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.ops.flow.commands.GenerateFreshKeyFlowCommand$Builder + params: + other: + annotation: [] + type: net.corda.data.crypto.wire.ops.flow.commands.GenerateFreshKeyFlowCommand + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setCategory: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setContext: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setExternalId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setSchemeCodeName: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.crypto.wire.ops.flow.commands.GenerateFreshKeyFlowCommand$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.flow.commands.GenerateFreshKeyFlowCommand + clearCategory: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.flow.commands.GenerateFreshKeyFlowCommand$Builder + clearContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.flow.commands.GenerateFreshKeyFlowCommand$Builder + clearExternalId: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.flow.commands.GenerateFreshKeyFlowCommand$Builder + clearSchemeCodeName: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.flow.commands.GenerateFreshKeyFlowCommand$Builder + getCategory: + annotations: [] + default: false + type: public + returnType: String + getContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList$Builder + getExternalId: + annotations: [] + default: false + type: public + returnType: String + getSchemeCodeName: + annotations: [] + default: false + type: public + returnType: String + hasCategory: + annotations: [] + default: false + type: public + returnType: boolean + hasContext: + annotations: [] + default: false + type: public + returnType: boolean + hasContextBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasExternalId: + annotations: [] + default: false + type: public + returnType: boolean + hasSchemeCodeName: + annotations: [] + default: false + type: public + returnType: boolean + setCategory: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.flow.commands.GenerateFreshKeyFlowCommand$Builder + params: + value: + annotation: [] + type: String + setContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.flow.commands.GenerateFreshKeyFlowCommand$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.flow.commands.GenerateFreshKeyFlowCommand$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList$Builder + setExternalId: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.flow.commands.GenerateFreshKeyFlowCommand$Builder + params: + value: + annotation: [] + type: String + setSchemeCodeName: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.flow.commands.GenerateFreshKeyFlowCommand$Builder + params: + value: + annotation: [] + type: String +net.corda.data.crypto.wire.ops.flow.commands.SignFlowCommand: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.ops.flow.commands.SignFlowCommand + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getBytes: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getPublicKey: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSignatureSpec: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureSpec + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.ops.flow.commands.SignFlowCommand$Builder + params: + other: + annotation: [] + type: net.corda.data.crypto.wire.ops.flow.commands.SignFlowCommand + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setBytes: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setContext: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setPublicKey: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setSignatureSpec: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoSignatureSpec + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.crypto.wire.ops.flow.commands.SignFlowCommand$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.flow.commands.SignFlowCommand + clearBytes: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.flow.commands.SignFlowCommand$Builder + clearContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.flow.commands.SignFlowCommand$Builder + clearPublicKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.flow.commands.SignFlowCommand$Builder + clearSignatureSpec: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.flow.commands.SignFlowCommand$Builder + getBytes: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList$Builder + getPublicKey: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getSignatureSpec: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureSpec + getSignatureSpecBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureSpec$Builder + hasBytes: + annotations: [] + default: false + type: public + returnType: boolean + hasContext: + annotations: [] + default: false + type: public + returnType: boolean + hasContextBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasPublicKey: + annotations: [] + default: false + type: public + returnType: boolean + hasSignatureSpec: + annotations: [] + default: false + type: public + returnType: boolean + hasSignatureSpecBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setBytes: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.flow.commands.SignFlowCommand$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.flow.commands.SignFlowCommand$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.flow.commands.SignFlowCommand$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList$Builder + setPublicKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.flow.commands.SignFlowCommand$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setSignatureSpec: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.flow.commands.SignFlowCommand$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoSignatureSpec + setSignatureSpecBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.flow.commands.SignFlowCommand$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoSignatureSpec$Builder +net.corda.data.crypto.wire.ops.flow.queries.ByIdsFlowQuery: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.ops.flow.queries.ByIdsFlowQuery + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getFullKeyIds: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.SecureHashes + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.ops.flow.queries.ByIdsFlowQuery$Builder + params: + other: + annotation: [] + type: net.corda.data.crypto.wire.ops.flow.queries.ByIdsFlowQuery + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setFullKeyIds: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.crypto.SecureHashes + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.crypto.wire.ops.flow.queries.ByIdsFlowQuery$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.flow.queries.ByIdsFlowQuery + clearFullKeyIds: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.flow.queries.ByIdsFlowQuery$Builder + getFullKeyIds: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.SecureHashes + getFullKeyIdsBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.SecureHashes$Builder + hasFullKeyIds: + annotations: [] + default: false + type: public + returnType: boolean + hasFullKeyIdsBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setFullKeyIds: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.flow.queries.ByIdsFlowQuery$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.SecureHashes + setFullKeyIdsBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.flow.queries.ByIdsFlowQuery$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.SecureHashes$Builder +net.corda.data.crypto.wire.ops.flow.queries.FilterMyKeysFlowQuery: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.ops.flow.queries.FilterMyKeysFlowQuery + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getKeys: + annotations: [] + default: false + type: public + returnType: java.util.List + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.ops.flow.queries.FilterMyKeysFlowQuery$Builder + params: + other: + annotation: [] + type: net.corda.data.crypto.wire.ops.flow.queries.FilterMyKeysFlowQuery + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setKeys: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.crypto.wire.ops.flow.queries.FilterMyKeysFlowQuery$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.flow.queries.FilterMyKeysFlowQuery + clearKeys: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.flow.queries.FilterMyKeysFlowQuery$Builder + getKeys: + annotations: [] + default: false + type: public + returnType: java.util.List + hasKeys: + annotations: [] + default: false + type: public + returnType: boolean + setKeys: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.flow.queries.FilterMyKeysFlowQuery$Builder + params: + value: + annotation: [] + type: java.util.List +net.corda.data.crypto.wire.ops.rpc.RpcOpsRequest: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.ops.rpc.RpcOpsRequest + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoRequestContext + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getRequest: + annotations: [] + default: false + type: public + returnType: Object + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.ops.rpc.RpcOpsRequest$Builder + params: + other: + annotation: [] + type: net.corda.data.crypto.wire.ops.rpc.RpcOpsRequest + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setContext: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoRequestContext + setRequest: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Object + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.crypto.wire.ops.rpc.RpcOpsRequest$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.RpcOpsRequest + clearContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.RpcOpsRequest$Builder + clearRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.RpcOpsRequest$Builder + getContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoRequestContext + getContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoRequestContext$Builder + getRequest: + annotations: [] + default: false + type: public + returnType: Object + hasContext: + annotations: [] + default: false + type: public + returnType: boolean + hasContextBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasRequest: + annotations: [] + default: false + type: public + returnType: boolean + setContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.RpcOpsRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoRequestContext + setContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.RpcOpsRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoRequestContext$Builder + setRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.RpcOpsRequest$Builder + params: + value: + annotation: [] + type: Object +net.corda.data.crypto.wire.ops.rpc.RpcOpsResponse: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.ops.rpc.RpcOpsResponse + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoResponseContext + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getResponse: + annotations: [] + default: false + type: public + returnType: Object + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.ops.rpc.RpcOpsResponse$Builder + params: + other: + annotation: [] + type: net.corda.data.crypto.wire.ops.rpc.RpcOpsResponse + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setContext: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoResponseContext + setResponse: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Object + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.crypto.wire.ops.rpc.RpcOpsResponse$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.RpcOpsResponse + clearContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.RpcOpsResponse$Builder + clearResponse: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.RpcOpsResponse$Builder + getContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoResponseContext + getContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoResponseContext$Builder + getResponse: + annotations: [] + default: false + type: public + returnType: Object + hasContext: + annotations: [] + default: false + type: public + returnType: boolean + hasContextBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasResponse: + annotations: [] + default: false + type: public + returnType: boolean + setContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.RpcOpsResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoResponseContext + setContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.RpcOpsResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoResponseContext$Builder + setResponse: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.RpcOpsResponse$Builder + params: + value: + annotation: [] + type: Object +net.corda.data.crypto.wire.ops.rpc.commands.DeriveSharedSecretCommand: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.ops.rpc.commands.DeriveSharedSecretCommand + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getOtherPublicKey: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getPublicKey: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.ops.rpc.commands.DeriveSharedSecretCommand$Builder + params: + other: + annotation: [] + type: net.corda.data.crypto.wire.ops.rpc.commands.DeriveSharedSecretCommand + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setContext: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setOtherPublicKey: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setPublicKey: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.crypto.wire.ops.rpc.commands.DeriveSharedSecretCommand$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.DeriveSharedSecretCommand + clearContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.DeriveSharedSecretCommand$Builder + clearOtherPublicKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.DeriveSharedSecretCommand$Builder + clearPublicKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.DeriveSharedSecretCommand$Builder + getContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList$Builder + getOtherPublicKey: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getPublicKey: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + hasContext: + annotations: [] + default: false + type: public + returnType: boolean + hasContextBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasOtherPublicKey: + annotations: [] + default: false + type: public + returnType: boolean + hasPublicKey: + annotations: [] + default: false + type: public + returnType: boolean + setContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.DeriveSharedSecretCommand$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.DeriveSharedSecretCommand$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList$Builder + setOtherPublicKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.DeriveSharedSecretCommand$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setPublicKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.DeriveSharedSecretCommand$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer +net.corda.data.crypto.wire.ops.rpc.commands.GenerateFreshKeyRpcCommand: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateFreshKeyRpcCommand + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getCategory: + annotations: [] + default: false + type: public + returnType: String + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getExternalId: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSchemeCodeName: + annotations: [] + default: false + type: public + returnType: String + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateFreshKeyRpcCommand$Builder + params: + other: + annotation: [] + type: net.corda.data.crypto.wire.ops.rpc.commands.GenerateFreshKeyRpcCommand + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setCategory: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setContext: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setExternalId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setSchemeCodeName: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.crypto.wire.ops.rpc.commands.GenerateFreshKeyRpcCommand$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateFreshKeyRpcCommand + clearCategory: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateFreshKeyRpcCommand$Builder + clearContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateFreshKeyRpcCommand$Builder + clearExternalId: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateFreshKeyRpcCommand$Builder + clearSchemeCodeName: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateFreshKeyRpcCommand$Builder + getCategory: + annotations: [] + default: false + type: public + returnType: String + getContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList$Builder + getExternalId: + annotations: [] + default: false + type: public + returnType: String + getSchemeCodeName: + annotations: [] + default: false + type: public + returnType: String + hasCategory: + annotations: [] + default: false + type: public + returnType: boolean + hasContext: + annotations: [] + default: false + type: public + returnType: boolean + hasContextBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasExternalId: + annotations: [] + default: false + type: public + returnType: boolean + hasSchemeCodeName: + annotations: [] + default: false + type: public + returnType: boolean + setCategory: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateFreshKeyRpcCommand$Builder + params: + value: + annotation: [] + type: String + setContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateFreshKeyRpcCommand$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateFreshKeyRpcCommand$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList$Builder + setExternalId: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateFreshKeyRpcCommand$Builder + params: + value: + annotation: [] + type: String + setSchemeCodeName: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateFreshKeyRpcCommand$Builder + params: + value: + annotation: [] + type: String +net.corda.data.crypto.wire.ops.rpc.commands.GenerateKeyPairCommand: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateKeyPairCommand + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getAlias: + annotations: [] + default: false + type: public + returnType: String + getCategory: + annotations: [] + default: false + type: public + returnType: String + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getExternalId: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSchemeCodeName: + annotations: [] + default: false + type: public + returnType: String + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateKeyPairCommand$Builder + params: + other: + annotation: [] + type: net.corda.data.crypto.wire.ops.rpc.commands.GenerateKeyPairCommand + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setAlias: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setCategory: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setContext: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setExternalId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setSchemeCodeName: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.crypto.wire.ops.rpc.commands.GenerateKeyPairCommand$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateKeyPairCommand + clearAlias: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateKeyPairCommand$Builder + clearCategory: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateKeyPairCommand$Builder + clearContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateKeyPairCommand$Builder + clearExternalId: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateKeyPairCommand$Builder + clearSchemeCodeName: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateKeyPairCommand$Builder + getAlias: + annotations: [] + default: false + type: public + returnType: String + getCategory: + annotations: [] + default: false + type: public + returnType: String + getContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList$Builder + getExternalId: + annotations: [] + default: false + type: public + returnType: String + getSchemeCodeName: + annotations: [] + default: false + type: public + returnType: String + hasAlias: + annotations: [] + default: false + type: public + returnType: boolean + hasCategory: + annotations: [] + default: false + type: public + returnType: boolean + hasContext: + annotations: [] + default: false + type: public + returnType: boolean + hasContextBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasExternalId: + annotations: [] + default: false + type: public + returnType: boolean + hasSchemeCodeName: + annotations: [] + default: false + type: public + returnType: boolean + setAlias: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateKeyPairCommand$Builder + params: + value: + annotation: [] + type: String + setCategory: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateKeyPairCommand$Builder + params: + value: + annotation: [] + type: String + setContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateKeyPairCommand$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateKeyPairCommand$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList$Builder + setExternalId: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateKeyPairCommand$Builder + params: + value: + annotation: [] + type: String + setSchemeCodeName: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateKeyPairCommand$Builder + params: + value: + annotation: [] + type: String +net.corda.data.crypto.wire.ops.rpc.commands.GenerateWrappingKeyRpcCommand: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateWrappingKeyRpcCommand + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getFailIfExists: + annotations: [] + default: false + type: public + returnType: boolean + getHsmId: + annotations: [] + default: false + type: public + returnType: String + getMasterKeyAlias: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateWrappingKeyRpcCommand$Builder + params: + other: + annotation: [] + type: net.corda.data.crypto.wire.ops.rpc.commands.GenerateWrappingKeyRpcCommand + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setContext: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setFailIfExists: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: boolean + setHsmId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setMasterKeyAlias: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.crypto.wire.ops.rpc.commands.GenerateWrappingKeyRpcCommand$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateWrappingKeyRpcCommand + clearContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateWrappingKeyRpcCommand$Builder + clearFailIfExists: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateWrappingKeyRpcCommand$Builder + clearHsmId: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateWrappingKeyRpcCommand$Builder + clearMasterKeyAlias: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateWrappingKeyRpcCommand$Builder + getContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList$Builder + getFailIfExists: + annotations: [] + default: false + type: public + returnType: boolean + getHsmId: + annotations: [] + default: false + type: public + returnType: String + getMasterKeyAlias: + annotations: [] + default: false + type: public + returnType: String + hasContext: + annotations: [] + default: false + type: public + returnType: boolean + hasContextBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasFailIfExists: + annotations: [] + default: false + type: public + returnType: boolean + hasHsmId: + annotations: [] + default: false + type: public + returnType: boolean + hasMasterKeyAlias: + annotations: [] + default: false + type: public + returnType: boolean + setContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateWrappingKeyRpcCommand$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateWrappingKeyRpcCommand$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList$Builder + setFailIfExists: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateWrappingKeyRpcCommand$Builder + params: + value: + annotation: [] + type: boolean + setHsmId: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateWrappingKeyRpcCommand$Builder + params: + value: + annotation: [] + type: String + setMasterKeyAlias: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateWrappingKeyRpcCommand$Builder + params: + value: + annotation: [] + type: String +net.corda.data.crypto.wire.ops.rpc.commands.SignRpcCommand: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.ops.rpc.commands.SignRpcCommand + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getBytes: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getPublicKey: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSignatureSpec: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureSpec + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.ops.rpc.commands.SignRpcCommand$Builder + params: + other: + annotation: [] + type: net.corda.data.crypto.wire.ops.rpc.commands.SignRpcCommand + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setBytes: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setContext: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setPublicKey: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setSignatureSpec: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoSignatureSpec + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.crypto.wire.ops.rpc.commands.SignRpcCommand$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.SignRpcCommand + clearBytes: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.SignRpcCommand$Builder + clearContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.SignRpcCommand$Builder + clearPublicKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.SignRpcCommand$Builder + clearSignatureSpec: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.SignRpcCommand$Builder + getBytes: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList$Builder + getPublicKey: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getSignatureSpec: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureSpec + getSignatureSpecBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureSpec$Builder + hasBytes: + annotations: [] + default: false + type: public + returnType: boolean + hasContext: + annotations: [] + default: false + type: public + returnType: boolean + hasContextBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasPublicKey: + annotations: [] + default: false + type: public + returnType: boolean + hasSignatureSpec: + annotations: [] + default: false + type: public + returnType: boolean + hasSignatureSpecBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setBytes: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.SignRpcCommand$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.SignRpcCommand$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.SignRpcCommand$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList$Builder + setPublicKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.SignRpcCommand$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setSignatureSpec: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.SignRpcCommand$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoSignatureSpec + setSignatureSpecBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.commands.SignRpcCommand$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoSignatureSpec$Builder +net.corda.data.crypto.wire.ops.rpc.queries.ByIdsRpcQuery: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.ops.rpc.queries.ByIdsRpcQuery + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getKeyIds: + annotations: [] + default: false + type: public + returnType: Object + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.ops.rpc.queries.ByIdsRpcQuery$Builder + params: + other: + annotation: [] + type: net.corda.data.crypto.wire.ops.rpc.queries.ByIdsRpcQuery + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setKeyIds: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Object + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.crypto.wire.ops.rpc.queries.ByIdsRpcQuery$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.queries.ByIdsRpcQuery + clearKeyIds: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.queries.ByIdsRpcQuery$Builder + getKeyIds: + annotations: [] + default: false + type: public + returnType: Object + hasKeyIds: + annotations: [] + default: false + type: public + returnType: boolean + setKeyIds: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.queries.ByIdsRpcQuery$Builder + params: + value: + annotation: [] + type: Object +net.corda.data.crypto.wire.ops.rpc.queries.CryptoKeyOrderBy: + annotations: + - AvroGenerated + type: public final class + extends: java.lang.Enum + implements: + - org.apache.avro.generic.GenericEnumSymbol + interface: false + methods: + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + valueOf: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.ops.rpc.queries.CryptoKeyOrderBy + params: {} + values: + annotations: [] + default: false + type: public static + returnType: "net.corda.data.crypto.wire.ops.rpc.queries.CryptoKeyOrderBy[]" + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.crypto.wire.ops.rpc.queries.KeysRpcQuery: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.ops.rpc.queries.KeysRpcQuery + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getFilter: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getOrderBy: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.queries.CryptoKeyOrderBy + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSkip: + annotations: [] + default: false + type: public + returnType: int + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getTake: + annotations: [] + default: false + type: public + returnType: int + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.ops.rpc.queries.KeysRpcQuery$Builder + params: + other: + annotation: [] + type: net.corda.data.crypto.wire.ops.rpc.queries.KeysRpcQuery + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setFilter: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setOrderBy: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.ops.rpc.queries.CryptoKeyOrderBy + setSkip: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + setTake: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.crypto.wire.ops.rpc.queries.KeysRpcQuery$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.queries.KeysRpcQuery + clearFilter: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.queries.KeysRpcQuery$Builder + clearOrderBy: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.queries.KeysRpcQuery$Builder + clearSkip: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.queries.KeysRpcQuery$Builder + clearTake: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.queries.KeysRpcQuery$Builder + getFilter: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getFilterBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList$Builder + getOrderBy: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.queries.CryptoKeyOrderBy + getSkip: + annotations: [] + default: false + type: public + returnType: int + getTake: + annotations: [] + default: false + type: public + returnType: int + hasFilter: + annotations: [] + default: false + type: public + returnType: boolean + hasFilterBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasOrderBy: + annotations: [] + default: false + type: public + returnType: boolean + hasSkip: + annotations: [] + default: false + type: public + returnType: boolean + hasTake: + annotations: [] + default: false + type: public + returnType: boolean + setFilter: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.queries.KeysRpcQuery$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setFilterBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.queries.KeysRpcQuery$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList$Builder + setOrderBy: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.queries.KeysRpcQuery$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.ops.rpc.queries.CryptoKeyOrderBy + setSkip: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.queries.KeysRpcQuery$Builder + params: + value: + annotation: [] + type: int + setTake: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.queries.KeysRpcQuery$Builder + params: + value: + annotation: [] + type: int +net.corda.data.crypto.wire.ops.rpc.queries.SupportedSchemesRpcQuery: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.ops.rpc.queries.SupportedSchemesRpcQuery + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getCategory: + annotations: [] + default: false + type: public + returnType: String + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.crypto.wire.ops.rpc.queries.SupportedSchemesRpcQuery$Builder + params: + other: + annotation: [] + type: net.corda.data.crypto.wire.ops.rpc.queries.SupportedSchemesRpcQuery + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setCategory: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.crypto.wire.ops.rpc.queries.SupportedSchemesRpcQuery$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.queries.SupportedSchemesRpcQuery + clearCategory: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.queries.SupportedSchemesRpcQuery$Builder + getCategory: + annotations: [] + default: false + type: public + returnType: String + hasCategory: + annotations: [] + default: false + type: public + returnType: boolean + setCategory: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.ops.rpc.queries.SupportedSchemesRpcQuery$Builder + params: + value: + annotation: [] + type: String +net.corda.data.deadletter.StateAndEventDeadLetterRecord: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.deadletter.StateAndEventDeadLetterRecord + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getEvent: + annotations: [] + default: false + type: public + returnType: Object + getKey: + annotations: [] + default: false + type: public + returnType: Object + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getState: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.deadletter.StateAndEventDeadLetterRecord$Builder + params: + other: + annotation: [] + type: net.corda.data.deadletter.StateAndEventDeadLetterRecord + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setEvent: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Object + setKey: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Object + setState: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setTimestamp: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.deadletter.StateAndEventDeadLetterRecord$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.deadletter.StateAndEventDeadLetterRecord + clearEvent: + annotations: [] + default: false + type: public + returnType: net.corda.data.deadletter.StateAndEventDeadLetterRecord$Builder + clearKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.deadletter.StateAndEventDeadLetterRecord$Builder + clearState: + annotations: [] + default: false + type: public + returnType: net.corda.data.deadletter.StateAndEventDeadLetterRecord$Builder + clearTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.deadletter.StateAndEventDeadLetterRecord$Builder + getEvent: + annotations: [] + default: false + type: public + returnType: Object + getKey: + annotations: [] + default: false + type: public + returnType: Object + getState: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + hasEvent: + annotations: [] + default: false + type: public + returnType: boolean + hasKey: + annotations: [] + default: false + type: public + returnType: boolean + hasState: + annotations: [] + default: false + type: public + returnType: boolean + hasTimestamp: + annotations: [] + default: false + type: public + returnType: boolean + setEvent: + annotations: [] + default: false + type: public + returnType: net.corda.data.deadletter.StateAndEventDeadLetterRecord$Builder + params: + value: + annotation: [] + type: Object + setKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.deadletter.StateAndEventDeadLetterRecord$Builder + params: + value: + annotation: [] + type: Object + setState: + annotations: [] + default: false + type: public + returnType: net.corda.data.deadletter.StateAndEventDeadLetterRecord$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.deadletter.StateAndEventDeadLetterRecord$Builder + params: + value: + annotation: [] + type: java.time.Instant +net.corda.data.demo.DemoRecord: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.demo.DemoRecord + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getValue: + annotations: [] + default: false + type: public + returnType: int + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.demo.DemoRecord$Builder + params: + other: + annotation: [] + type: net.corda.data.demo.DemoRecord + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setValue: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.demo.DemoRecord$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.demo.DemoRecord + clearValue: + annotations: [] + default: false + type: public + returnType: net.corda.data.demo.DemoRecord$Builder + getValue: + annotations: [] + default: false + type: public + returnType: int + hasValue: + annotations: [] + default: false + type: public + returnType: boolean + setValue: + annotations: [] + default: false + type: public + returnType: net.corda.data.demo.DemoRecord$Builder + params: + value: + annotation: [] + type: int +net.corda.data.demo.DemoStateRecord: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.demo.DemoStateRecord + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getValue: + annotations: [] + default: false + type: public + returnType: int + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.demo.DemoStateRecord$Builder + params: + other: + annotation: [] + type: net.corda.data.demo.DemoStateRecord + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setValue: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.demo.DemoStateRecord$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.demo.DemoStateRecord + clearValue: + annotations: [] + default: false + type: public + returnType: net.corda.data.demo.DemoStateRecord$Builder + getValue: + annotations: [] + default: false + type: public + returnType: int + hasValue: + annotations: [] + default: false + type: public + returnType: boolean + setValue: + annotations: [] + default: false + type: public + returnType: net.corda.data.demo.DemoStateRecord$Builder + params: + value: + annotation: [] + type: int +net.corda.data.flow.FlowInitiatorType: + annotations: + - AvroGenerated + type: public final class + extends: java.lang.Enum + implements: + - org.apache.avro.generic.GenericEnumSymbol + interface: false + methods: + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + valueOf: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.FlowInitiatorType + params: {} + values: + annotations: [] + default: false + type: public static + returnType: "net.corda.data.flow.FlowInitiatorType[]" + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.flow.FlowKey: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.FlowKey + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getId: + annotations: [] + default: false + type: public + returnType: String + getIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.FlowKey$Builder + params: + other: + annotation: [] + type: net.corda.data.flow.FlowKey + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setIdentity: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.flow.FlowKey$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowKey + clearId: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowKey$Builder + clearIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowKey$Builder + getId: + annotations: [] + default: false + type: public + returnType: String + getIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getIdentityBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + hasId: + annotations: [] + default: false + type: public + returnType: boolean + hasIdentity: + annotations: [] + default: false + type: public + returnType: boolean + hasIdentityBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setId: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowKey$Builder + params: + value: + annotation: [] + type: String + setIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowKey$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setIdentityBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowKey$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder +net.corda.data.flow.FlowStartContext: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.FlowStartContext + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getContextPlatformProperties: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getCpiId: + annotations: [] + default: false + type: public + returnType: String + getCreatedTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getFlowClassName: + annotations: [] + default: false + type: public + returnType: String + getIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getInitiatedBy: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getInitiatorType: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowInitiatorType + getRequestId: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getStartArgs: + annotations: [] + default: false + type: public + returnType: String + getStatusKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowKey + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.FlowStartContext$Builder + params: + other: + annotation: [] + type: net.corda.data.flow.FlowStartContext + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setContextPlatformProperties: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setCpiId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setCreatedTimestamp: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + setFlowClassName: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setIdentity: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setInitiatedBy: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setInitiatorType: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.flow.FlowInitiatorType + setRequestId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setStartArgs: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setStatusKey: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.flow.FlowKey + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.flow.FlowStartContext$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowStartContext + clearContextPlatformProperties: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowStartContext$Builder + clearCpiId: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowStartContext$Builder + clearCreatedTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowStartContext$Builder + clearFlowClassName: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowStartContext$Builder + clearIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowStartContext$Builder + clearInitiatedBy: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowStartContext$Builder + clearInitiatorType: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowStartContext$Builder + clearRequestId: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowStartContext$Builder + clearStartArgs: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowStartContext$Builder + clearStatusKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowStartContext$Builder + getContextPlatformProperties: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getContextPlatformPropertiesBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList$Builder + getCpiId: + annotations: [] + default: false + type: public + returnType: String + getCreatedTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getFlowClassName: + annotations: [] + default: false + type: public + returnType: String + getIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getIdentityBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + getInitiatedBy: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getInitiatedByBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + getInitiatorType: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowInitiatorType + getRequestId: + annotations: [] + default: false + type: public + returnType: String + getStartArgs: + annotations: [] + default: false + type: public + returnType: String + getStatusKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowKey + getStatusKeyBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowKey$Builder + hasContextPlatformProperties: + annotations: [] + default: false + type: public + returnType: boolean + hasContextPlatformPropertiesBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasCpiId: + annotations: [] + default: false + type: public + returnType: boolean + hasCreatedTimestamp: + annotations: [] + default: false + type: public + returnType: boolean + hasFlowClassName: + annotations: [] + default: false + type: public + returnType: boolean + hasIdentity: + annotations: [] + default: false + type: public + returnType: boolean + hasIdentityBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasInitiatedBy: + annotations: [] + default: false + type: public + returnType: boolean + hasInitiatedByBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasInitiatorType: + annotations: [] + default: false + type: public + returnType: boolean + hasRequestId: + annotations: [] + default: false + type: public + returnType: boolean + hasStartArgs: + annotations: [] + default: false + type: public + returnType: boolean + hasStatusKey: + annotations: [] + default: false + type: public + returnType: boolean + hasStatusKeyBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setContextPlatformProperties: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowStartContext$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setContextPlatformPropertiesBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowStartContext$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList$Builder + setCpiId: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowStartContext$Builder + params: + value: + annotation: [] + type: String + setCreatedTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowStartContext$Builder + params: + value: + annotation: [] + type: java.time.Instant + setFlowClassName: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowStartContext$Builder + params: + value: + annotation: [] + type: String + setIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowStartContext$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setIdentityBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowStartContext$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder + setInitiatedBy: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowStartContext$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setInitiatedByBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowStartContext$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder + setInitiatorType: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowStartContext$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.FlowInitiatorType + setRequestId: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowStartContext$Builder + params: + value: + annotation: [] + type: String + setStartArgs: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowStartContext$Builder + params: + value: + annotation: [] + type: String + setStatusKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowStartContext$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.FlowKey + setStatusKeyBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowStartContext$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.FlowKey$Builder +net.corda.data.flow.event.FlowEvent: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.event.FlowEvent + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getFlowId: + annotations: [] + default: false + type: public + returnType: String + getPayload: + annotations: [] + default: false + type: public + returnType: Object + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.event.FlowEvent$Builder + params: + other: + annotation: [] + type: net.corda.data.flow.event.FlowEvent + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setFlowId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setPayload: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Object + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.flow.event.FlowEvent$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.FlowEvent + clearFlowId: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.FlowEvent$Builder + clearPayload: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.FlowEvent$Builder + getFlowId: + annotations: [] + default: false + type: public + returnType: String + getPayload: + annotations: [] + default: false + type: public + returnType: Object + hasFlowId: + annotations: [] + default: false + type: public + returnType: boolean + hasPayload: + annotations: [] + default: false + type: public + returnType: boolean + setFlowId: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.FlowEvent$Builder + params: + value: + annotation: [] + type: String + setPayload: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.FlowEvent$Builder + params: + value: + annotation: [] + type: Object +net.corda.data.flow.event.MessageDirection: + annotations: + - AvroGenerated + type: public final class + extends: java.lang.Enum + implements: + - org.apache.avro.generic.GenericEnumSymbol + interface: false + methods: + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + valueOf: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.event.MessageDirection + params: {} + values: + annotations: [] + default: false + type: public static + returnType: "net.corda.data.flow.event.MessageDirection[]" + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.flow.event.SessionEvent: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.event.SessionEvent + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getContextSessionProperties: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getInitiatedIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getInitiatingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getMessageDirection: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.MessageDirection + getPayload: + annotations: [] + default: false + type: public + returnType: Object + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSequenceNum: + annotations: [] + default: false + type: public + returnType: Integer + getSessionId: + annotations: [] + default: false + type: public + returnType: String + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.event.SessionEvent$Builder + params: + other: + annotation: [] + type: net.corda.data.flow.event.SessionEvent + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setContextSessionProperties: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setInitiatedIdentity: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setInitiatingIdentity: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setMessageDirection: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.flow.event.MessageDirection + setPayload: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Object + setSequenceNum: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Integer + setSessionId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setTimestamp: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.flow.event.SessionEvent$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.SessionEvent + clearContextSessionProperties: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.SessionEvent$Builder + clearInitiatedIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.SessionEvent$Builder + clearInitiatingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.SessionEvent$Builder + clearMessageDirection: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.SessionEvent$Builder + clearPayload: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.SessionEvent$Builder + clearSequenceNum: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.SessionEvent$Builder + clearSessionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.SessionEvent$Builder + clearTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.SessionEvent$Builder + getContextSessionProperties: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getContextSessionPropertiesBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList$Builder + getInitiatedIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getInitiatedIdentityBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + getInitiatingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getInitiatingIdentityBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + getMessageDirection: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.MessageDirection + getPayload: + annotations: [] + default: false + type: public + returnType: Object + getSequenceNum: + annotations: [] + default: false + type: public + returnType: Integer + getSessionId: + annotations: [] + default: false + type: public + returnType: String + getTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + hasContextSessionProperties: + annotations: [] + default: false + type: public + returnType: boolean + hasContextSessionPropertiesBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasInitiatedIdentity: + annotations: [] + default: false + type: public + returnType: boolean + hasInitiatedIdentityBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasInitiatingIdentity: + annotations: [] + default: false + type: public + returnType: boolean + hasInitiatingIdentityBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasMessageDirection: + annotations: [] + default: false + type: public + returnType: boolean + hasPayload: + annotations: [] + default: false + type: public + returnType: boolean + hasSequenceNum: + annotations: [] + default: false + type: public + returnType: boolean + hasSessionId: + annotations: [] + default: false + type: public + returnType: boolean + hasTimestamp: + annotations: [] + default: false + type: public + returnType: boolean + setContextSessionProperties: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.SessionEvent$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setContextSessionPropertiesBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.SessionEvent$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList$Builder + setInitiatedIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.SessionEvent$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setInitiatedIdentityBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.SessionEvent$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder + setInitiatingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.SessionEvent$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setInitiatingIdentityBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.SessionEvent$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder + setMessageDirection: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.SessionEvent$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.event.MessageDirection + setPayload: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.SessionEvent$Builder + params: + value: + annotation: [] + type: Object + setSequenceNum: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.SessionEvent$Builder + params: + value: + annotation: [] + type: Integer + setSessionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.SessionEvent$Builder + params: + value: + annotation: [] + type: String + setTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.SessionEvent$Builder + params: + value: + annotation: [] + type: java.time.Instant +net.corda.data.flow.event.StartFlow: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.event.StartFlow + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getFlowStartArgs: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getStartContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowStartContext + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.event.StartFlow$Builder + params: + other: + annotation: [] + type: net.corda.data.flow.event.StartFlow + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setFlowStartArgs: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setStartContext: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.flow.FlowStartContext + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.flow.event.StartFlow$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.StartFlow + clearFlowStartArgs: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.StartFlow$Builder + clearStartContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.StartFlow$Builder + getFlowStartArgs: + annotations: [] + default: false + type: public + returnType: String + getStartContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowStartContext + getStartContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowStartContext$Builder + hasFlowStartArgs: + annotations: [] + default: false + type: public + returnType: boolean + hasStartContext: + annotations: [] + default: false + type: public + returnType: boolean + hasStartContextBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setFlowStartArgs: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.StartFlow$Builder + params: + value: + annotation: [] + type: String + setStartContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.StartFlow$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.FlowStartContext + setStartContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.StartFlow$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.FlowStartContext$Builder +net.corda.data.flow.event.WakeUpWithException: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.event.WakeUpWithException + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getError: + annotations: [] + default: false + type: public + returnType: net.corda.data.ExceptionEnvelope + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.event.WakeUpWithException$Builder + params: + other: + annotation: [] + type: net.corda.data.flow.event.WakeUpWithException + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setError: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.ExceptionEnvelope + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.flow.event.WakeUpWithException$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.WakeUpWithException + clearError: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.WakeUpWithException$Builder + getError: + annotations: [] + default: false + type: public + returnType: net.corda.data.ExceptionEnvelope + getErrorBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ExceptionEnvelope$Builder + hasError: + annotations: [] + default: false + type: public + returnType: boolean + hasErrorBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setError: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.WakeUpWithException$Builder + params: + value: + annotation: [] + type: net.corda.data.ExceptionEnvelope + setErrorBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.WakeUpWithException$Builder + params: + value: + annotation: [] + type: net.corda.data.ExceptionEnvelope$Builder +net.corda.data.flow.event.external.ExternalEvent: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.event.external.ExternalEvent + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getKey: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getPayload: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getTopic: + annotations: [] + default: false + type: public + returnType: String + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.event.external.ExternalEvent$Builder + params: + other: + annotation: [] + type: net.corda.data.flow.event.external.ExternalEvent + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setKey: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setPayload: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setTimestamp: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + setTopic: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.flow.event.external.ExternalEvent$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEvent + clearKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEvent$Builder + clearPayload: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEvent$Builder + clearTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEvent$Builder + clearTopic: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEvent$Builder + getKey: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getPayload: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getTopic: + annotations: [] + default: false + type: public + returnType: String + hasKey: + annotations: [] + default: false + type: public + returnType: boolean + hasPayload: + annotations: [] + default: false + type: public + returnType: boolean + hasTimestamp: + annotations: [] + default: false + type: public + returnType: boolean + hasTopic: + annotations: [] + default: false + type: public + returnType: boolean + setKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEvent$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setPayload: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEvent$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEvent$Builder + params: + value: + annotation: [] + type: java.time.Instant + setTopic: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEvent$Builder + params: + value: + annotation: [] + type: String +net.corda.data.flow.event.external.ExternalEventContext: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.event.external.ExternalEventContext + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getContextProperties: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getFlowId: + annotations: [] + default: false + type: public + returnType: String + getRequestId: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.event.external.ExternalEventContext$Builder + params: + other: + annotation: [] + type: net.corda.data.flow.event.external.ExternalEventContext + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setContextProperties: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setFlowId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setRequestId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.flow.event.external.ExternalEventContext$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventContext + clearContextProperties: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventContext$Builder + clearFlowId: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventContext$Builder + clearRequestId: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventContext$Builder + getContextProperties: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getContextPropertiesBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList$Builder + getFlowId: + annotations: [] + default: false + type: public + returnType: String + getRequestId: + annotations: [] + default: false + type: public + returnType: String + hasContextProperties: + annotations: [] + default: false + type: public + returnType: boolean + hasContextPropertiesBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasFlowId: + annotations: [] + default: false + type: public + returnType: boolean + hasRequestId: + annotations: [] + default: false + type: public + returnType: boolean + setContextProperties: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventContext$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setContextPropertiesBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventContext$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList$Builder + setFlowId: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventContext$Builder + params: + value: + annotation: [] + type: String + setRequestId: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventContext$Builder + params: + value: + annotation: [] + type: String +net.corda.data.flow.event.external.ExternalEventResponse: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.event.external.ExternalEventResponse + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getError: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventResponseError + getPayload: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getRequestId: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.event.external.ExternalEventResponse$Builder + params: + other: + annotation: [] + type: net.corda.data.flow.event.external.ExternalEventResponse + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setError: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.flow.event.external.ExternalEventResponseError + setPayload: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setRequestId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setTimestamp: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.flow.event.external.ExternalEventResponse$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventResponse + clearError: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventResponse$Builder + clearPayload: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventResponse$Builder + clearRequestId: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventResponse$Builder + clearTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventResponse$Builder + getError: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventResponseError + getErrorBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventResponseError$Builder + getPayload: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getRequestId: + annotations: [] + default: false + type: public + returnType: String + getTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + hasError: + annotations: [] + default: false + type: public + returnType: boolean + hasErrorBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasPayload: + annotations: [] + default: false + type: public + returnType: boolean + hasRequestId: + annotations: [] + default: false + type: public + returnType: boolean + hasTimestamp: + annotations: [] + default: false + type: public + returnType: boolean + setError: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.event.external.ExternalEventResponseError + setErrorBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.event.external.ExternalEventResponseError$Builder + setPayload: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventResponse$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setRequestId: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventResponse$Builder + params: + value: + annotation: [] + type: String + setTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventResponse$Builder + params: + value: + annotation: [] + type: java.time.Instant +net.corda.data.flow.event.external.ExternalEventResponseError: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.event.external.ExternalEventResponseError + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getErrorType: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventResponseErrorType + getException: + annotations: [] + default: false + type: public + returnType: net.corda.data.ExceptionEnvelope + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.event.external.ExternalEventResponseError$Builder + params: + other: + annotation: [] + type: net.corda.data.flow.event.external.ExternalEventResponseError + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setErrorType: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.flow.event.external.ExternalEventResponseErrorType + setException: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.ExceptionEnvelope + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.flow.event.external.ExternalEventResponseError$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventResponseError + clearErrorType: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventResponseError$Builder + clearException: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventResponseError$Builder + getErrorType: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventResponseErrorType + getException: + annotations: [] + default: false + type: public + returnType: net.corda.data.ExceptionEnvelope + getExceptionBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ExceptionEnvelope$Builder + hasErrorType: + annotations: [] + default: false + type: public + returnType: boolean + hasException: + annotations: [] + default: false + type: public + returnType: boolean + hasExceptionBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setErrorType: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventResponseError$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.event.external.ExternalEventResponseErrorType + setException: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventResponseError$Builder + params: + value: + annotation: [] + type: net.corda.data.ExceptionEnvelope + setExceptionBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventResponseError$Builder + params: + value: + annotation: [] + type: net.corda.data.ExceptionEnvelope$Builder +net.corda.data.flow.event.external.ExternalEventResponseErrorType: + annotations: + - AvroGenerated + type: public final class + extends: java.lang.Enum + implements: + - org.apache.avro.generic.GenericEnumSymbol + interface: false + methods: + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + valueOf: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.event.external.ExternalEventResponseErrorType + params: {} + values: + annotations: [] + default: false + type: public static + returnType: "net.corda.data.flow.event.external.ExternalEventResponseErrorType[]" + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.flow.event.mapper.ExecuteCleanup: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.event.mapper.ExecuteCleanup + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.event.mapper.ExecuteCleanup$Builder + params: + other: + annotation: [] + type: net.corda.data.flow.event.mapper.ExecuteCleanup + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.flow.event.mapper.ExecuteCleanup$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.mapper.ExecuteCleanup +net.corda.data.flow.event.mapper.FlowMapperEvent: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.event.mapper.FlowMapperEvent + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getPayload: + annotations: [] + default: false + type: public + returnType: Object + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.event.mapper.FlowMapperEvent$Builder + params: + other: + annotation: [] + type: net.corda.data.flow.event.mapper.FlowMapperEvent + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setPayload: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Object + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.flow.event.mapper.FlowMapperEvent$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.mapper.FlowMapperEvent + clearPayload: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.mapper.FlowMapperEvent$Builder + getPayload: + annotations: [] + default: false + type: public + returnType: Object + hasPayload: + annotations: [] + default: false + type: public + returnType: boolean + setPayload: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.mapper.FlowMapperEvent$Builder + params: + value: + annotation: [] + type: Object +net.corda.data.flow.event.mapper.ScheduleCleanup: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.event.mapper.ScheduleCleanup + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getExpiryTime: + annotations: [] + default: false + type: public + returnType: long + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.event.mapper.ScheduleCleanup$Builder + params: + other: + annotation: [] + type: net.corda.data.flow.event.mapper.ScheduleCleanup + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setExpiryTime: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: long + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.flow.event.mapper.ScheduleCleanup$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.mapper.ScheduleCleanup + clearExpiryTime: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.mapper.ScheduleCleanup$Builder + getExpiryTime: + annotations: [] + default: false + type: public + returnType: long + hasExpiryTime: + annotations: [] + default: false + type: public + returnType: boolean + setExpiryTime: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.mapper.ScheduleCleanup$Builder + params: + value: + annotation: [] + type: long +net.corda.data.flow.event.session.SessionClose: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.event.session.SessionClose + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.event.session.SessionClose$Builder + params: + other: + annotation: [] + type: net.corda.data.flow.event.session.SessionClose + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.flow.event.session.SessionClose$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.session.SessionClose +net.corda.data.flow.event.session.SessionCounterpartyInfoRequest: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.event.session.SessionCounterpartyInfoRequest + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSessionInit: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.session.SessionInit + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.event.session.SessionCounterpartyInfoRequest$Builder + params: + other: + annotation: [] + type: net.corda.data.flow.event.session.SessionCounterpartyInfoRequest + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setSessionInit: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.flow.event.session.SessionInit + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.flow.event.session.SessionCounterpartyInfoRequest$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.session.SessionCounterpartyInfoRequest + clearSessionInit: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.session.SessionCounterpartyInfoRequest$Builder + getSessionInit: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.session.SessionInit + getSessionInitBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.session.SessionInit$Builder + hasSessionInit: + annotations: [] + default: false + type: public + returnType: boolean + hasSessionInitBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setSessionInit: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.session.SessionCounterpartyInfoRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.event.session.SessionInit + setSessionInitBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.session.SessionCounterpartyInfoRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.event.session.SessionInit$Builder +net.corda.data.flow.event.session.SessionCounterpartyInfoResponse: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.event.session.SessionCounterpartyInfoResponse + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.event.session.SessionCounterpartyInfoResponse$Builder + params: + other: + annotation: [] + type: net.corda.data.flow.event.session.SessionCounterpartyInfoResponse + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.flow.event.session.SessionCounterpartyInfoResponse$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.session.SessionCounterpartyInfoResponse +net.corda.data.flow.event.session.SessionData: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.event.session.SessionData + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getPayload: + annotations: [] + default: false + type: public + returnType: Object + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSessionInit: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.session.SessionInit + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.event.session.SessionData$Builder + params: + other: + annotation: [] + type: net.corda.data.flow.event.session.SessionData + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setPayload: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Object + setSessionInit: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.flow.event.session.SessionInit + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.flow.event.session.SessionData$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.session.SessionData + clearPayload: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.session.SessionData$Builder + clearSessionInit: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.session.SessionData$Builder + getPayload: + annotations: [] + default: false + type: public + returnType: Object + getSessionInit: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.session.SessionInit + getSessionInitBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.session.SessionInit$Builder + hasPayload: + annotations: [] + default: false + type: public + returnType: boolean + hasSessionInit: + annotations: [] + default: false + type: public + returnType: boolean + hasSessionInitBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setPayload: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.session.SessionData$Builder + params: + value: + annotation: [] + type: Object + setSessionInit: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.session.SessionData$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.event.session.SessionInit + setSessionInitBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.session.SessionData$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.event.session.SessionInit$Builder +net.corda.data.flow.event.session.SessionError: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.event.session.SessionError + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getErrorMessage: + annotations: [] + default: false + type: public + returnType: net.corda.data.ExceptionEnvelope + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.event.session.SessionError$Builder + params: + other: + annotation: [] + type: net.corda.data.flow.event.session.SessionError + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setErrorMessage: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.ExceptionEnvelope + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.flow.event.session.SessionError$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.session.SessionError + clearErrorMessage: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.session.SessionError$Builder + getErrorMessage: + annotations: [] + default: false + type: public + returnType: net.corda.data.ExceptionEnvelope + getErrorMessageBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ExceptionEnvelope$Builder + hasErrorMessage: + annotations: [] + default: false + type: public + returnType: boolean + hasErrorMessageBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setErrorMessage: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.session.SessionError$Builder + params: + value: + annotation: [] + type: net.corda.data.ExceptionEnvelope + setErrorMessageBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.session.SessionError$Builder + params: + value: + annotation: [] + type: net.corda.data.ExceptionEnvelope$Builder +net.corda.data.flow.event.session.SessionInit: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.event.session.SessionInit + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getContextPlatformProperties: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getContextUserProperties: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getCpiId: + annotations: [] + default: false + type: public + returnType: String + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getFlowId: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.event.session.SessionInit$Builder + params: + other: + annotation: [] + type: net.corda.data.flow.event.session.SessionInit + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setContextPlatformProperties: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setContextUserProperties: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setCpiId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setFlowId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.flow.event.session.SessionInit$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.session.SessionInit + clearContextPlatformProperties: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.session.SessionInit$Builder + clearContextUserProperties: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.session.SessionInit$Builder + clearCpiId: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.session.SessionInit$Builder + clearFlowId: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.session.SessionInit$Builder + getContextPlatformProperties: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getContextPlatformPropertiesBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList$Builder + getContextUserProperties: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getContextUserPropertiesBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList$Builder + getCpiId: + annotations: [] + default: false + type: public + returnType: String + getFlowId: + annotations: [] + default: false + type: public + returnType: String + hasContextPlatformProperties: + annotations: [] + default: false + type: public + returnType: boolean + hasContextPlatformPropertiesBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasContextUserProperties: + annotations: [] + default: false + type: public + returnType: boolean + hasContextUserPropertiesBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasCpiId: + annotations: [] + default: false + type: public + returnType: boolean + hasFlowId: + annotations: [] + default: false + type: public + returnType: boolean + setContextPlatformProperties: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.session.SessionInit$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setContextPlatformPropertiesBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.session.SessionInit$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList$Builder + setContextUserProperties: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.session.SessionInit$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setContextUserPropertiesBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.session.SessionInit$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList$Builder + setCpiId: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.session.SessionInit$Builder + params: + value: + annotation: [] + type: String + setFlowId: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.session.SessionInit$Builder + params: + value: + annotation: [] + type: String +net.corda.data.flow.output.FlowStates: + annotations: + - AvroGenerated + type: public final class + extends: java.lang.Enum + implements: + - org.apache.avro.generic.GenericEnumSymbol + interface: false + methods: + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + valueOf: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.output.FlowStates + params: {} + values: + annotations: [] + default: false + type: public static + returnType: "net.corda.data.flow.output.FlowStates[]" + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.flow.output.FlowStatus: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.output.FlowStatus + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getCreatedTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getError: + annotations: [] + default: false + type: public + returnType: net.corda.data.ExceptionEnvelope + getFlowClassName: + annotations: [] + default: false + type: public + returnType: String + getFlowId: + annotations: [] + default: false + type: public + returnType: String + getFlowStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.output.FlowStates + getInitiatorType: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowInitiatorType + getKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowKey + getLastUpdateTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getProcessingTerminatedReason: + annotations: [] + default: false + type: public + returnType: String + getResult: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.output.FlowStatus$Builder + params: + other: + annotation: [] + type: net.corda.data.flow.output.FlowStatus + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setCreatedTimestamp: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + setError: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.ExceptionEnvelope + setFlowClassName: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setFlowId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setFlowStatus: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.flow.output.FlowStates + setInitiatorType: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.flow.FlowInitiatorType + setKey: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.flow.FlowKey + setLastUpdateTimestamp: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + setProcessingTerminatedReason: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setResult: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.flow.output.FlowStatus$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.output.FlowStatus + clearCreatedTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.output.FlowStatus$Builder + clearError: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.output.FlowStatus$Builder + clearFlowClassName: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.output.FlowStatus$Builder + clearFlowId: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.output.FlowStatus$Builder + clearFlowStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.output.FlowStatus$Builder + clearInitiatorType: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.output.FlowStatus$Builder + clearKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.output.FlowStatus$Builder + clearLastUpdateTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.output.FlowStatus$Builder + clearProcessingTerminatedReason: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.output.FlowStatus$Builder + clearResult: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.output.FlowStatus$Builder + getCreatedTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getError: + annotations: [] + default: false + type: public + returnType: net.corda.data.ExceptionEnvelope + getErrorBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ExceptionEnvelope$Builder + getFlowClassName: + annotations: [] + default: false + type: public + returnType: String + getFlowId: + annotations: [] + default: false + type: public + returnType: String + getFlowStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.output.FlowStates + getInitiatorType: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowInitiatorType + getKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowKey + getKeyBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowKey$Builder + getLastUpdateTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getProcessingTerminatedReason: + annotations: [] + default: false + type: public + returnType: String + getResult: + annotations: [] + default: false + type: public + returnType: String + hasCreatedTimestamp: + annotations: [] + default: false + type: public + returnType: boolean + hasError: + annotations: [] + default: false + type: public + returnType: boolean + hasErrorBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasFlowClassName: + annotations: [] + default: false + type: public + returnType: boolean + hasFlowId: + annotations: [] + default: false + type: public + returnType: boolean + hasFlowStatus: + annotations: [] + default: false + type: public + returnType: boolean + hasInitiatorType: + annotations: [] + default: false + type: public + returnType: boolean + hasKey: + annotations: [] + default: false + type: public + returnType: boolean + hasKeyBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasLastUpdateTimestamp: + annotations: [] + default: false + type: public + returnType: boolean + hasProcessingTerminatedReason: + annotations: [] + default: false + type: public + returnType: boolean + hasResult: + annotations: [] + default: false + type: public + returnType: boolean + setCreatedTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.output.FlowStatus$Builder + params: + value: + annotation: [] + type: java.time.Instant + setError: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.output.FlowStatus$Builder + params: + value: + annotation: [] + type: net.corda.data.ExceptionEnvelope + setErrorBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.output.FlowStatus$Builder + params: + value: + annotation: [] + type: net.corda.data.ExceptionEnvelope$Builder + setFlowClassName: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.output.FlowStatus$Builder + params: + value: + annotation: [] + type: String + setFlowId: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.output.FlowStatus$Builder + params: + value: + annotation: [] + type: String + setFlowStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.output.FlowStatus$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.output.FlowStates + setInitiatorType: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.output.FlowStatus$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.FlowInitiatorType + setKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.output.FlowStatus$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.FlowKey + setKeyBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.output.FlowStatus$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.FlowKey$Builder + setLastUpdateTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.output.FlowStatus$Builder + params: + value: + annotation: [] + type: java.time.Instant + setProcessingTerminatedReason: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.output.FlowStatus$Builder + params: + value: + annotation: [] + type: String + setResult: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.output.FlowStatus$Builder + params: + value: + annotation: [] + type: String +net.corda.data.flow.state.checkpoint.Checkpoint: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.state.checkpoint.Checkpoint + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getCustomState: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getFlowId: + annotations: [] + default: false + type: public + returnType: String + getFlowMetricsState: + annotations: [] + default: false + type: public + returnType: String + getFlowState: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.FlowState + getInitialPlatformVersion: + annotations: [] + default: false + type: public + returnType: int + getPipelineState: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.PipelineState + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.state.checkpoint.Checkpoint$Builder + params: + other: + annotation: [] + type: net.corda.data.flow.state.checkpoint.Checkpoint + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setCustomState: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setFlowId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setFlowMetricsState: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setFlowState: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.flow.state.checkpoint.FlowState + setInitialPlatformVersion: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + setPipelineState: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.flow.state.checkpoint.PipelineState + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.flow.state.checkpoint.Checkpoint$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.Checkpoint + clearCustomState: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.Checkpoint$Builder + clearFlowId: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.Checkpoint$Builder + clearFlowMetricsState: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.Checkpoint$Builder + clearFlowState: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.Checkpoint$Builder + clearInitialPlatformVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.Checkpoint$Builder + clearPipelineState: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.Checkpoint$Builder + getCustomState: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getCustomStateBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList$Builder + getFlowId: + annotations: [] + default: false + type: public + returnType: String + getFlowMetricsState: + annotations: [] + default: false + type: public + returnType: String + getFlowState: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.FlowState + getFlowStateBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.FlowState$Builder + getInitialPlatformVersion: + annotations: [] + default: false + type: public + returnType: int + getPipelineState: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.PipelineState + getPipelineStateBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.PipelineState$Builder + hasCustomState: + annotations: [] + default: false + type: public + returnType: boolean + hasCustomStateBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasFlowId: + annotations: [] + default: false + type: public + returnType: boolean + hasFlowMetricsState: + annotations: [] + default: false + type: public + returnType: boolean + hasFlowState: + annotations: [] + default: false + type: public + returnType: boolean + hasFlowStateBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasInitialPlatformVersion: + annotations: [] + default: false + type: public + returnType: boolean + hasPipelineState: + annotations: [] + default: false + type: public + returnType: boolean + hasPipelineStateBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setCustomState: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.Checkpoint$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setCustomStateBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.Checkpoint$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList$Builder + setFlowId: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.Checkpoint$Builder + params: + value: + annotation: [] + type: String + setFlowMetricsState: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.Checkpoint$Builder + params: + value: + annotation: [] + type: String + setFlowState: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.Checkpoint$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.state.checkpoint.FlowState + setFlowStateBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.Checkpoint$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.state.checkpoint.FlowState$Builder + setInitialPlatformVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.Checkpoint$Builder + params: + value: + annotation: [] + type: int + setPipelineState: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.Checkpoint$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.state.checkpoint.PipelineState + setPipelineStateBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.Checkpoint$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.state.checkpoint.PipelineState$Builder +net.corda.data.flow.state.checkpoint.FlowStackItem: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.state.checkpoint.FlowStackItem + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getContextPlatformProperties: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getContextUserProperties: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getFlowName: + annotations: [] + default: false + type: public + returnType: String + getIsInitiatingFlow: + annotations: [] + default: false + type: public + returnType: boolean + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSessions: + annotations: [] + default: false + type: public + returnType: java.util.List + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.state.checkpoint.FlowStackItem$Builder + params: + other: + annotation: [] + type: net.corda.data.flow.state.checkpoint.FlowStackItem + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setContextPlatformProperties: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setContextUserProperties: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setFlowName: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setIsInitiatingFlow: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: boolean + setSessions: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.flow.state.checkpoint.FlowStackItem$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.FlowStackItem + clearContextPlatformProperties: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.FlowStackItem$Builder + clearContextUserProperties: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.FlowStackItem$Builder + clearFlowName: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.FlowStackItem$Builder + clearIsInitiatingFlow: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.FlowStackItem$Builder + clearSessions: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.FlowStackItem$Builder + getContextPlatformProperties: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getContextPlatformPropertiesBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList$Builder + getContextUserProperties: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getContextUserPropertiesBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList$Builder + getFlowName: + annotations: [] + default: false + type: public + returnType: String + getIsInitiatingFlow: + annotations: [] + default: false + type: public + returnType: boolean + getSessions: + annotations: [] + default: false + type: public + returnType: java.util.List + hasContextPlatformProperties: + annotations: [] + default: false + type: public + returnType: boolean + hasContextPlatformPropertiesBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasContextUserProperties: + annotations: [] + default: false + type: public + returnType: boolean + hasContextUserPropertiesBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasFlowName: + annotations: [] + default: false + type: public + returnType: boolean + hasIsInitiatingFlow: + annotations: [] + default: false + type: public + returnType: boolean + hasSessions: + annotations: [] + default: false + type: public + returnType: boolean + setContextPlatformProperties: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.FlowStackItem$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setContextPlatformPropertiesBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.FlowStackItem$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList$Builder + setContextUserProperties: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.FlowStackItem$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setContextUserPropertiesBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.FlowStackItem$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList$Builder + setFlowName: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.FlowStackItem$Builder + params: + value: + annotation: [] + type: String + setIsInitiatingFlow: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.FlowStackItem$Builder + params: + value: + annotation: [] + type: boolean + setSessions: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.FlowStackItem$Builder + params: + value: + annotation: [] + type: java.util.List +net.corda.data.flow.state.checkpoint.FlowStackItemSession: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.state.checkpoint.FlowStackItemSession + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getInitiated: + annotations: [] + default: false + type: public + returnType: boolean + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSessionId: + annotations: [] + default: false + type: public + returnType: String + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.state.checkpoint.FlowStackItemSession$Builder + params: + other: + annotation: [] + type: net.corda.data.flow.state.checkpoint.FlowStackItemSession + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setInitiated: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: boolean + setSessionId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.flow.state.checkpoint.FlowStackItemSession$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.FlowStackItemSession + clearInitiated: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.FlowStackItemSession$Builder + clearSessionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.FlowStackItemSession$Builder + getInitiated: + annotations: [] + default: false + type: public + returnType: boolean + getSessionId: + annotations: [] + default: false + type: public + returnType: String + hasInitiated: + annotations: [] + default: false + type: public + returnType: boolean + hasSessionId: + annotations: [] + default: false + type: public + returnType: boolean + setInitiated: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.FlowStackItemSession$Builder + params: + value: + annotation: [] + type: boolean + setSessionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.FlowStackItemSession$Builder + params: + value: + annotation: [] + type: String +net.corda.data.flow.state.checkpoint.FlowState: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.state.checkpoint.FlowState + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getExternalEventState: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.external.ExternalEventState + getFiber: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getFlowStackItems: + annotations: [] + default: false + type: public + returnType: java.util.List + getFlowStartContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowStartContext + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSessions: + annotations: [] + default: false + type: public + returnType: java.util.List + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getSuspendCount: + annotations: [] + default: false + type: public + returnType: int + getSuspendedOn: + annotations: [] + default: false + type: public + returnType: String + getWaitingFor: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.waiting.WaitingFor + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.state.checkpoint.FlowState$Builder + params: + other: + annotation: [] + type: net.corda.data.flow.state.checkpoint.FlowState + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setExternalEventState: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.flow.state.external.ExternalEventState + setFiber: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setFlowStackItems: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + setFlowStartContext: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.flow.FlowStartContext + setSessions: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + setSuspendCount: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + setSuspendedOn: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setWaitingFor: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.flow.state.waiting.WaitingFor + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.flow.state.checkpoint.FlowState$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.FlowState + clearExternalEventState: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.FlowState$Builder + clearFiber: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.FlowState$Builder + clearFlowStackItems: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.FlowState$Builder + clearFlowStartContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.FlowState$Builder + clearSessions: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.FlowState$Builder + clearSuspendCount: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.FlowState$Builder + clearSuspendedOn: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.FlowState$Builder + clearWaitingFor: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.FlowState$Builder + getExternalEventState: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.external.ExternalEventState + getExternalEventStateBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.external.ExternalEventState$Builder + getFiber: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getFlowStackItems: + annotations: [] + default: false + type: public + returnType: java.util.List + getFlowStartContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowStartContext + getFlowStartContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowStartContext$Builder + getSessions: + annotations: [] + default: false + type: public + returnType: java.util.List + getSuspendCount: + annotations: [] + default: false + type: public + returnType: int + getSuspendedOn: + annotations: [] + default: false + type: public + returnType: String + getWaitingFor: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.waiting.WaitingFor + getWaitingForBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.waiting.WaitingFor$Builder + hasExternalEventState: + annotations: [] + default: false + type: public + returnType: boolean + hasExternalEventStateBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasFiber: + annotations: [] + default: false + type: public + returnType: boolean + hasFlowStackItems: + annotations: [] + default: false + type: public + returnType: boolean + hasFlowStartContext: + annotations: [] + default: false + type: public + returnType: boolean + hasFlowStartContextBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasSessions: + annotations: [] + default: false + type: public + returnType: boolean + hasSuspendCount: + annotations: [] + default: false + type: public + returnType: boolean + hasSuspendedOn: + annotations: [] + default: false + type: public + returnType: boolean + hasWaitingFor: + annotations: [] + default: false + type: public + returnType: boolean + hasWaitingForBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setExternalEventState: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.FlowState$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.state.external.ExternalEventState + setExternalEventStateBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.FlowState$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.state.external.ExternalEventState$Builder + setFiber: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.FlowState$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setFlowStackItems: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.FlowState$Builder + params: + value: + annotation: [] + type: java.util.List + setFlowStartContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.FlowState$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.FlowStartContext + setFlowStartContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.FlowState$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.FlowStartContext$Builder + setSessions: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.FlowState$Builder + params: + value: + annotation: [] + type: java.util.List + setSuspendCount: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.FlowState$Builder + params: + value: + annotation: [] + type: int + setSuspendedOn: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.FlowState$Builder + params: + value: + annotation: [] + type: String + setWaitingFor: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.FlowState$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.state.waiting.WaitingFor + setWaitingForBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.FlowState$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.state.waiting.WaitingFor$Builder +net.corda.data.flow.state.checkpoint.PipelineState: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.state.checkpoint.PipelineState + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getCpkFileHashes: + annotations: [] + default: false + type: public + returnType: java.util.List + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getMaxFlowSleepDuration: + annotations: [] + default: false + type: public + returnType: int + getPendingPlatformError: + annotations: [] + default: false + type: public + returnType: net.corda.data.ExceptionEnvelope + getRetryState: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.RetryState + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.state.checkpoint.PipelineState$Builder + params: + other: + annotation: [] + type: net.corda.data.flow.state.checkpoint.PipelineState + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setCpkFileHashes: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + setMaxFlowSleepDuration: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + setPendingPlatformError: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.ExceptionEnvelope + setRetryState: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.flow.state.checkpoint.RetryState + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.flow.state.checkpoint.PipelineState$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.PipelineState + clearCpkFileHashes: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.PipelineState$Builder + clearMaxFlowSleepDuration: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.PipelineState$Builder + clearPendingPlatformError: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.PipelineState$Builder + clearRetryState: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.PipelineState$Builder + getCpkFileHashes: + annotations: [] + default: false + type: public + returnType: java.util.List + getMaxFlowSleepDuration: + annotations: [] + default: false + type: public + returnType: int + getPendingPlatformError: + annotations: [] + default: false + type: public + returnType: net.corda.data.ExceptionEnvelope + getPendingPlatformErrorBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ExceptionEnvelope$Builder + getRetryState: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.RetryState + getRetryStateBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.RetryState$Builder + hasCpkFileHashes: + annotations: [] + default: false + type: public + returnType: boolean + hasMaxFlowSleepDuration: + annotations: [] + default: false + type: public + returnType: boolean + hasPendingPlatformError: + annotations: [] + default: false + type: public + returnType: boolean + hasPendingPlatformErrorBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasRetryState: + annotations: [] + default: false + type: public + returnType: boolean + hasRetryStateBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setCpkFileHashes: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.PipelineState$Builder + params: + value: + annotation: [] + type: java.util.List + setMaxFlowSleepDuration: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.PipelineState$Builder + params: + value: + annotation: [] + type: int + setPendingPlatformError: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.PipelineState$Builder + params: + value: + annotation: [] + type: net.corda.data.ExceptionEnvelope + setPendingPlatformErrorBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.PipelineState$Builder + params: + value: + annotation: [] + type: net.corda.data.ExceptionEnvelope$Builder + setRetryState: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.PipelineState$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.state.checkpoint.RetryState + setRetryStateBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.PipelineState$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.state.checkpoint.RetryState$Builder +net.corda.data.flow.state.checkpoint.RetryState: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.state.checkpoint.RetryState + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getError: + annotations: [] + default: false + type: public + returnType: net.corda.data.ExceptionEnvelope + getFailedEvent: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.FlowEvent + getFirstFailureTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getLastFailureTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getRetryCount: + annotations: [] + default: false + type: public + returnType: int + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.state.checkpoint.RetryState$Builder + params: + other: + annotation: [] + type: net.corda.data.flow.state.checkpoint.RetryState + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setError: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.ExceptionEnvelope + setFailedEvent: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.flow.event.FlowEvent + setFirstFailureTimestamp: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + setLastFailureTimestamp: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + setRetryCount: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.flow.state.checkpoint.RetryState$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.RetryState + clearError: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.RetryState$Builder + clearFailedEvent: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.RetryState$Builder + clearFirstFailureTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.RetryState$Builder + clearLastFailureTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.RetryState$Builder + clearRetryCount: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.RetryState$Builder + getError: + annotations: [] + default: false + type: public + returnType: net.corda.data.ExceptionEnvelope + getErrorBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ExceptionEnvelope$Builder + getFailedEvent: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.FlowEvent + getFailedEventBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.FlowEvent$Builder + getFirstFailureTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getLastFailureTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getRetryCount: + annotations: [] + default: false + type: public + returnType: int + hasError: + annotations: [] + default: false + type: public + returnType: boolean + hasErrorBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasFailedEvent: + annotations: [] + default: false + type: public + returnType: boolean + hasFailedEventBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasFirstFailureTimestamp: + annotations: [] + default: false + type: public + returnType: boolean + hasLastFailureTimestamp: + annotations: [] + default: false + type: public + returnType: boolean + hasRetryCount: + annotations: [] + default: false + type: public + returnType: boolean + setError: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.RetryState$Builder + params: + value: + annotation: [] + type: net.corda.data.ExceptionEnvelope + setErrorBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.RetryState$Builder + params: + value: + annotation: [] + type: net.corda.data.ExceptionEnvelope$Builder + setFailedEvent: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.RetryState$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.event.FlowEvent + setFailedEventBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.RetryState$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.event.FlowEvent$Builder + setFirstFailureTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.RetryState$Builder + params: + value: + annotation: [] + type: java.time.Instant + setLastFailureTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.RetryState$Builder + params: + value: + annotation: [] + type: java.time.Instant + setRetryCount: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.checkpoint.RetryState$Builder + params: + value: + annotation: [] + type: int +net.corda.data.flow.state.external.ExternalEventState: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.state.external.ExternalEventState + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getEventToSend: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEvent + getFactoryClassName: + annotations: [] + default: false + type: public + returnType: String + getRequestId: + annotations: [] + default: false + type: public + returnType: String + getResponse: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventResponse + getRetries: + annotations: [] + default: false + type: public + returnType: int + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSendTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.external.ExternalEventStateStatus + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.state.external.ExternalEventState$Builder + params: + other: + annotation: [] + type: net.corda.data.flow.state.external.ExternalEventState + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setEventToSend: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.flow.event.external.ExternalEvent + setFactoryClassName: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setRequestId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setResponse: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.flow.event.external.ExternalEventResponse + setRetries: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + setSendTimestamp: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + setStatus: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.flow.state.external.ExternalEventStateStatus + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.flow.state.external.ExternalEventState$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.external.ExternalEventState + clearEventToSend: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.external.ExternalEventState$Builder + clearFactoryClassName: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.external.ExternalEventState$Builder + clearRequestId: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.external.ExternalEventState$Builder + clearResponse: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.external.ExternalEventState$Builder + clearRetries: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.external.ExternalEventState$Builder + clearSendTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.external.ExternalEventState$Builder + clearStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.external.ExternalEventState$Builder + getEventToSend: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEvent + getEventToSendBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEvent$Builder + getFactoryClassName: + annotations: [] + default: false + type: public + returnType: String + getRequestId: + annotations: [] + default: false + type: public + returnType: String + getResponse: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventResponse + getResponseBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventResponse$Builder + getRetries: + annotations: [] + default: false + type: public + returnType: int + getSendTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.external.ExternalEventStateStatus + getStatusBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.external.ExternalEventStateStatus$Builder + hasEventToSend: + annotations: [] + default: false + type: public + returnType: boolean + hasEventToSendBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasFactoryClassName: + annotations: [] + default: false + type: public + returnType: boolean + hasRequestId: + annotations: [] + default: false + type: public + returnType: boolean + hasResponse: + annotations: [] + default: false + type: public + returnType: boolean + hasResponseBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasRetries: + annotations: [] + default: false + type: public + returnType: boolean + hasSendTimestamp: + annotations: [] + default: false + type: public + returnType: boolean + hasStatus: + annotations: [] + default: false + type: public + returnType: boolean + hasStatusBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setEventToSend: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.external.ExternalEventState$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.event.external.ExternalEvent + setEventToSendBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.external.ExternalEventState$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.event.external.ExternalEvent$Builder + setFactoryClassName: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.external.ExternalEventState$Builder + params: + value: + annotation: [] + type: String + setRequestId: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.external.ExternalEventState$Builder + params: + value: + annotation: [] + type: String + setResponse: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.external.ExternalEventState$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.event.external.ExternalEventResponse + setResponseBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.external.ExternalEventState$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.event.external.ExternalEventResponse$Builder + setRetries: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.external.ExternalEventState$Builder + params: + value: + annotation: [] + type: int + setSendTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.external.ExternalEventState$Builder + params: + value: + annotation: [] + type: java.time.Instant + setStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.external.ExternalEventState$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.state.external.ExternalEventStateStatus + setStatusBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.external.ExternalEventState$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.state.external.ExternalEventStateStatus$Builder +net.corda.data.flow.state.external.ExternalEventStateStatus: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.state.external.ExternalEventStateStatus + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getException: + annotations: [] + default: false + type: public + returnType: net.corda.data.ExceptionEnvelope + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getType: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.external.ExternalEventStateType + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.state.external.ExternalEventStateStatus$Builder + params: + other: + annotation: [] + type: net.corda.data.flow.state.external.ExternalEventStateStatus + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setException: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.ExceptionEnvelope + setType: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.flow.state.external.ExternalEventStateType + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.flow.state.external.ExternalEventStateStatus$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.external.ExternalEventStateStatus + clearException: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.external.ExternalEventStateStatus$Builder + clearType: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.external.ExternalEventStateStatus$Builder + getException: + annotations: [] + default: false + type: public + returnType: net.corda.data.ExceptionEnvelope + getExceptionBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ExceptionEnvelope$Builder + getType: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.external.ExternalEventStateType + hasException: + annotations: [] + default: false + type: public + returnType: boolean + hasExceptionBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasType: + annotations: [] + default: false + type: public + returnType: boolean + setException: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.external.ExternalEventStateStatus$Builder + params: + value: + annotation: [] + type: net.corda.data.ExceptionEnvelope + setExceptionBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.external.ExternalEventStateStatus$Builder + params: + value: + annotation: [] + type: net.corda.data.ExceptionEnvelope$Builder + setType: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.external.ExternalEventStateStatus$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.state.external.ExternalEventStateType +net.corda.data.flow.state.external.ExternalEventStateType: + annotations: + - AvroGenerated + type: public final class + extends: java.lang.Enum + implements: + - org.apache.avro.generic.GenericEnumSymbol + interface: false + methods: + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + valueOf: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.state.external.ExternalEventStateType + params: {} + values: + annotations: [] + default: false + type: public static + returnType: "net.corda.data.flow.state.external.ExternalEventStateType[]" + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.flow.state.mapper.FlowMapperState: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.state.mapper.FlowMapperState + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getExpiryTime: + annotations: [] + default: false + type: public + returnType: Long + getFlowId: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.mapper.FlowMapperStateType + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.state.mapper.FlowMapperState$Builder + params: + other: + annotation: [] + type: net.corda.data.flow.state.mapper.FlowMapperState + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setExpiryTime: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Long + setFlowId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setStatus: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.flow.state.mapper.FlowMapperStateType + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.flow.state.mapper.FlowMapperState$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.mapper.FlowMapperState + clearExpiryTime: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.mapper.FlowMapperState$Builder + clearFlowId: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.mapper.FlowMapperState$Builder + clearStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.mapper.FlowMapperState$Builder + getExpiryTime: + annotations: [] + default: false + type: public + returnType: Long + getFlowId: + annotations: [] + default: false + type: public + returnType: String + getStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.mapper.FlowMapperStateType + hasExpiryTime: + annotations: [] + default: false + type: public + returnType: boolean + hasFlowId: + annotations: [] + default: false + type: public + returnType: boolean + hasStatus: + annotations: [] + default: false + type: public + returnType: boolean + setExpiryTime: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.mapper.FlowMapperState$Builder + params: + value: + annotation: [] + type: Long + setFlowId: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.mapper.FlowMapperState$Builder + params: + value: + annotation: [] + type: String + setStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.mapper.FlowMapperState$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.state.mapper.FlowMapperStateType +net.corda.data.flow.state.mapper.FlowMapperStateType: + annotations: + - AvroGenerated + type: public final class + extends: java.lang.Enum + implements: + - org.apache.avro.generic.GenericEnumSymbol + interface: false + methods: + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + valueOf: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.state.mapper.FlowMapperStateType + params: {} + values: + annotations: [] + default: false + type: public static + returnType: "net.corda.data.flow.state.mapper.FlowMapperStateType[]" + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.flow.state.session.SessionProcessState: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.state.session.SessionProcessState + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getLastProcessedSequenceNum: + annotations: [] + default: false + type: public + returnType: int + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getUndeliveredMessages: + annotations: [] + default: false + type: public + returnType: java.util.List + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.state.session.SessionProcessState$Builder + params: + other: + annotation: [] + type: net.corda.data.flow.state.session.SessionProcessState + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setLastProcessedSequenceNum: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + setUndeliveredMessages: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.flow.state.session.SessionProcessState$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.session.SessionProcessState + clearLastProcessedSequenceNum: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.session.SessionProcessState$Builder + clearUndeliveredMessages: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.session.SessionProcessState$Builder + getLastProcessedSequenceNum: + annotations: [] + default: false + type: public + returnType: int + getUndeliveredMessages: + annotations: [] + default: false + type: public + returnType: java.util.List + hasLastProcessedSequenceNum: + annotations: [] + default: false + type: public + returnType: boolean + hasUndeliveredMessages: + annotations: [] + default: false + type: public + returnType: boolean + setLastProcessedSequenceNum: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.session.SessionProcessState$Builder + params: + value: + annotation: [] + type: int + setUndeliveredMessages: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.session.SessionProcessState$Builder + params: + value: + annotation: [] + type: java.util.List +net.corda.data.flow.state.session.SessionState: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.state.session.SessionState + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getCounterpartyIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getHasScheduledCleanup: + annotations: [] + default: false + type: public + returnType: boolean + getLastReceivedMessageTime: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getReceivedEventsState: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.session.SessionProcessState + getRequireClose: + annotations: [] + default: false + type: public + returnType: boolean + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSendEventsState: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.session.SessionProcessState + getSessionId: + annotations: [] + default: false + type: public + returnType: String + getSessionProperties: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getSessionStartTime: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.session.SessionStateType + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.state.session.SessionState$Builder + params: + other: + annotation: [] + type: net.corda.data.flow.state.session.SessionState + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setCounterpartyIdentity: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setHasScheduledCleanup: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: boolean + setLastReceivedMessageTime: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + setReceivedEventsState: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.flow.state.session.SessionProcessState + setRequireClose: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: boolean + setSendEventsState: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.flow.state.session.SessionProcessState + setSessionId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setSessionProperties: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setSessionStartTime: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + setStatus: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.flow.state.session.SessionStateType + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.flow.state.session.SessionState$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.session.SessionState + clearCounterpartyIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.session.SessionState$Builder + clearHasScheduledCleanup: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.session.SessionState$Builder + clearLastReceivedMessageTime: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.session.SessionState$Builder + clearReceivedEventsState: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.session.SessionState$Builder + clearRequireClose: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.session.SessionState$Builder + clearSendEventsState: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.session.SessionState$Builder + clearSessionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.session.SessionState$Builder + clearSessionProperties: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.session.SessionState$Builder + clearSessionStartTime: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.session.SessionState$Builder + clearStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.session.SessionState$Builder + getCounterpartyIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getCounterpartyIdentityBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + getHasScheduledCleanup: + annotations: [] + default: false + type: public + returnType: boolean + getLastReceivedMessageTime: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getReceivedEventsState: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.session.SessionProcessState + getReceivedEventsStateBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.session.SessionProcessState$Builder + getRequireClose: + annotations: [] + default: false + type: public + returnType: boolean + getSendEventsState: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.session.SessionProcessState + getSendEventsStateBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.session.SessionProcessState$Builder + getSessionId: + annotations: [] + default: false + type: public + returnType: String + getSessionProperties: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getSessionPropertiesBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList$Builder + getSessionStartTime: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.session.SessionStateType + hasCounterpartyIdentity: + annotations: [] + default: false + type: public + returnType: boolean + hasCounterpartyIdentityBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasHasScheduledCleanup: + annotations: [] + default: false + type: public + returnType: boolean + hasLastReceivedMessageTime: + annotations: [] + default: false + type: public + returnType: boolean + hasReceivedEventsState: + annotations: [] + default: false + type: public + returnType: boolean + hasReceivedEventsStateBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasRequireClose: + annotations: [] + default: false + type: public + returnType: boolean + hasSendEventsState: + annotations: [] + default: false + type: public + returnType: boolean + hasSendEventsStateBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasSessionId: + annotations: [] + default: false + type: public + returnType: boolean + hasSessionProperties: + annotations: [] + default: false + type: public + returnType: boolean + hasSessionPropertiesBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasSessionStartTime: + annotations: [] + default: false + type: public + returnType: boolean + hasStatus: + annotations: [] + default: false + type: public + returnType: boolean + setCounterpartyIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.session.SessionState$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setCounterpartyIdentityBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.session.SessionState$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder + setHasScheduledCleanup: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.session.SessionState$Builder + params: + value: + annotation: [] + type: boolean + setLastReceivedMessageTime: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.session.SessionState$Builder + params: + value: + annotation: [] + type: java.time.Instant + setReceivedEventsState: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.session.SessionState$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.state.session.SessionProcessState + setReceivedEventsStateBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.session.SessionState$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.state.session.SessionProcessState$Builder + setRequireClose: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.session.SessionState$Builder + params: + value: + annotation: [] + type: boolean + setSendEventsState: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.session.SessionState$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.state.session.SessionProcessState + setSendEventsStateBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.session.SessionState$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.state.session.SessionProcessState$Builder + setSessionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.session.SessionState$Builder + params: + value: + annotation: [] + type: String + setSessionProperties: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.session.SessionState$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setSessionPropertiesBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.session.SessionState$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList$Builder + setSessionStartTime: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.session.SessionState$Builder + params: + value: + annotation: [] + type: java.time.Instant + setStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.session.SessionState$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.state.session.SessionStateType +net.corda.data.flow.state.session.SessionStateType: + annotations: + - AvroGenerated + type: public final class + extends: java.lang.Enum + implements: + - org.apache.avro.generic.GenericEnumSymbol + interface: false + methods: + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + valueOf: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.state.session.SessionStateType + params: {} + values: + annotations: [] + default: false + type: public static + returnType: "net.corda.data.flow.state.session.SessionStateType[]" + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.flow.state.waiting.CounterPartyFlowInfo: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.state.waiting.CounterPartyFlowInfo + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSessionId: + annotations: [] + default: false + type: public + returnType: String + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.state.waiting.CounterPartyFlowInfo$Builder + params: + other: + annotation: [] + type: net.corda.data.flow.state.waiting.CounterPartyFlowInfo + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setSessionId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.flow.state.waiting.CounterPartyFlowInfo$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.waiting.CounterPartyFlowInfo + clearSessionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.waiting.CounterPartyFlowInfo$Builder + getSessionId: + annotations: [] + default: false + type: public + returnType: String + hasSessionId: + annotations: [] + default: false + type: public + returnType: boolean + setSessionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.waiting.CounterPartyFlowInfo$Builder + params: + value: + annotation: [] + type: String +net.corda.data.flow.state.waiting.SessionConfirmation: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.state.waiting.SessionConfirmation + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSessionIds: + annotations: [] + default: false + type: public + returnType: java.util.List + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getType: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.waiting.SessionConfirmationType + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.state.waiting.SessionConfirmation$Builder + params: + other: + annotation: [] + type: net.corda.data.flow.state.waiting.SessionConfirmation + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setSessionIds: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + setType: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.flow.state.waiting.SessionConfirmationType + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.flow.state.waiting.SessionConfirmation$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.waiting.SessionConfirmation + clearSessionIds: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.waiting.SessionConfirmation$Builder + clearType: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.waiting.SessionConfirmation$Builder + getSessionIds: + annotations: [] + default: false + type: public + returnType: java.util.List + getType: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.waiting.SessionConfirmationType + hasSessionIds: + annotations: [] + default: false + type: public + returnType: boolean + hasType: + annotations: [] + default: false + type: public + returnType: boolean + setSessionIds: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.waiting.SessionConfirmation$Builder + params: + value: + annotation: [] + type: java.util.List + setType: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.waiting.SessionConfirmation$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.state.waiting.SessionConfirmationType +net.corda.data.flow.state.waiting.SessionConfirmationType: + annotations: + - AvroGenerated + type: public final class + extends: java.lang.Enum + implements: + - org.apache.avro.generic.GenericEnumSymbol + interface: false + methods: + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + valueOf: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.state.waiting.SessionConfirmationType + params: {} + values: + annotations: [] + default: false + type: public static + returnType: "net.corda.data.flow.state.waiting.SessionConfirmationType[]" + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.flow.state.waiting.SessionData: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.state.waiting.SessionData + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSessionIds: + annotations: [] + default: false + type: public + returnType: java.util.List + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.state.waiting.SessionData$Builder + params: + other: + annotation: [] + type: net.corda.data.flow.state.waiting.SessionData + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setSessionIds: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.flow.state.waiting.SessionData$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.waiting.SessionData + clearSessionIds: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.waiting.SessionData$Builder + getSessionIds: + annotations: [] + default: false + type: public + returnType: java.util.List + hasSessionIds: + annotations: [] + default: false + type: public + returnType: boolean + setSessionIds: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.waiting.SessionData$Builder + params: + value: + annotation: [] + type: java.util.List +net.corda.data.flow.state.waiting.WaitingFor: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.state.waiting.WaitingFor + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getValue: + annotations: [] + default: false + type: public + returnType: Object + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.state.waiting.WaitingFor$Builder + params: + other: + annotation: [] + type: net.corda.data.flow.state.waiting.WaitingFor + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setValue: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Object + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.flow.state.waiting.WaitingFor$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.waiting.WaitingFor + clearValue: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.waiting.WaitingFor$Builder + getValue: + annotations: [] + default: false + type: public + returnType: Object + hasValue: + annotations: [] + default: false + type: public + returnType: boolean + setValue: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.waiting.WaitingFor$Builder + params: + value: + annotation: [] + type: Object +net.corda.data.flow.state.waiting.Wakeup: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.state.waiting.Wakeup + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.state.waiting.Wakeup$Builder + params: + other: + annotation: [] + type: net.corda.data.flow.state.waiting.Wakeup + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.flow.state.waiting.Wakeup$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.waiting.Wakeup +net.corda.data.flow.state.waiting.external.ExternalEventResponse: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.state.waiting.external.ExternalEventResponse + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getRequestId: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.state.waiting.external.ExternalEventResponse$Builder + params: + other: + annotation: [] + type: net.corda.data.flow.state.waiting.external.ExternalEventResponse + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setRequestId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.flow.state.waiting.external.ExternalEventResponse$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.waiting.external.ExternalEventResponse + clearRequestId: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.waiting.external.ExternalEventResponse$Builder + getRequestId: + annotations: [] + default: false + type: public + returnType: String + hasRequestId: + annotations: [] + default: false + type: public + returnType: boolean + setRequestId: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.state.waiting.external.ExternalEventResponse$Builder + params: + value: + annotation: [] + type: String +net.corda.data.identity.HoldingIdentity: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.identity.HoldingIdentity + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getGroupId: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getX500Name: + annotations: [] + default: false + type: public + returnType: String + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.identity.HoldingIdentity$Builder + params: + other: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setGroupId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setX500Name: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.identity.HoldingIdentity$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + clearGroupId: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + clearX500Name: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + getGroupId: + annotations: [] + default: false + type: public + returnType: String + getX500Name: + annotations: [] + default: false + type: public + returnType: String + hasGroupId: + annotations: [] + default: false + type: public + returnType: boolean + hasX500Name: + annotations: [] + default: false + type: public + returnType: boolean + setGroupId: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + params: + value: + annotation: [] + type: String + setX500Name: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + params: + value: + annotation: [] + type: String +net.corda.data.ledger.persistence.FindSignedGroupParameters: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.persistence.FindSignedGroupParameters + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getHash: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.persistence.FindSignedGroupParameters$Builder + params: + other: + annotation: [] + type: net.corda.data.ledger.persistence.FindSignedGroupParameters + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setHash: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.ledger.persistence.FindSignedGroupParameters$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.FindSignedGroupParameters + clearHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.FindSignedGroupParameters$Builder + getHash: + annotations: [] + default: false + type: public + returnType: String + hasHash: + annotations: [] + default: false + type: public + returnType: boolean + setHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.FindSignedGroupParameters$Builder + params: + value: + annotation: [] + type: String +net.corda.data.ledger.persistence.FindSignedGroupParametersResponse: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.persistence.FindSignedGroupParametersResponse + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getResults: + annotations: [] + default: false + type: public + returnType: java.util.List + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.persistence.FindSignedGroupParametersResponse$Builder + params: + other: + annotation: [] + type: net.corda.data.ledger.persistence.FindSignedGroupParametersResponse + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setResults: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.ledger.persistence.FindSignedGroupParametersResponse$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.FindSignedGroupParametersResponse + clearResults: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.FindSignedGroupParametersResponse$Builder + getResults: + annotations: [] + default: false + type: public + returnType: java.util.List + hasResults: + annotations: [] + default: false + type: public + returnType: boolean + setResults: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.FindSignedGroupParametersResponse$Builder + params: + value: + annotation: [] + type: java.util.List +net.corda.data.ledger.persistence.FindSignedLedgerTransaction: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.persistence.FindSignedLedgerTransaction + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getId: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getTransactionStatus: + annotations: [] + default: false + type: public + returnType: String + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.persistence.FindSignedLedgerTransaction$Builder + params: + other: + annotation: [] + type: net.corda.data.ledger.persistence.FindSignedLedgerTransaction + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setTransactionStatus: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.ledger.persistence.FindSignedLedgerTransaction$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.FindSignedLedgerTransaction + clearId: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.FindSignedLedgerTransaction$Builder + clearTransactionStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.FindSignedLedgerTransaction$Builder + getId: + annotations: [] + default: false + type: public + returnType: String + getTransactionStatus: + annotations: [] + default: false + type: public + returnType: String + hasId: + annotations: [] + default: false + type: public + returnType: boolean + hasTransactionStatus: + annotations: [] + default: false + type: public + returnType: boolean + setId: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.FindSignedLedgerTransaction$Builder + params: + value: + annotation: [] + type: String + setTransactionStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.FindSignedLedgerTransaction$Builder + params: + value: + annotation: [] + type: String +net.corda.data.ledger.persistence.FindTransaction: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.persistence.FindTransaction + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getId: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getTransactionStatus: + annotations: [] + default: false + type: public + returnType: String + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.persistence.FindTransaction$Builder + params: + other: + annotation: [] + type: net.corda.data.ledger.persistence.FindTransaction + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setTransactionStatus: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.ledger.persistence.FindTransaction$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.FindTransaction + clearId: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.FindTransaction$Builder + clearTransactionStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.FindTransaction$Builder + getId: + annotations: [] + default: false + type: public + returnType: String + getTransactionStatus: + annotations: [] + default: false + type: public + returnType: String + hasId: + annotations: [] + default: false + type: public + returnType: boolean + hasTransactionStatus: + annotations: [] + default: false + type: public + returnType: boolean + setId: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.FindTransaction$Builder + params: + value: + annotation: [] + type: String + setTransactionStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.FindTransaction$Builder + params: + value: + annotation: [] + type: String +net.corda.data.ledger.persistence.FindUnconsumedStatesByExactType: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.persistence.FindUnconsumedStatesByExactType + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getStateClassName: + annotations: [] + default: false + type: public + returnType: String + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.persistence.FindUnconsumedStatesByExactType$Builder + params: + other: + annotation: [] + type: net.corda.data.ledger.persistence.FindUnconsumedStatesByExactType + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setStateClassName: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.ledger.persistence.FindUnconsumedStatesByExactType$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.FindUnconsumedStatesByExactType + clearStateClassName: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.FindUnconsumedStatesByExactType$Builder + getStateClassName: + annotations: [] + default: false + type: public + returnType: String + hasStateClassName: + annotations: [] + default: false + type: public + returnType: boolean + setStateClassName: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.FindUnconsumedStatesByExactType$Builder + params: + value: + annotation: [] + type: String +net.corda.data.ledger.persistence.FindUnconsumedStatesByType: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.persistence.FindUnconsumedStatesByType + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getStateClassName: + annotations: [] + default: false + type: public + returnType: String + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.persistence.FindUnconsumedStatesByType$Builder + params: + other: + annotation: [] + type: net.corda.data.ledger.persistence.FindUnconsumedStatesByType + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setStateClassName: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.ledger.persistence.FindUnconsumedStatesByType$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.FindUnconsumedStatesByType + clearStateClassName: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.FindUnconsumedStatesByType$Builder + getStateClassName: + annotations: [] + default: false + type: public + returnType: String + hasStateClassName: + annotations: [] + default: false + type: public + returnType: boolean + setStateClassName: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.FindUnconsumedStatesByType$Builder + params: + value: + annotation: [] + type: String +net.corda.data.ledger.persistence.LedgerPersistenceRequest: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.persistence.LedgerPersistenceRequest + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getFlowExternalEventContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventContext + getHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getLedgerType: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.LedgerTypes + getRequest: + annotations: [] + default: false + type: public + returnType: Object + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.persistence.LedgerPersistenceRequest$Builder + params: + other: + annotation: [] + type: net.corda.data.ledger.persistence.LedgerPersistenceRequest + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setFlowExternalEventContext: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.flow.event.external.ExternalEventContext + setHoldingIdentity: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setLedgerType: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.ledger.persistence.LedgerTypes + setRequest: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Object + setTimestamp: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.ledger.persistence.LedgerPersistenceRequest$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.LedgerPersistenceRequest + clearFlowExternalEventContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.LedgerPersistenceRequest$Builder + clearHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.LedgerPersistenceRequest$Builder + clearLedgerType: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.LedgerPersistenceRequest$Builder + clearRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.LedgerPersistenceRequest$Builder + clearTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.LedgerPersistenceRequest$Builder + getFlowExternalEventContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventContext + getFlowExternalEventContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventContext$Builder + getHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getHoldingIdentityBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + getLedgerType: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.LedgerTypes + getRequest: + annotations: [] + default: false + type: public + returnType: Object + getTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + hasFlowExternalEventContext: + annotations: [] + default: false + type: public + returnType: boolean + hasFlowExternalEventContextBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasHoldingIdentity: + annotations: [] + default: false + type: public + returnType: boolean + hasHoldingIdentityBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasLedgerType: + annotations: [] + default: false + type: public + returnType: boolean + hasRequest: + annotations: [] + default: false + type: public + returnType: boolean + hasTimestamp: + annotations: [] + default: false + type: public + returnType: boolean + setFlowExternalEventContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.LedgerPersistenceRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.event.external.ExternalEventContext + setFlowExternalEventContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.LedgerPersistenceRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.event.external.ExternalEventContext$Builder + setHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.LedgerPersistenceRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setHoldingIdentityBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.LedgerPersistenceRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder + setLedgerType: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.LedgerPersistenceRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.ledger.persistence.LedgerTypes + setRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.LedgerPersistenceRequest$Builder + params: + value: + annotation: [] + type: Object + setTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.LedgerPersistenceRequest$Builder + params: + value: + annotation: [] + type: java.time.Instant +net.corda.data.ledger.persistence.LedgerTypes: + annotations: + - AvroGenerated + type: public final class + extends: java.lang.Enum + implements: + - org.apache.avro.generic.GenericEnumSymbol + interface: false + methods: + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + valueOf: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.persistence.LedgerTypes + params: {} + values: + annotations: [] + default: false + type: public static + returnType: "net.corda.data.ledger.persistence.LedgerTypes[]" + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.ledger.persistence.PersistSignedGroupParametersIfDoNotExist: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.persistence.PersistSignedGroupParametersIfDoNotExist + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSignedGroupParameters: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedGroupParameters + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.persistence.PersistSignedGroupParametersIfDoNotExist$Builder + params: + other: + annotation: [] + type: net.corda.data.ledger.persistence.PersistSignedGroupParametersIfDoNotExist + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setSignedGroupParameters: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.SignedGroupParameters + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.ledger.persistence.PersistSignedGroupParametersIfDoNotExist$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.PersistSignedGroupParametersIfDoNotExist + clearSignedGroupParameters: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.PersistSignedGroupParametersIfDoNotExist$Builder + getSignedGroupParameters: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedGroupParameters + getSignedGroupParametersBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedGroupParameters$Builder + hasSignedGroupParameters: + annotations: [] + default: false + type: public + returnType: boolean + hasSignedGroupParametersBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setSignedGroupParameters: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.PersistSignedGroupParametersIfDoNotExist$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.SignedGroupParameters + setSignedGroupParametersBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.PersistSignedGroupParametersIfDoNotExist$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.SignedGroupParameters$Builder +net.corda.data.ledger.persistence.PersistTransaction: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.persistence.PersistTransaction + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getStatus: + annotations: [] + default: false + type: public + returnType: String + getTransaction: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getVisibleStatesIndexes: + annotations: [] + default: false + type: public + returnType: java.util.List + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.persistence.PersistTransaction$Builder + params: + other: + annotation: [] + type: net.corda.data.ledger.persistence.PersistTransaction + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setStatus: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setTransaction: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setVisibleStatesIndexes: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.ledger.persistence.PersistTransaction$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.PersistTransaction + clearStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.PersistTransaction$Builder + clearTransaction: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.PersistTransaction$Builder + clearVisibleStatesIndexes: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.PersistTransaction$Builder + getStatus: + annotations: [] + default: false + type: public + returnType: String + getTransaction: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getVisibleStatesIndexes: + annotations: [] + default: false + type: public + returnType: java.util.List + hasStatus: + annotations: [] + default: false + type: public + returnType: boolean + hasTransaction: + annotations: [] + default: false + type: public + returnType: boolean + hasVisibleStatesIndexes: + annotations: [] + default: false + type: public + returnType: boolean + setStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.PersistTransaction$Builder + params: + value: + annotation: [] + type: String + setTransaction: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.PersistTransaction$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setVisibleStatesIndexes: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.PersistTransaction$Builder + params: + value: + annotation: [] + type: java.util.List +net.corda.data.ledger.persistence.PersistTransactionIfDoesNotExist: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.persistence.PersistTransactionIfDoesNotExist + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getStatus: + annotations: [] + default: false + type: public + returnType: String + getTransaction: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.persistence.PersistTransactionIfDoesNotExist$Builder + params: + other: + annotation: [] + type: net.corda.data.ledger.persistence.PersistTransactionIfDoesNotExist + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setStatus: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setTransaction: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.ledger.persistence.PersistTransactionIfDoesNotExist$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.PersistTransactionIfDoesNotExist + clearStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.PersistTransactionIfDoesNotExist$Builder + clearTransaction: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.PersistTransactionIfDoesNotExist$Builder + getStatus: + annotations: [] + default: false + type: public + returnType: String + getTransaction: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + hasStatus: + annotations: [] + default: false + type: public + returnType: boolean + hasTransaction: + annotations: [] + default: false + type: public + returnType: boolean + setStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.PersistTransactionIfDoesNotExist$Builder + params: + value: + annotation: [] + type: String + setTransaction: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.PersistTransactionIfDoesNotExist$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer +net.corda.data.ledger.persistence.ResolveStateRefs: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.persistence.ResolveStateRefs + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getStateRefs: + annotations: [] + default: false + type: public + returnType: java.util.List + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.persistence.ResolveStateRefs$Builder + params: + other: + annotation: [] + type: net.corda.data.ledger.persistence.ResolveStateRefs + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setStateRefs: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.ledger.persistence.ResolveStateRefs$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.ResolveStateRefs + clearStateRefs: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.ResolveStateRefs$Builder + getStateRefs: + annotations: [] + default: false + type: public + returnType: java.util.List + hasStateRefs: + annotations: [] + default: false + type: public + returnType: boolean + setStateRefs: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.ResolveStateRefs$Builder + params: + value: + annotation: [] + type: java.util.List +net.corda.data.ledger.persistence.UpdateTransactionStatus: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.persistence.UpdateTransactionStatus + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getId: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getTransactionStatus: + annotations: [] + default: false + type: public + returnType: String + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.persistence.UpdateTransactionStatus$Builder + params: + other: + annotation: [] + type: net.corda.data.ledger.persistence.UpdateTransactionStatus + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setTransactionStatus: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.ledger.persistence.UpdateTransactionStatus$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.UpdateTransactionStatus + clearId: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.UpdateTransactionStatus$Builder + clearTransactionStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.UpdateTransactionStatus$Builder + getId: + annotations: [] + default: false + type: public + returnType: String + getTransactionStatus: + annotations: [] + default: false + type: public + returnType: String + hasId: + annotations: [] + default: false + type: public + returnType: boolean + hasTransactionStatus: + annotations: [] + default: false + type: public + returnType: boolean + setId: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.UpdateTransactionStatus$Builder + params: + value: + annotation: [] + type: String + setTransactionStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.UpdateTransactionStatus$Builder + params: + value: + annotation: [] + type: String +net.corda.data.ledger.persistence.UtxoTransactionOutput: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.persistence.UtxoTransactionOutput + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getData: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getIndex: + annotations: [] + default: false + type: public + returnType: int + getInfo: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getTransactionId: + annotations: [] + default: false + type: public + returnType: String + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.persistence.UtxoTransactionOutput$Builder + params: + other: + annotation: [] + type: net.corda.data.ledger.persistence.UtxoTransactionOutput + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setData: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setIndex: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + setInfo: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setTransactionId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.ledger.persistence.UtxoTransactionOutput$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.UtxoTransactionOutput + clearData: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.UtxoTransactionOutput$Builder + clearIndex: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.UtxoTransactionOutput$Builder + clearInfo: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.UtxoTransactionOutput$Builder + clearTransactionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.UtxoTransactionOutput$Builder + getData: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getIndex: + annotations: [] + default: false + type: public + returnType: int + getInfo: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getTransactionId: + annotations: [] + default: false + type: public + returnType: String + hasData: + annotations: [] + default: false + type: public + returnType: boolean + hasIndex: + annotations: [] + default: false + type: public + returnType: boolean + hasInfo: + annotations: [] + default: false + type: public + returnType: boolean + hasTransactionId: + annotations: [] + default: false + type: public + returnType: boolean + setData: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.UtxoTransactionOutput$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setIndex: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.UtxoTransactionOutput$Builder + params: + value: + annotation: [] + type: int + setInfo: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.UtxoTransactionOutput$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setTransactionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.UtxoTransactionOutput$Builder + params: + value: + annotation: [] + type: String +net.corda.data.ledger.persistence.UtxoTransactionOutputs: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.persistence.UtxoTransactionOutputs + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getTransactionOutputs: + annotations: [] + default: false + type: public + returnType: java.util.List + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.persistence.UtxoTransactionOutputs$Builder + params: + other: + annotation: [] + type: net.corda.data.ledger.persistence.UtxoTransactionOutputs + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setTransactionOutputs: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.ledger.persistence.UtxoTransactionOutputs$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.UtxoTransactionOutputs + clearTransactionOutputs: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.UtxoTransactionOutputs$Builder + getTransactionOutputs: + annotations: [] + default: false + type: public + returnType: java.util.List + hasTransactionOutputs: + annotations: [] + default: false + type: public + returnType: boolean + setTransactionOutputs: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.UtxoTransactionOutputs$Builder + params: + value: + annotation: [] + type: java.util.List +net.corda.data.ledger.utxo.StateRef: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.utxo.StateRef + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getIndex: + annotations: [] + default: false + type: public + returnType: int + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getTransactionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.SecureHash + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.utxo.StateRef$Builder + params: + other: + annotation: [] + type: net.corda.data.ledger.utxo.StateRef + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setIndex: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + setTransactionId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.crypto.SecureHash + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.ledger.utxo.StateRef$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.StateRef + clearIndex: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.StateRef$Builder + clearTransactionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.StateRef$Builder + getIndex: + annotations: [] + default: false + type: public + returnType: int + getTransactionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.SecureHash + getTransactionIdBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.SecureHash$Builder + hasIndex: + annotations: [] + default: false + type: public + returnType: boolean + hasTransactionId: + annotations: [] + default: false + type: public + returnType: boolean + hasTransactionIdBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setIndex: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.StateRef$Builder + params: + value: + annotation: [] + type: int + setTransactionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.StateRef$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.SecureHash + setTransactionIdBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.StateRef$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.SecureHash$Builder +net.corda.data.ledger.utxo.token.selection.data.Token: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.utxo.token.selection.data.Token + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getAmount: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenAmount + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getOwnerHash: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getStateRef: + annotations: [] + default: false + type: public + returnType: String + getTag: + annotations: [] + default: false + type: public + returnType: String + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.utxo.token.selection.data.Token$Builder + params: + other: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.data.Token + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setAmount: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.data.TokenAmount + setOwnerHash: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setStateRef: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setTag: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.ledger.utxo.token.selection.data.Token$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.Token + clearAmount: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.Token$Builder + clearOwnerHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.Token$Builder + clearStateRef: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.Token$Builder + clearTag: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.Token$Builder + getAmount: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenAmount + getAmountBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenAmount$Builder + getOwnerHash: + annotations: [] + default: false + type: public + returnType: String + getStateRef: + annotations: [] + default: false + type: public + returnType: String + getTag: + annotations: [] + default: false + type: public + returnType: String + hasAmount: + annotations: [] + default: false + type: public + returnType: boolean + hasAmountBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasOwnerHash: + annotations: [] + default: false + type: public + returnType: boolean + hasStateRef: + annotations: [] + default: false + type: public + returnType: boolean + hasTag: + annotations: [] + default: false + type: public + returnType: boolean + setAmount: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.Token$Builder + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.data.TokenAmount + setAmountBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.Token$Builder + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.data.TokenAmount$Builder + setOwnerHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.Token$Builder + params: + value: + annotation: [] + type: String + setStateRef: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.Token$Builder + params: + value: + annotation: [] + type: String + setTag: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.Token$Builder + params: + value: + annotation: [] + type: String +net.corda.data.ledger.utxo.token.selection.data.TokenAmount: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenAmount + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getScale: + annotations: [] + default: false + type: public + returnType: int + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getUnscaledValue: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenAmount$Builder + params: + other: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.data.TokenAmount + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setScale: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + setUnscaledValue: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.ledger.utxo.token.selection.data.TokenAmount$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenAmount + clearScale: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenAmount$Builder + clearUnscaledValue: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenAmount$Builder + getScale: + annotations: [] + default: false + type: public + returnType: int + getUnscaledValue: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + hasScale: + annotations: [] + default: false + type: public + returnType: boolean + hasUnscaledValue: + annotations: [] + default: false + type: public + returnType: boolean + setScale: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenAmount$Builder + params: + value: + annotation: [] + type: int + setUnscaledValue: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenAmount$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer +net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQuery: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQuery + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getOwnerHash: + annotations: [] + default: false + type: public + returnType: String + getPoolKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey + getRequestContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventContext + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getTagRegex: + annotations: [] + default: false + type: public + returnType: String + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQuery$Builder + params: + other: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQuery + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setOwnerHash: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setPoolKey: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey + setRequestContext: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.flow.event.external.ExternalEventContext + setTagRegex: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQuery$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQuery + clearOwnerHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQuery$Builder + clearPoolKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQuery$Builder + clearRequestContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQuery$Builder + clearTagRegex: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQuery$Builder + getOwnerHash: + annotations: [] + default: false + type: public + returnType: String + getPoolKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey + getPoolKeyBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder + getRequestContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventContext + getRequestContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventContext$Builder + getTagRegex: + annotations: [] + default: false + type: public + returnType: String + hasOwnerHash: + annotations: [] + default: false + type: public + returnType: boolean + hasPoolKey: + annotations: [] + default: false + type: public + returnType: boolean + hasPoolKeyBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasRequestContext: + annotations: [] + default: false + type: public + returnType: boolean + hasRequestContextBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasTagRegex: + annotations: [] + default: false + type: public + returnType: boolean + setOwnerHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQuery$Builder + params: + value: + annotation: [] + type: String + setPoolKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQuery$Builder + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey + setPoolKeyBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQuery$Builder + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder + setRequestContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQuery$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.event.external.ExternalEventContext + setRequestContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQuery$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.event.external.ExternalEventContext$Builder + setTagRegex: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQuery$Builder + params: + value: + annotation: [] + type: String +net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQueryResult: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQueryResult + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getAvailableBalance: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenAmount + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getPoolKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getTotalBalance: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenAmount + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQueryResult$Builder + params: + other: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQueryResult + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setAvailableBalance: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.data.TokenAmount + setPoolKey: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey + setTotalBalance: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.data.TokenAmount + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQueryResult$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQueryResult + clearAvailableBalance: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQueryResult$Builder + clearPoolKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQueryResult$Builder + clearTotalBalance: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQueryResult$Builder + getAvailableBalance: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenAmount + getAvailableBalanceBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenAmount$Builder + getPoolKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey + getPoolKeyBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder + getTotalBalance: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenAmount + getTotalBalanceBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenAmount$Builder + hasAvailableBalance: + annotations: [] + default: false + type: public + returnType: boolean + hasAvailableBalanceBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasPoolKey: + annotations: [] + default: false + type: public + returnType: boolean + hasPoolKeyBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasTotalBalance: + annotations: [] + default: false + type: public + returnType: boolean + hasTotalBalanceBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setAvailableBalance: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQueryResult$Builder + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.data.TokenAmount + setAvailableBalanceBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQueryResult$Builder + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.data.TokenAmount$Builder + setPoolKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQueryResult$Builder + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey + setPoolKeyBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQueryResult$Builder + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder + setTotalBalance: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQueryResult$Builder + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.data.TokenAmount + setTotalBalanceBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQueryResult$Builder + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.data.TokenAmount$Builder +net.corda.data.ledger.utxo.token.selection.data.TokenCachedSyncCheck: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenCachedSyncCheck + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getPoolKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getTokenRefs: + annotations: [] + default: false + type: public + returnType: java.util.List + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenCachedSyncCheck$Builder + params: + other: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.data.TokenCachedSyncCheck + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setPoolKey: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey + setTokenRefs: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.ledger.utxo.token.selection.data.TokenCachedSyncCheck$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenCachedSyncCheck + clearPoolKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenCachedSyncCheck$Builder + clearTokenRefs: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenCachedSyncCheck$Builder + getPoolKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey + getPoolKeyBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder + getTokenRefs: + annotations: [] + default: false + type: public + returnType: java.util.List + hasPoolKey: + annotations: [] + default: false + type: public + returnType: boolean + hasPoolKeyBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasTokenRefs: + annotations: [] + default: false + type: public + returnType: boolean + setPoolKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenCachedSyncCheck$Builder + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey + setPoolKeyBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenCachedSyncCheck$Builder + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder + setTokenRefs: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenCachedSyncCheck$Builder + params: + value: + annotation: [] + type: java.util.List +net.corda.data.ledger.utxo.token.selection.data.TokenClaim: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaim + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClaimId: + annotations: [] + default: false + type: public + returnType: String + getClaimTimestamp: + annotations: [] + default: false + type: public + returnType: Long + getClaimedTokenStateRefs: + annotations: [] + default: false + type: public + returnType: java.util.List + getClaimedTokens: + annotations: [] + default: false + type: public + returnType: java.util.List + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaim$Builder + params: + other: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.data.TokenClaim + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setClaimId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setClaimTimestamp: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Long + setClaimedTokenStateRefs: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + setClaimedTokens: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.ledger.utxo.token.selection.data.TokenClaim$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaim + clearClaimId: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaim$Builder + clearClaimTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaim$Builder + clearClaimedTokenStateRefs: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaim$Builder + clearClaimedTokens: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaim$Builder + getClaimId: + annotations: [] + default: false + type: public + returnType: String + getClaimTimestamp: + annotations: [] + default: false + type: public + returnType: Long + getClaimedTokenStateRefs: + annotations: [] + default: false + type: public + returnType: java.util.List + getClaimedTokens: + annotations: [] + default: false + type: public + returnType: java.util.List + hasClaimId: + annotations: [] + default: false + type: public + returnType: boolean + hasClaimTimestamp: + annotations: [] + default: false + type: public + returnType: boolean + hasClaimedTokenStateRefs: + annotations: [] + default: false + type: public + returnType: boolean + hasClaimedTokens: + annotations: [] + default: false + type: public + returnType: boolean + setClaimId: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaim$Builder + params: + value: + annotation: [] + type: String + setClaimTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaim$Builder + params: + value: + annotation: [] + type: Long + setClaimedTokenStateRefs: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaim$Builder + params: + value: + annotation: [] + type: java.util.List + setClaimedTokens: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaim$Builder + params: + value: + annotation: [] + type: java.util.List +net.corda.data.ledger.utxo.token.selection.data.TokenClaimQuery: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQuery + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getOwnerHash: + annotations: [] + default: false + type: public + returnType: String + getPoolKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey + getRequestContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventContext + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getTagRegex: + annotations: [] + default: false + type: public + returnType: String + getTargetAmount: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenAmount + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQuery$Builder + params: + other: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQuery + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setOwnerHash: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setPoolKey: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey + setRequestContext: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.flow.event.external.ExternalEventContext + setTagRegex: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setTargetAmount: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.data.TokenAmount + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.ledger.utxo.token.selection.data.TokenClaimQuery$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQuery + clearOwnerHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQuery$Builder + clearPoolKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQuery$Builder + clearRequestContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQuery$Builder + clearTagRegex: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQuery$Builder + clearTargetAmount: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQuery$Builder + getOwnerHash: + annotations: [] + default: false + type: public + returnType: String + getPoolKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey + getPoolKeyBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder + getRequestContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventContext + getRequestContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventContext$Builder + getTagRegex: + annotations: [] + default: false + type: public + returnType: String + getTargetAmount: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenAmount + getTargetAmountBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenAmount$Builder + hasOwnerHash: + annotations: [] + default: false + type: public + returnType: boolean + hasPoolKey: + annotations: [] + default: false + type: public + returnType: boolean + hasPoolKeyBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasRequestContext: + annotations: [] + default: false + type: public + returnType: boolean + hasRequestContextBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasTagRegex: + annotations: [] + default: false + type: public + returnType: boolean + hasTargetAmount: + annotations: [] + default: false + type: public + returnType: boolean + hasTargetAmountBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setOwnerHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQuery$Builder + params: + value: + annotation: [] + type: String + setPoolKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQuery$Builder + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey + setPoolKeyBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQuery$Builder + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder + setRequestContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQuery$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.event.external.ExternalEventContext + setRequestContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQuery$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.event.external.ExternalEventContext$Builder + setTagRegex: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQuery$Builder + params: + value: + annotation: [] + type: String + setTargetAmount: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQuery$Builder + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.data.TokenAmount + setTargetAmountBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQuery$Builder + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.data.TokenAmount$Builder +net.corda.data.ledger.utxo.token.selection.data.TokenClaimQueryResult: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQueryResult + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClaimId: + annotations: [] + default: false + type: public + returnType: String + getClaimedTokens: + annotations: [] + default: false + type: public + returnType: java.util.List + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getPoolKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey + getResultType: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimResultStatus + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQueryResult$Builder + params: + other: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQueryResult + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setClaimId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setClaimedTokens: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + setPoolKey: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey + setResultType: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.data.TokenClaimResultStatus + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.ledger.utxo.token.selection.data.TokenClaimQueryResult$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQueryResult + clearClaimId: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQueryResult$Builder + clearClaimedTokens: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQueryResult$Builder + clearPoolKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQueryResult$Builder + clearResultType: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQueryResult$Builder + getClaimId: + annotations: [] + default: false + type: public + returnType: String + getClaimedTokens: + annotations: [] + default: false + type: public + returnType: java.util.List + getPoolKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey + getPoolKeyBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder + getResultType: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimResultStatus + hasClaimId: + annotations: [] + default: false + type: public + returnType: boolean + hasClaimedTokens: + annotations: [] + default: false + type: public + returnType: boolean + hasPoolKey: + annotations: [] + default: false + type: public + returnType: boolean + hasPoolKeyBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasResultType: + annotations: [] + default: false + type: public + returnType: boolean + setClaimId: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQueryResult$Builder + params: + value: + annotation: [] + type: String + setClaimedTokens: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQueryResult$Builder + params: + value: + annotation: [] + type: java.util.List + setPoolKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQueryResult$Builder + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey + setPoolKeyBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQueryResult$Builder + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder + setResultType: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQueryResult$Builder + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.data.TokenClaimResultStatus +net.corda.data.ledger.utxo.token.selection.data.TokenClaimRelease: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimRelease + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClaimId: + annotations: [] + default: false + type: public + returnType: String + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getPoolKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey + getRequestContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventContext + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getUsedTokenStateRefs: + annotations: [] + default: false + type: public + returnType: java.util.List + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimRelease$Builder + params: + other: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.data.TokenClaimRelease + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setClaimId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setPoolKey: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey + setRequestContext: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.flow.event.external.ExternalEventContext + setUsedTokenStateRefs: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.ledger.utxo.token.selection.data.TokenClaimRelease$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimRelease + clearClaimId: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimRelease$Builder + clearPoolKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimRelease$Builder + clearRequestContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimRelease$Builder + clearUsedTokenStateRefs: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimRelease$Builder + getClaimId: + annotations: [] + default: false + type: public + returnType: String + getPoolKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey + getPoolKeyBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder + getRequestContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventContext + getRequestContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventContext$Builder + getUsedTokenStateRefs: + annotations: [] + default: false + type: public + returnType: java.util.List + hasClaimId: + annotations: [] + default: false + type: public + returnType: boolean + hasPoolKey: + annotations: [] + default: false + type: public + returnType: boolean + hasPoolKeyBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasRequestContext: + annotations: [] + default: false + type: public + returnType: boolean + hasRequestContextBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasUsedTokenStateRefs: + annotations: [] + default: false + type: public + returnType: boolean + setClaimId: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimRelease$Builder + params: + value: + annotation: [] + type: String + setPoolKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimRelease$Builder + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey + setPoolKeyBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimRelease$Builder + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder + setRequestContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimRelease$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.event.external.ExternalEventContext + setRequestContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimRelease$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.event.external.ExternalEventContext$Builder + setUsedTokenStateRefs: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimRelease$Builder + params: + value: + annotation: [] + type: java.util.List +net.corda.data.ledger.utxo.token.selection.data.TokenClaimReleaseAck: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimReleaseAck + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimReleaseAck$Builder + params: + other: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.data.TokenClaimReleaseAck + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.ledger.utxo.token.selection.data.TokenClaimReleaseAck$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimReleaseAck +net.corda.data.ledger.utxo.token.selection.data.TokenClaimResultStatus: + annotations: + - AvroGenerated + type: public final class + extends: java.lang.Enum + implements: + - org.apache.avro.generic.GenericEnumSymbol + interface: false + methods: + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + valueOf: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimResultStatus + params: {} + values: + annotations: [] + default: false + type: public static + returnType: "net.corda.data.ledger.utxo.token.selection.data.TokenClaimResultStatus[]" + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.ledger.utxo.token.selection.data.TokenForceClaimRelease: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenForceClaimRelease + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClaimId: + annotations: [] + default: false + type: public + returnType: String + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getPoolKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenForceClaimRelease$Builder + params: + other: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.data.TokenForceClaimRelease + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setClaimId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setPoolKey: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.ledger.utxo.token.selection.data.TokenForceClaimRelease$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenForceClaimRelease + clearClaimId: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenForceClaimRelease$Builder + clearPoolKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenForceClaimRelease$Builder + getClaimId: + annotations: [] + default: false + type: public + returnType: String + getPoolKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey + getPoolKeyBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder + hasClaimId: + annotations: [] + default: false + type: public + returnType: boolean + hasPoolKey: + annotations: [] + default: false + type: public + returnType: boolean + hasPoolKeyBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setClaimId: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenForceClaimRelease$Builder + params: + value: + annotation: [] + type: String + setPoolKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenForceClaimRelease$Builder + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey + setPoolKeyBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenForceClaimRelease$Builder + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder +net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncRequest: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncRequest + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncRequest$Builder + params: + other: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncRequest + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncRequest$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncRequest +net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncState: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncState + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getBlocksCompleted: + annotations: [] + default: false + type: public + returnType: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getLastBlockCompletedTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getNextBlockStartOffset: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getRecordsCompleted: + annotations: [] + default: false + type: public + returnType: int + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getStartedTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncState$Builder + params: + other: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncState + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setBlocksCompleted: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + setLastBlockCompletedTimestamp: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + setNextBlockStartOffset: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + setRecordsCompleted: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + setStartedTimestamp: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncState$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncState + clearBlocksCompleted: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncState$Builder + clearLastBlockCompletedTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncState$Builder + clearNextBlockStartOffset: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncState$Builder + clearRecordsCompleted: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncState$Builder + clearStartedTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncState$Builder + getBlocksCompleted: + annotations: [] + default: false + type: public + returnType: int + getLastBlockCompletedTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getNextBlockStartOffset: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getRecordsCompleted: + annotations: [] + default: false + type: public + returnType: int + getStartedTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + hasBlocksCompleted: + annotations: [] + default: false + type: public + returnType: boolean + hasLastBlockCompletedTimestamp: + annotations: [] + default: false + type: public + returnType: boolean + hasNextBlockStartOffset: + annotations: [] + default: false + type: public + returnType: boolean + hasRecordsCompleted: + annotations: [] + default: false + type: public + returnType: boolean + hasStartedTimestamp: + annotations: [] + default: false + type: public + returnType: boolean + setBlocksCompleted: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncState$Builder + params: + value: + annotation: [] + type: int + setLastBlockCompletedTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncState$Builder + params: + value: + annotation: [] + type: java.time.Instant + setNextBlockStartOffset: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncState$Builder + params: + value: + annotation: [] + type: java.time.Instant + setRecordsCompleted: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncState$Builder + params: + value: + annotation: [] + type: int + setStartedTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncState$Builder + params: + value: + annotation: [] + type: java.time.Instant +net.corda.data.ledger.utxo.token.selection.data.TokenLedgerChange: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenLedgerChange + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConsumedTokens: + annotations: [] + default: false + type: public + returnType: java.util.List + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getPoolKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey + getProducedTokens: + annotations: [] + default: false + type: public + returnType: java.util.List + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenLedgerChange$Builder + params: + other: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.data.TokenLedgerChange + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setConsumedTokens: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + setPoolKey: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey + setProducedTokens: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.ledger.utxo.token.selection.data.TokenLedgerChange$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenLedgerChange + clearConsumedTokens: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenLedgerChange$Builder + clearPoolKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenLedgerChange$Builder + clearProducedTokens: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenLedgerChange$Builder + getConsumedTokens: + annotations: [] + default: false + type: public + returnType: java.util.List + getPoolKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey + getPoolKeyBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder + getProducedTokens: + annotations: [] + default: false + type: public + returnType: java.util.List + hasConsumedTokens: + annotations: [] + default: false + type: public + returnType: boolean + hasPoolKey: + annotations: [] + default: false + type: public + returnType: boolean + hasPoolKeyBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasProducedTokens: + annotations: [] + default: false + type: public + returnType: boolean + setConsumedTokens: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenLedgerChange$Builder + params: + value: + annotation: [] + type: java.util.List + setPoolKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenLedgerChange$Builder + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey + setPoolKeyBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenLedgerChange$Builder + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder + setProducedTokens: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenLedgerChange$Builder + params: + value: + annotation: [] + type: java.util.List +net.corda.data.ledger.utxo.token.selection.data.TokenPoolPeriodicSyncState: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenPoolPeriodicSyncState + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getNextBlockStartOffset: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getPoolKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenPoolPeriodicSyncState$Builder + params: + other: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.data.TokenPoolPeriodicSyncState + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setNextBlockStartOffset: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + setPoolKey: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.ledger.utxo.token.selection.data.TokenPoolPeriodicSyncState$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenPoolPeriodicSyncState + clearNextBlockStartOffset: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenPoolPeriodicSyncState$Builder + clearPoolKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenPoolPeriodicSyncState$Builder + getNextBlockStartOffset: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getPoolKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey + getPoolKeyBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder + hasNextBlockStartOffset: + annotations: [] + default: false + type: public + returnType: boolean + hasPoolKey: + annotations: [] + default: false + type: public + returnType: boolean + hasPoolKeyBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setNextBlockStartOffset: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenPoolPeriodicSyncState$Builder + params: + value: + annotation: [] + type: java.time.Instant + setPoolKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenPoolPeriodicSyncState$Builder + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey + setPoolKeyBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenPoolPeriodicSyncState$Builder + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder +net.corda.data.ledger.utxo.token.selection.data.TokenSyncWakeUp: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenSyncWakeUp + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenSyncWakeUp$Builder + params: + other: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.data.TokenSyncWakeUp + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.ledger.utxo.token.selection.data.TokenSyncWakeUp$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenSyncWakeUp +net.corda.data.ledger.utxo.token.selection.data.TokenUnspentSyncCheck: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenUnspentSyncCheck + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getTokenRefs: + annotations: [] + default: false + type: public + returnType: java.util.List + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenUnspentSyncCheck$Builder + params: + other: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.data.TokenUnspentSyncCheck + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setTokenRefs: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.ledger.utxo.token.selection.data.TokenUnspentSyncCheck$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenUnspentSyncCheck + clearTokenRefs: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenUnspentSyncCheck$Builder + getTokenRefs: + annotations: [] + default: false + type: public + returnType: java.util.List + hasTokenRefs: + annotations: [] + default: false + type: public + returnType: boolean + setTokenRefs: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenUnspentSyncCheck$Builder + params: + value: + annotation: [] + type: java.util.List +net.corda.data.ledger.utxo.token.selection.event.TokenPoolCacheEvent: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.utxo.token.selection.event.TokenPoolCacheEvent + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getPayload: + annotations: [] + default: false + type: public + returnType: Object + getPoolKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.utxo.token.selection.event.TokenPoolCacheEvent$Builder + params: + other: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.event.TokenPoolCacheEvent + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setPayload: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Object + setPoolKey: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.ledger.utxo.token.selection.event.TokenPoolCacheEvent$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.event.TokenPoolCacheEvent + clearPayload: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.event.TokenPoolCacheEvent$Builder + clearPoolKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.event.TokenPoolCacheEvent$Builder + getPayload: + annotations: [] + default: false + type: public + returnType: Object + getPoolKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey + getPoolKeyBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder + hasPayload: + annotations: [] + default: false + type: public + returnType: boolean + hasPoolKey: + annotations: [] + default: false + type: public + returnType: boolean + hasPoolKeyBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setPayload: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.event.TokenPoolCacheEvent$Builder + params: + value: + annotation: [] + type: Object + setPoolKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.event.TokenPoolCacheEvent$Builder + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey + setPoolKeyBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.event.TokenPoolCacheEvent$Builder + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder +net.corda.data.ledger.utxo.token.selection.event.TokenSyncEvent: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.utxo.token.selection.event.TokenSyncEvent + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getPayload: + annotations: [] + default: false + type: public + returnType: Object + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.utxo.token.selection.event.TokenSyncEvent$Builder + params: + other: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.event.TokenSyncEvent + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setHoldingIdentity: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setPayload: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Object + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.ledger.utxo.token.selection.event.TokenSyncEvent$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.event.TokenSyncEvent + clearHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.event.TokenSyncEvent$Builder + clearPayload: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.event.TokenSyncEvent$Builder + getHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getHoldingIdentityBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + getPayload: + annotations: [] + default: false + type: public + returnType: Object + hasHoldingIdentity: + annotations: [] + default: false + type: public + returnType: boolean + hasHoldingIdentityBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasPayload: + annotations: [] + default: false + type: public + returnType: boolean + setHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.event.TokenSyncEvent$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setHoldingIdentityBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.event.TokenSyncEvent$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder + setPayload: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.event.TokenSyncEvent$Builder + params: + value: + annotation: [] + type: Object +net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getIssuerHash: + annotations: [] + default: false + type: public + returnType: String + getNotaryX500Name: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getShortHolderId: + annotations: [] + default: false + type: public + returnType: String + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getSymbol: + annotations: [] + default: false + type: public + returnType: String + getTokenType: + annotations: [] + default: false + type: public + returnType: String + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder + params: + other: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setIssuerHash: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setNotaryX500Name: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setShortHolderId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setSymbol: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setTokenType: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey + clearIssuerHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder + clearNotaryX500Name: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder + clearShortHolderId: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder + clearSymbol: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder + clearTokenType: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder + getIssuerHash: + annotations: [] + default: false + type: public + returnType: String + getNotaryX500Name: + annotations: [] + default: false + type: public + returnType: String + getShortHolderId: + annotations: [] + default: false + type: public + returnType: String + getSymbol: + annotations: [] + default: false + type: public + returnType: String + getTokenType: + annotations: [] + default: false + type: public + returnType: String + hasIssuerHash: + annotations: [] + default: false + type: public + returnType: boolean + hasNotaryX500Name: + annotations: [] + default: false + type: public + returnType: boolean + hasShortHolderId: + annotations: [] + default: false + type: public + returnType: boolean + hasSymbol: + annotations: [] + default: false + type: public + returnType: boolean + hasTokenType: + annotations: [] + default: false + type: public + returnType: boolean + setIssuerHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder + params: + value: + annotation: [] + type: String + setNotaryX500Name: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder + params: + value: + annotation: [] + type: String + setShortHolderId: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder + params: + value: + annotation: [] + type: String + setSymbol: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder + params: + value: + annotation: [] + type: String + setTokenType: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder + params: + value: + annotation: [] + type: String +net.corda.data.ledger.utxo.token.selection.state.TokenPoolCacheState: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.utxo.token.selection.state.TokenPoolCacheState + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getAvailableTokens: + annotations: [] + default: false + type: public + returnType: java.util.List + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getPoolKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getTokenClaims: + annotations: [] + default: false + type: public + returnType: java.util.List + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.utxo.token.selection.state.TokenPoolCacheState$Builder + params: + other: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.state.TokenPoolCacheState + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setAvailableTokens: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + setPoolKey: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey + setTokenClaims: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.ledger.utxo.token.selection.state.TokenPoolCacheState$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.state.TokenPoolCacheState + clearAvailableTokens: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.state.TokenPoolCacheState$Builder + clearPoolKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.state.TokenPoolCacheState$Builder + clearTokenClaims: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.state.TokenPoolCacheState$Builder + getAvailableTokens: + annotations: [] + default: false + type: public + returnType: java.util.List + getPoolKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey + getPoolKeyBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder + getTokenClaims: + annotations: [] + default: false + type: public + returnType: java.util.List + hasAvailableTokens: + annotations: [] + default: false + type: public + returnType: boolean + hasPoolKey: + annotations: [] + default: false + type: public + returnType: boolean + hasPoolKeyBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasTokenClaims: + annotations: [] + default: false + type: public + returnType: boolean + setAvailableTokens: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.state.TokenPoolCacheState$Builder + params: + value: + annotation: [] + type: java.util.List + setPoolKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.state.TokenPoolCacheState$Builder + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey + setPoolKeyBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.state.TokenPoolCacheState$Builder + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder + setTokenClaims: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.state.TokenPoolCacheState$Builder + params: + value: + annotation: [] + type: java.util.List +net.corda.data.ledger.utxo.token.selection.state.TokenSyncMode: + annotations: + - AvroGenerated + type: public final class + extends: java.lang.Enum + implements: + - org.apache.avro.generic.GenericEnumSymbol + interface: false + methods: + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + valueOf: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.utxo.token.selection.state.TokenSyncMode + params: {} + values: + annotations: [] + default: false + type: public static + returnType: "net.corda.data.ledger.utxo.token.selection.state.TokenSyncMode[]" + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.ledger.utxo.token.selection.state.TokenSyncState: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.utxo.token.selection.state.TokenSyncState + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getFullSyncState: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncState + getHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getMode: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.state.TokenSyncMode + getNextWakeup: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getPeriodicSyncState: + annotations: [] + default: false + type: public + returnType: java.util.List + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getTransientFailureCount: + annotations: [] + default: false + type: public + returnType: int + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.utxo.token.selection.state.TokenSyncState$Builder + params: + other: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.state.TokenSyncState + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setFullSyncState: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncState + setHoldingIdentity: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setMode: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.state.TokenSyncMode + setNextWakeup: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + setPeriodicSyncState: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + setTransientFailureCount: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.ledger.utxo.token.selection.state.TokenSyncState$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.state.TokenSyncState + clearFullSyncState: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.state.TokenSyncState$Builder + clearHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.state.TokenSyncState$Builder + clearMode: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.state.TokenSyncState$Builder + clearNextWakeup: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.state.TokenSyncState$Builder + clearPeriodicSyncState: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.state.TokenSyncState$Builder + clearTransientFailureCount: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.state.TokenSyncState$Builder + getFullSyncState: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncState + getFullSyncStateBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncState$Builder + getHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getHoldingIdentityBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + getMode: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.state.TokenSyncMode + getNextWakeup: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getPeriodicSyncState: + annotations: [] + default: false + type: public + returnType: java.util.List + getTransientFailureCount: + annotations: [] + default: false + type: public + returnType: int + hasFullSyncState: + annotations: [] + default: false + type: public + returnType: boolean + hasFullSyncStateBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasHoldingIdentity: + annotations: [] + default: false + type: public + returnType: boolean + hasHoldingIdentityBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasMode: + annotations: [] + default: false + type: public + returnType: boolean + hasNextWakeup: + annotations: [] + default: false + type: public + returnType: boolean + hasPeriodicSyncState: + annotations: [] + default: false + type: public + returnType: boolean + hasTransientFailureCount: + annotations: [] + default: false + type: public + returnType: boolean + setFullSyncState: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.state.TokenSyncState$Builder + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncState + setFullSyncStateBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.state.TokenSyncState$Builder + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncState$Builder + setHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.state.TokenSyncState$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setHoldingIdentityBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.state.TokenSyncState$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder + setMode: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.state.TokenSyncState$Builder + params: + value: + annotation: [] + type: net.corda.data.ledger.utxo.token.selection.state.TokenSyncMode + setNextWakeup: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.state.TokenSyncState$Builder + params: + value: + annotation: [] + type: java.time.Instant + setPeriodicSyncState: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.state.TokenSyncState$Builder + params: + value: + annotation: [] + type: java.util.List + setTransientFailureCount: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.utxo.token.selection.state.TokenSyncState$Builder + params: + value: + annotation: [] + type: int +net.corda.data.membership.PersistentGroupParameters: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.PersistentGroupParameters + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getGroupParameters: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedGroupParameters + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getViewOwner: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.PersistentGroupParameters$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.PersistentGroupParameters + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setGroupParameters: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.SignedGroupParameters + setViewOwner: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.PersistentGroupParameters$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.PersistentGroupParameters + clearGroupParameters: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.PersistentGroupParameters$Builder + clearViewOwner: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.PersistentGroupParameters$Builder + getGroupParameters: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedGroupParameters + getGroupParametersBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedGroupParameters$Builder + getViewOwner: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getViewOwnerBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + hasGroupParameters: + annotations: [] + default: false + type: public + returnType: boolean + hasGroupParametersBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasViewOwner: + annotations: [] + default: false + type: public + returnType: boolean + hasViewOwnerBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setGroupParameters: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.PersistentGroupParameters$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.SignedGroupParameters + setGroupParametersBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.PersistentGroupParameters$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.SignedGroupParameters$Builder + setViewOwner: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.PersistentGroupParameters$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setViewOwnerBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.PersistentGroupParameters$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder +net.corda.data.membership.PersistentMemberInfo: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.PersistentMemberInfo + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getMemberContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getMgmContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSerializedMgmContext: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getSignedMemberContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedData + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getViewOwningMember: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.PersistentMemberInfo$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.PersistentMemberInfo + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setMemberContext: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setMgmContext: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setSerializedMgmContext: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setSignedMemberContext: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.SignedData + setViewOwningMember: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.PersistentMemberInfo$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.PersistentMemberInfo + clearMemberContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.PersistentMemberInfo$Builder + clearMgmContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.PersistentMemberInfo$Builder + clearSerializedMgmContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.PersistentMemberInfo$Builder + clearSignedMemberContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.PersistentMemberInfo$Builder + clearViewOwningMember: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.PersistentMemberInfo$Builder + getMemberContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getMemberContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList$Builder + getMgmContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getMgmContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList$Builder + getSerializedMgmContext: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getSignedMemberContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedData + getSignedMemberContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedData$Builder + getViewOwningMember: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getViewOwningMemberBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + hasMemberContext: + annotations: [] + default: false + type: public + returnType: boolean + hasMemberContextBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasMgmContext: + annotations: [] + default: false + type: public + returnType: boolean + hasMgmContextBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasSerializedMgmContext: + annotations: [] + default: false + type: public + returnType: boolean + hasSignedMemberContext: + annotations: [] + default: false + type: public + returnType: boolean + hasSignedMemberContextBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasViewOwningMember: + annotations: [] + default: false + type: public + returnType: boolean + hasViewOwningMemberBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setMemberContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.PersistentMemberInfo$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setMemberContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.PersistentMemberInfo$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList$Builder + setMgmContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.PersistentMemberInfo$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setMgmContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.PersistentMemberInfo$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList$Builder + setSerializedMgmContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.PersistentMemberInfo$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setSignedMemberContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.PersistentMemberInfo$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.SignedData + setSignedMemberContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.PersistentMemberInfo$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.SignedData$Builder + setViewOwningMember: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.PersistentMemberInfo$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setViewOwningMemberBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.PersistentMemberInfo$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder +net.corda.data.membership.PersistentSignedMemberInfo: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.PersistentSignedMemberInfo + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getMemberSignature: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureWithKey + getMemberSignatureSpec: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureSpec + getPersistentMemberInfo: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.PersistentMemberInfo + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.PersistentSignedMemberInfo$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.PersistentSignedMemberInfo + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setMemberSignature: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoSignatureWithKey + setMemberSignatureSpec: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoSignatureSpec + setPersistentMemberInfo: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.PersistentMemberInfo + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.PersistentSignedMemberInfo$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.PersistentSignedMemberInfo + clearMemberSignature: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.PersistentSignedMemberInfo$Builder + clearMemberSignatureSpec: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.PersistentSignedMemberInfo$Builder + clearPersistentMemberInfo: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.PersistentSignedMemberInfo$Builder + getMemberSignature: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureWithKey + getMemberSignatureBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureWithKey$Builder + getMemberSignatureSpec: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureSpec + getMemberSignatureSpecBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureSpec$Builder + getPersistentMemberInfo: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.PersistentMemberInfo + getPersistentMemberInfoBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.PersistentMemberInfo$Builder + hasMemberSignature: + annotations: [] + default: false + type: public + returnType: boolean + hasMemberSignatureBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasMemberSignatureSpec: + annotations: [] + default: false + type: public + returnType: boolean + hasMemberSignatureSpecBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasPersistentMemberInfo: + annotations: [] + default: false + type: public + returnType: boolean + hasPersistentMemberInfoBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setMemberSignature: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.PersistentSignedMemberInfo$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoSignatureWithKey + setMemberSignatureBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.PersistentSignedMemberInfo$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoSignatureWithKey$Builder + setMemberSignatureSpec: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.PersistentSignedMemberInfo$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoSignatureSpec + setMemberSignatureSpecBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.PersistentSignedMemberInfo$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoSignatureSpec$Builder + setPersistentMemberInfo: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.PersistentSignedMemberInfo$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.PersistentMemberInfo + setPersistentMemberInfoBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.PersistentSignedMemberInfo$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.PersistentMemberInfo$Builder +net.corda.data.membership.SignedData: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.SignedData + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getData: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSignature: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureWithKey + getSignatureSpec: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureSpec + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.SignedData$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.SignedData + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setData: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setSignature: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoSignatureWithKey + setSignatureSpec: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoSignatureSpec + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.SignedData$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedData + clearData: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedData$Builder + clearSignature: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedData$Builder + clearSignatureSpec: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedData$Builder + getData: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getSignature: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureWithKey + getSignatureBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureWithKey$Builder + getSignatureSpec: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureSpec + getSignatureSpecBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureSpec$Builder + hasData: + annotations: [] + default: false + type: public + returnType: boolean + hasSignature: + annotations: [] + default: false + type: public + returnType: boolean + hasSignatureBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasSignatureSpec: + annotations: [] + default: false + type: public + returnType: boolean + hasSignatureSpecBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setData: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedData$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setSignature: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedData$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoSignatureWithKey + setSignatureBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedData$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoSignatureWithKey$Builder + setSignatureSpec: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedData$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoSignatureSpec + setSignatureSpecBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedData$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoSignatureSpec$Builder +net.corda.data.membership.SignedGroupParameters: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.SignedGroupParameters + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getGroupParameters: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getMgmSignature: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureWithKey + getMgmSignatureSpec: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureSpec + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.SignedGroupParameters$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.SignedGroupParameters + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setGroupParameters: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setMgmSignature: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoSignatureWithKey + setMgmSignatureSpec: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoSignatureSpec + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.SignedGroupParameters$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedGroupParameters + clearGroupParameters: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedGroupParameters$Builder + clearMgmSignature: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedGroupParameters$Builder + clearMgmSignatureSpec: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedGroupParameters$Builder + getGroupParameters: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getMgmSignature: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureWithKey + getMgmSignatureBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureWithKey$Builder + getMgmSignatureSpec: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureSpec + getMgmSignatureSpecBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureSpec$Builder + hasGroupParameters: + annotations: [] + default: false + type: public + returnType: boolean + hasMgmSignature: + annotations: [] + default: false + type: public + returnType: boolean + hasMgmSignatureBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasMgmSignatureSpec: + annotations: [] + default: false + type: public + returnType: boolean + hasMgmSignatureSpecBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setGroupParameters: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedGroupParameters$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setMgmSignature: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedGroupParameters$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoSignatureWithKey + setMgmSignatureBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedGroupParameters$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoSignatureWithKey$Builder + setMgmSignatureSpec: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedGroupParameters$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoSignatureSpec + setMgmSignatureSpecBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedGroupParameters$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoSignatureSpec$Builder +net.corda.data.membership.SignedMemberInfo: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.SignedMemberInfo + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getMemberContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedData + getMgmContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedData + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.SignedMemberInfo$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.SignedMemberInfo + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setMemberContext: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.SignedData + setMgmContext: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.SignedData + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.SignedMemberInfo$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedMemberInfo + clearMemberContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedMemberInfo$Builder + clearMgmContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedMemberInfo$Builder + getMemberContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedData + getMemberContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedData$Builder + getMgmContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedData + getMgmContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedData$Builder + hasMemberContext: + annotations: [] + default: false + type: public + returnType: boolean + hasMemberContextBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasMgmContext: + annotations: [] + default: false + type: public + returnType: boolean + hasMgmContextBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setMemberContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedMemberInfo$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.SignedData + setMemberContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedMemberInfo$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.SignedData$Builder + setMgmContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedMemberInfo$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.SignedData + setMgmContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedMemberInfo$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.SignedData$Builder +net.corda.data.membership.StaticNetworkInfo: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.StaticNetworkInfo + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getGroupId: + annotations: [] + default: false + type: public + returnType: String + getGroupParameters: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getMgmPrivateSigningKey: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getMgmPublicSigningKey: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getVersion: + annotations: [] + default: false + type: public + returnType: int + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.StaticNetworkInfo$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.StaticNetworkInfo + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setGroupId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setGroupParameters: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setMgmPrivateSigningKey: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setMgmPublicSigningKey: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setVersion: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.StaticNetworkInfo$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.StaticNetworkInfo + clearGroupId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.StaticNetworkInfo$Builder + clearGroupParameters: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.StaticNetworkInfo$Builder + clearMgmPrivateSigningKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.StaticNetworkInfo$Builder + clearMgmPublicSigningKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.StaticNetworkInfo$Builder + clearVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.StaticNetworkInfo$Builder + getGroupId: + annotations: [] + default: false + type: public + returnType: String + getGroupParameters: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getGroupParametersBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList$Builder + getMgmPrivateSigningKey: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getMgmPublicSigningKey: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getVersion: + annotations: [] + default: false + type: public + returnType: int + hasGroupId: + annotations: [] + default: false + type: public + returnType: boolean + hasGroupParameters: + annotations: [] + default: false + type: public + returnType: boolean + hasGroupParametersBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasMgmPrivateSigningKey: + annotations: [] + default: false + type: public + returnType: boolean + hasMgmPublicSigningKey: + annotations: [] + default: false + type: public + returnType: boolean + hasVersion: + annotations: [] + default: false + type: public + returnType: boolean + setGroupId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.StaticNetworkInfo$Builder + params: + value: + annotation: [] + type: String + setGroupParameters: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.StaticNetworkInfo$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setGroupParametersBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.StaticNetworkInfo$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList$Builder + setMgmPrivateSigningKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.StaticNetworkInfo$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setMgmPublicSigningKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.StaticNetworkInfo$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.StaticNetworkInfo$Builder + params: + value: + annotation: [] + type: int +net.corda.data.membership.actions.request.DistributeGroupParameters: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.actions.request.DistributeGroupParameters + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getMgm: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getMinimumGroupParametersEpoch: + annotations: [] + default: false + type: public + returnType: Integer + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.actions.request.DistributeGroupParameters$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.actions.request.DistributeGroupParameters + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setMgm: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setMinimumGroupParametersEpoch: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Integer + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.actions.request.DistributeGroupParameters$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.actions.request.DistributeGroupParameters + clearMgm: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.actions.request.DistributeGroupParameters$Builder + clearMinimumGroupParametersEpoch: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.actions.request.DistributeGroupParameters$Builder + getMgm: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getMgmBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + getMinimumGroupParametersEpoch: + annotations: [] + default: false + type: public + returnType: Integer + hasMgm: + annotations: [] + default: false + type: public + returnType: boolean + hasMgmBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasMinimumGroupParametersEpoch: + annotations: [] + default: false + type: public + returnType: boolean + setMgm: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.actions.request.DistributeGroupParameters$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setMgmBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.actions.request.DistributeGroupParameters$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder + setMinimumGroupParametersEpoch: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.actions.request.DistributeGroupParameters$Builder + params: + value: + annotation: [] + type: Integer +net.corda.data.membership.actions.request.DistributeMemberInfo: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.actions.request.DistributeMemberInfo + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getMgm: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getMinimumGroupParametersEpoch: + annotations: [] + default: false + type: public + returnType: Integer + getMinimumUpdatedMemberSerial: + annotations: [] + default: false + type: public + returnType: Long + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getUpdatedMember: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.actions.request.DistributeMemberInfo$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.actions.request.DistributeMemberInfo + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setMgm: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setMinimumGroupParametersEpoch: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Integer + setMinimumUpdatedMemberSerial: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Long + setUpdatedMember: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.actions.request.DistributeMemberInfo$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.actions.request.DistributeMemberInfo + clearMgm: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.actions.request.DistributeMemberInfo$Builder + clearMinimumGroupParametersEpoch: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.actions.request.DistributeMemberInfo$Builder + clearMinimumUpdatedMemberSerial: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.actions.request.DistributeMemberInfo$Builder + clearUpdatedMember: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.actions.request.DistributeMemberInfo$Builder + getMgm: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getMgmBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + getMinimumGroupParametersEpoch: + annotations: [] + default: false + type: public + returnType: Integer + getMinimumUpdatedMemberSerial: + annotations: [] + default: false + type: public + returnType: Long + getUpdatedMember: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getUpdatedMemberBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + hasMgm: + annotations: [] + default: false + type: public + returnType: boolean + hasMgmBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasMinimumGroupParametersEpoch: + annotations: [] + default: false + type: public + returnType: boolean + hasMinimumUpdatedMemberSerial: + annotations: [] + default: false + type: public + returnType: boolean + hasUpdatedMember: + annotations: [] + default: false + type: public + returnType: boolean + hasUpdatedMemberBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setMgm: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.actions.request.DistributeMemberInfo$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setMgmBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.actions.request.DistributeMemberInfo$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder + setMinimumGroupParametersEpoch: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.actions.request.DistributeMemberInfo$Builder + params: + value: + annotation: [] + type: Integer + setMinimumUpdatedMemberSerial: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.actions.request.DistributeMemberInfo$Builder + params: + value: + annotation: [] + type: Long + setUpdatedMember: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.actions.request.DistributeMemberInfo$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setUpdatedMemberBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.actions.request.DistributeMemberInfo$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder +net.corda.data.membership.actions.request.MembershipActionsRequest: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.actions.request.MembershipActionsRequest + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getRequest: + annotations: [] + default: false + type: public + returnType: Object + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.actions.request.MembershipActionsRequest$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.actions.request.MembershipActionsRequest + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setRequest: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Object + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.actions.request.MembershipActionsRequest$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.actions.request.MembershipActionsRequest + clearRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.actions.request.MembershipActionsRequest$Builder + getRequest: + annotations: [] + default: false + type: public + returnType: Object + hasRequest: + annotations: [] + default: false + type: public + returnType: boolean + setRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.actions.request.MembershipActionsRequest$Builder + params: + value: + annotation: [] + type: Object +net.corda.data.membership.async.request.MembershipAsyncRequest: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.async.request.MembershipAsyncRequest + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.async.request.RegistrationAsyncRequest + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getState: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.async.request.MembershipAsyncRequestState + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.async.request.MembershipAsyncRequest$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.async.request.MembershipAsyncRequest + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setRequest: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.async.request.RegistrationAsyncRequest + setState: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.async.request.MembershipAsyncRequestState + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.async.request.MembershipAsyncRequest$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.async.request.MembershipAsyncRequest + clearRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.async.request.MembershipAsyncRequest$Builder + clearState: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.async.request.MembershipAsyncRequest$Builder + getRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.async.request.RegistrationAsyncRequest + getRequestBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.async.request.RegistrationAsyncRequest$Builder + getState: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.async.request.MembershipAsyncRequestState + getStateBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.async.request.MembershipAsyncRequestState$Builder + hasRequest: + annotations: [] + default: false + type: public + returnType: boolean + hasRequestBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasState: + annotations: [] + default: false + type: public + returnType: boolean + hasStateBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.async.request.MembershipAsyncRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.async.request.RegistrationAsyncRequest + setRequestBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.async.request.MembershipAsyncRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.async.request.RegistrationAsyncRequest$Builder + setState: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.async.request.MembershipAsyncRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.async.request.MembershipAsyncRequestState + setStateBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.async.request.MembershipAsyncRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.async.request.MembershipAsyncRequestState$Builder +net.corda.data.membership.async.request.MembershipAsyncRequestState: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.async.request.MembershipAsyncRequestState + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getCause: + annotations: [] + default: false + type: public + returnType: Object + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.async.request.RegistrationAsyncRequest + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.async.request.MembershipAsyncRequestState$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.async.request.MembershipAsyncRequestState + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setCause: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Object + setRequest: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.async.request.RegistrationAsyncRequest + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.async.request.MembershipAsyncRequestState$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.async.request.MembershipAsyncRequestState + clearCause: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.async.request.MembershipAsyncRequestState$Builder + clearRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.async.request.MembershipAsyncRequestState$Builder + getCause: + annotations: [] + default: false + type: public + returnType: Object + getRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.async.request.RegistrationAsyncRequest + getRequestBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.async.request.RegistrationAsyncRequest$Builder + hasCause: + annotations: [] + default: false + type: public + returnType: boolean + hasRequest: + annotations: [] + default: false + type: public + returnType: boolean + hasRequestBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setCause: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.async.request.MembershipAsyncRequestState$Builder + params: + value: + annotation: [] + type: Object + setRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.async.request.MembershipAsyncRequestState$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.async.request.RegistrationAsyncRequest + setRequestBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.async.request.MembershipAsyncRequestState$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.async.request.RegistrationAsyncRequest$Builder +net.corda.data.membership.async.request.RegistrationAsyncRequest: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.async.request.RegistrationAsyncRequest + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getHoldingIdentityId: + annotations: [] + default: false + type: public + returnType: String + getRequestId: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.async.request.RegistrationAsyncRequest$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.async.request.RegistrationAsyncRequest + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setContext: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setHoldingIdentityId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setRequestId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.async.request.RegistrationAsyncRequest$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.async.request.RegistrationAsyncRequest + clearContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.async.request.RegistrationAsyncRequest$Builder + clearHoldingIdentityId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.async.request.RegistrationAsyncRequest$Builder + clearRequestId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.async.request.RegistrationAsyncRequest$Builder + getContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList$Builder + getHoldingIdentityId: + annotations: [] + default: false + type: public + returnType: String + getRequestId: + annotations: [] + default: false + type: public + returnType: String + hasContext: + annotations: [] + default: false + type: public + returnType: boolean + hasContextBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasHoldingIdentityId: + annotations: [] + default: false + type: public + returnType: boolean + hasRequestId: + annotations: [] + default: false + type: public + returnType: boolean + setContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.async.request.RegistrationAsyncRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.async.request.RegistrationAsyncRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList$Builder + setHoldingIdentityId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.async.request.RegistrationAsyncRequest$Builder + params: + value: + annotation: [] + type: String + setRequestId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.async.request.RegistrationAsyncRequest$Builder + params: + value: + annotation: [] + type: String +net.corda.data.membership.async.request.RetriableFailure: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.async.request.RetriableFailure + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getNextTryAt: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getNumberOfRemainingRetries: + annotations: [] + default: false + type: public + returnType: int + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.async.request.RetriableFailure$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.async.request.RetriableFailure + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setNextTryAt: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + setNumberOfRemainingRetries: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.async.request.RetriableFailure$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.async.request.RetriableFailure + clearNextTryAt: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.async.request.RetriableFailure$Builder + clearNumberOfRemainingRetries: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.async.request.RetriableFailure$Builder + getNextTryAt: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getNumberOfRemainingRetries: + annotations: [] + default: false + type: public + returnType: int + hasNextTryAt: + annotations: [] + default: false + type: public + returnType: boolean + hasNumberOfRemainingRetries: + annotations: [] + default: false + type: public + returnType: boolean + setNextTryAt: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.async.request.RetriableFailure$Builder + params: + value: + annotation: [] + type: java.time.Instant + setNumberOfRemainingRetries: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.async.request.RetriableFailure$Builder + params: + value: + annotation: [] + type: int +net.corda.data.membership.async.request.SentToMgmWaitingForNetwork: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.async.request.SentToMgmWaitingForNetwork + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getStopRetriesAfter: + annotations: [] + default: false + type: public + returnType: java.time.Instant + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.async.request.SentToMgmWaitingForNetwork$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.async.request.SentToMgmWaitingForNetwork + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setStopRetriesAfter: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.async.request.SentToMgmWaitingForNetwork$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.async.request.SentToMgmWaitingForNetwork + clearStopRetriesAfter: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.async.request.SentToMgmWaitingForNetwork$Builder + getStopRetriesAfter: + annotations: [] + default: false + type: public + returnType: java.time.Instant + hasStopRetriesAfter: + annotations: [] + default: false + type: public + returnType: boolean + setStopRetriesAfter: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.async.request.SentToMgmWaitingForNetwork$Builder + params: + value: + annotation: [] + type: java.time.Instant +net.corda.data.membership.command.registration.RegistrationCommand: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.command.registration.RegistrationCommand + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getCommand: + annotations: [] + default: false + type: public + returnType: Object + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.command.registration.RegistrationCommand$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.command.registration.RegistrationCommand + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setCommand: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Object + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.command.registration.RegistrationCommand$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.RegistrationCommand + clearCommand: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.RegistrationCommand$Builder + getCommand: + annotations: [] + default: false + type: public + returnType: Object + hasCommand: + annotations: [] + default: false + type: public + returnType: boolean + setCommand: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.RegistrationCommand$Builder + params: + value: + annotation: [] + type: Object +net.corda.data.membership.command.registration.member.PersistMemberRegistrationState: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.command.registration.member.PersistMemberRegistrationState + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getMember: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSetStatusRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.v2.SetOwnRegistrationStatus + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.command.registration.member.PersistMemberRegistrationState$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.command.registration.member.PersistMemberRegistrationState + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setMember: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setSetStatusRequest: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.p2p.v2.SetOwnRegistrationStatus + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.command.registration.member.PersistMemberRegistrationState$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.member.PersistMemberRegistrationState + clearMember: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.member.PersistMemberRegistrationState$Builder + clearSetStatusRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.member.PersistMemberRegistrationState$Builder + getMember: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getMemberBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + getSetStatusRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.v2.SetOwnRegistrationStatus + getSetStatusRequestBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.v2.SetOwnRegistrationStatus$Builder + hasMember: + annotations: [] + default: false + type: public + returnType: boolean + hasMemberBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasSetStatusRequest: + annotations: [] + default: false + type: public + returnType: boolean + hasSetStatusRequestBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setMember: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.member.PersistMemberRegistrationState$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setMemberBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.member.PersistMemberRegistrationState$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder + setSetStatusRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.member.PersistMemberRegistrationState$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.p2p.v2.SetOwnRegistrationStatus + setSetStatusRequestBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.member.PersistMemberRegistrationState$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.p2p.v2.SetOwnRegistrationStatus$Builder +net.corda.data.membership.command.registration.member.ProcessMemberVerificationRequest: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.command.registration.member.ProcessMemberVerificationRequest + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getDestination: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSource: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getVerificationRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.VerificationRequest + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.command.registration.member.ProcessMemberVerificationRequest$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.command.registration.member.ProcessMemberVerificationRequest + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setDestination: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setSource: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setVerificationRequest: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.p2p.VerificationRequest + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.command.registration.member.ProcessMemberVerificationRequest$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.member.ProcessMemberVerificationRequest + clearDestination: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.member.ProcessMemberVerificationRequest$Builder + clearSource: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.member.ProcessMemberVerificationRequest$Builder + clearVerificationRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.member.ProcessMemberVerificationRequest$Builder + getDestination: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getDestinationBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + getSource: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getSourceBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + getVerificationRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.VerificationRequest + getVerificationRequestBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.VerificationRequest$Builder + hasDestination: + annotations: [] + default: false + type: public + returnType: boolean + hasDestinationBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasSource: + annotations: [] + default: false + type: public + returnType: boolean + hasSourceBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasVerificationRequest: + annotations: [] + default: false + type: public + returnType: boolean + hasVerificationRequestBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setDestination: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.member.ProcessMemberVerificationRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setDestinationBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.member.ProcessMemberVerificationRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder + setSource: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.member.ProcessMemberVerificationRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setSourceBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.member.ProcessMemberVerificationRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder + setVerificationRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.member.ProcessMemberVerificationRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.p2p.VerificationRequest + setVerificationRequestBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.member.ProcessMemberVerificationRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.p2p.VerificationRequest$Builder +net.corda.data.membership.command.registration.mgm.ApproveRegistration: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.command.registration.mgm.ApproveRegistration + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.command.registration.mgm.ApproveRegistration$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.command.registration.mgm.ApproveRegistration + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.command.registration.mgm.ApproveRegistration$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.mgm.ApproveRegistration +net.corda.data.membership.command.registration.mgm.CheckForPendingRegistration: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.command.registration.mgm.CheckForPendingRegistration + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getMember: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getMgm: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getNumberOfRetriesSoFar: + annotations: [] + default: false + type: public + returnType: int + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.command.registration.mgm.CheckForPendingRegistration$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.command.registration.mgm.CheckForPendingRegistration + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setMember: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setMgm: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setNumberOfRetriesSoFar: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.command.registration.mgm.CheckForPendingRegistration$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.mgm.CheckForPendingRegistration + clearMember: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.mgm.CheckForPendingRegistration$Builder + clearMgm: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.mgm.CheckForPendingRegistration$Builder + clearNumberOfRetriesSoFar: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.mgm.CheckForPendingRegistration$Builder + getMember: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getMemberBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + getMgm: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getMgmBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + getNumberOfRetriesSoFar: + annotations: [] + default: false + type: public + returnType: int + hasMember: + annotations: [] + default: false + type: public + returnType: boolean + hasMemberBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasMgm: + annotations: [] + default: false + type: public + returnType: boolean + hasMgmBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasNumberOfRetriesSoFar: + annotations: [] + default: false + type: public + returnType: boolean + setMember: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.mgm.CheckForPendingRegistration$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setMemberBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.mgm.CheckForPendingRegistration$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder + setMgm: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.mgm.CheckForPendingRegistration$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setMgmBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.mgm.CheckForPendingRegistration$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder + setNumberOfRetriesSoFar: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.mgm.CheckForPendingRegistration$Builder + params: + value: + annotation: [] + type: int +net.corda.data.membership.command.registration.mgm.DeclineRegistration: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.command.registration.mgm.DeclineRegistration + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getReason: + annotations: [] + default: false + type: public + returnType: String + getReasonForUser: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.command.registration.mgm.DeclineRegistration$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.command.registration.mgm.DeclineRegistration + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setReason: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setReasonForUser: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.command.registration.mgm.DeclineRegistration$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.mgm.DeclineRegistration + clearReason: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.mgm.DeclineRegistration$Builder + clearReasonForUser: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.mgm.DeclineRegistration$Builder + getReason: + annotations: [] + default: false + type: public + returnType: String + getReasonForUser: + annotations: [] + default: false + type: public + returnType: String + hasReason: + annotations: [] + default: false + type: public + returnType: boolean + hasReasonForUser: + annotations: [] + default: false + type: public + returnType: boolean + setReason: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.mgm.DeclineRegistration$Builder + params: + value: + annotation: [] + type: String + setReasonForUser: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.mgm.DeclineRegistration$Builder + params: + value: + annotation: [] + type: String +net.corda.data.membership.command.registration.mgm.ProcessMemberVerificationResponse: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.command.registration.mgm.ProcessMemberVerificationResponse + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getVerificationResponse: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.VerificationResponse + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.command.registration.mgm.ProcessMemberVerificationResponse$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.command.registration.mgm.ProcessMemberVerificationResponse + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setVerificationResponse: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.p2p.VerificationResponse + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.command.registration.mgm.ProcessMemberVerificationResponse$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.mgm.ProcessMemberVerificationResponse + clearVerificationResponse: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.mgm.ProcessMemberVerificationResponse$Builder + getVerificationResponse: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.VerificationResponse + getVerificationResponseBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.VerificationResponse$Builder + hasVerificationResponse: + annotations: [] + default: false + type: public + returnType: boolean + hasVerificationResponseBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setVerificationResponse: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.mgm.ProcessMemberVerificationResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.p2p.VerificationResponse + setVerificationResponseBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.mgm.ProcessMemberVerificationResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.p2p.VerificationResponse$Builder +net.corda.data.membership.command.registration.mgm.QueueRegistration: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.command.registration.mgm.QueueRegistration + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getMember: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getMemberRegistrationRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipRegistrationRequest + getMgm: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getNumberOfRetriesSoFar: + annotations: [] + default: false + type: public + returnType: int + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.command.registration.mgm.QueueRegistration$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.command.registration.mgm.QueueRegistration + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setMember: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setMemberRegistrationRequest: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.p2p.MembershipRegistrationRequest + setMgm: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setNumberOfRetriesSoFar: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.command.registration.mgm.QueueRegistration$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.mgm.QueueRegistration + clearMember: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.mgm.QueueRegistration$Builder + clearMemberRegistrationRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.mgm.QueueRegistration$Builder + clearMgm: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.mgm.QueueRegistration$Builder + clearNumberOfRetriesSoFar: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.mgm.QueueRegistration$Builder + getMember: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getMemberBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + getMemberRegistrationRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipRegistrationRequest + getMemberRegistrationRequestBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipRegistrationRequest$Builder + getMgm: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getMgmBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + getNumberOfRetriesSoFar: + annotations: [] + default: false + type: public + returnType: int + hasMember: + annotations: [] + default: false + type: public + returnType: boolean + hasMemberBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasMemberRegistrationRequest: + annotations: [] + default: false + type: public + returnType: boolean + hasMemberRegistrationRequestBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasMgm: + annotations: [] + default: false + type: public + returnType: boolean + hasMgmBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasNumberOfRetriesSoFar: + annotations: [] + default: false + type: public + returnType: boolean + setMember: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.mgm.QueueRegistration$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setMemberBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.mgm.QueueRegistration$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder + setMemberRegistrationRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.mgm.QueueRegistration$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.p2p.MembershipRegistrationRequest + setMemberRegistrationRequestBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.mgm.QueueRegistration$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.p2p.MembershipRegistrationRequest$Builder + setMgm: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.mgm.QueueRegistration$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setMgmBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.mgm.QueueRegistration$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder + setNumberOfRetriesSoFar: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.mgm.QueueRegistration$Builder + params: + value: + annotation: [] + type: int +net.corda.data.membership.command.registration.mgm.StartRegistration: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.command.registration.mgm.StartRegistration + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.command.registration.mgm.StartRegistration$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.command.registration.mgm.StartRegistration + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.command.registration.mgm.StartRegistration$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.mgm.StartRegistration +net.corda.data.membership.command.registration.mgm.VerifyMember: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.command.registration.mgm.VerifyMember + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.command.registration.mgm.VerifyMember$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.command.registration.mgm.VerifyMember + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.command.registration.mgm.VerifyMember$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.registration.mgm.VerifyMember +net.corda.data.membership.command.synchronisation.SynchronisationCommand: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.command.synchronisation.SynchronisationCommand + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getCommand: + annotations: [] + default: false + type: public + returnType: Object + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.command.synchronisation.SynchronisationCommand$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.command.synchronisation.SynchronisationCommand + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setCommand: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Object + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.command.synchronisation.SynchronisationCommand$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.synchronisation.SynchronisationCommand + clearCommand: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.synchronisation.SynchronisationCommand$Builder + getCommand: + annotations: [] + default: false + type: public + returnType: Object + hasCommand: + annotations: [] + default: false + type: public + returnType: boolean + setCommand: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.synchronisation.SynchronisationCommand$Builder + params: + value: + annotation: [] + type: Object +net.corda.data.membership.command.synchronisation.SynchronisationMetaData: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.command.synchronisation.SynchronisationMetaData + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getMember: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getMgm: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.command.synchronisation.SynchronisationMetaData$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.command.synchronisation.SynchronisationMetaData + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setMember: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setMgm: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.command.synchronisation.SynchronisationMetaData$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.synchronisation.SynchronisationMetaData + clearMember: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.synchronisation.SynchronisationMetaData$Builder + clearMgm: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.synchronisation.SynchronisationMetaData$Builder + getMember: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getMemberBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + getMgm: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getMgmBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + hasMember: + annotations: [] + default: false + type: public + returnType: boolean + hasMemberBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasMgm: + annotations: [] + default: false + type: public + returnType: boolean + hasMgmBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setMember: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.synchronisation.SynchronisationMetaData$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setMemberBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.synchronisation.SynchronisationMetaData$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder + setMgm: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.synchronisation.SynchronisationMetaData$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setMgmBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.synchronisation.SynchronisationMetaData$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder +net.corda.data.membership.command.synchronisation.member.ProcessMembershipUpdates: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.command.synchronisation.member.ProcessMembershipUpdates + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getMembershipPackage: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipPackage + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getSynchronisationMetaData: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.synchronisation.SynchronisationMetaData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.command.synchronisation.member.ProcessMembershipUpdates$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.command.synchronisation.member.ProcessMembershipUpdates + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setMembershipPackage: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.p2p.MembershipPackage + setSynchronisationMetaData: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.command.synchronisation.SynchronisationMetaData + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.command.synchronisation.member.ProcessMembershipUpdates$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.synchronisation.member.ProcessMembershipUpdates + clearMembershipPackage: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.synchronisation.member.ProcessMembershipUpdates$Builder + clearSynchronisationMetaData: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.synchronisation.member.ProcessMembershipUpdates$Builder + getMembershipPackage: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipPackage + getMembershipPackageBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipPackage$Builder + getSynchronisationMetaData: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.synchronisation.SynchronisationMetaData + getSynchronisationMetaDataBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.synchronisation.SynchronisationMetaData$Builder + hasMembershipPackage: + annotations: [] + default: false + type: public + returnType: boolean + hasMembershipPackageBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasSynchronisationMetaData: + annotations: [] + default: false + type: public + returnType: boolean + hasSynchronisationMetaDataBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setMembershipPackage: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.synchronisation.member.ProcessMembershipUpdates$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.p2p.MembershipPackage + setMembershipPackageBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.synchronisation.member.ProcessMembershipUpdates$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.p2p.MembershipPackage$Builder + setSynchronisationMetaData: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.synchronisation.member.ProcessMembershipUpdates$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.command.synchronisation.SynchronisationMetaData + setSynchronisationMetaDataBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.synchronisation.member.ProcessMembershipUpdates$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.command.synchronisation.SynchronisationMetaData$Builder +net.corda.data.membership.command.synchronisation.mgm.ProcessSyncRequest: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.command.synchronisation.mgm.ProcessSyncRequest + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getSyncRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipSyncRequest + getSynchronisationMetaData: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.synchronisation.SynchronisationMetaData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.command.synchronisation.mgm.ProcessSyncRequest$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.command.synchronisation.mgm.ProcessSyncRequest + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setSyncRequest: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.p2p.MembershipSyncRequest + setSynchronisationMetaData: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.command.synchronisation.SynchronisationMetaData + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.command.synchronisation.mgm.ProcessSyncRequest$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.synchronisation.mgm.ProcessSyncRequest + clearSyncRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.synchronisation.mgm.ProcessSyncRequest$Builder + clearSynchronisationMetaData: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.synchronisation.mgm.ProcessSyncRequest$Builder + getSyncRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipSyncRequest + getSyncRequestBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipSyncRequest$Builder + getSynchronisationMetaData: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.synchronisation.SynchronisationMetaData + getSynchronisationMetaDataBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.synchronisation.SynchronisationMetaData$Builder + hasSyncRequest: + annotations: [] + default: false + type: public + returnType: boolean + hasSyncRequestBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasSynchronisationMetaData: + annotations: [] + default: false + type: public + returnType: boolean + hasSynchronisationMetaDataBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setSyncRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.synchronisation.mgm.ProcessSyncRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.p2p.MembershipSyncRequest + setSyncRequestBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.synchronisation.mgm.ProcessSyncRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.p2p.MembershipSyncRequest$Builder + setSynchronisationMetaData: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.synchronisation.mgm.ProcessSyncRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.command.synchronisation.SynchronisationMetaData + setSynchronisationMetaDataBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.command.synchronisation.mgm.ProcessSyncRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.command.synchronisation.SynchronisationMetaData$Builder +net.corda.data.membership.common.ApprovalRuleDetails: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.common.ApprovalRuleDetails + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getRuleId: + annotations: [] + default: false + type: public + returnType: String + getRuleLabel: + annotations: [] + default: false + type: public + returnType: String + getRuleRegex: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.common.ApprovalRuleDetails$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.common.ApprovalRuleDetails + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setRuleId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setRuleLabel: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setRuleRegex: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.common.ApprovalRuleDetails$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.ApprovalRuleDetails + clearRuleId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.ApprovalRuleDetails$Builder + clearRuleLabel: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.ApprovalRuleDetails$Builder + clearRuleRegex: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.ApprovalRuleDetails$Builder + getRuleId: + annotations: [] + default: false + type: public + returnType: String + getRuleLabel: + annotations: [] + default: false + type: public + returnType: String + getRuleRegex: + annotations: [] + default: false + type: public + returnType: String + hasRuleId: + annotations: [] + default: false + type: public + returnType: boolean + hasRuleLabel: + annotations: [] + default: false + type: public + returnType: boolean + hasRuleRegex: + annotations: [] + default: false + type: public + returnType: boolean + setRuleId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.ApprovalRuleDetails$Builder + params: + value: + annotation: [] + type: String + setRuleLabel: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.ApprovalRuleDetails$Builder + params: + value: + annotation: [] + type: String + setRuleRegex: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.ApprovalRuleDetails$Builder + params: + value: + annotation: [] + type: String +net.corda.data.membership.common.ApprovalRuleType: + annotations: + - AvroGenerated + type: public final class + extends: java.lang.Enum + implements: + - org.apache.avro.generic.GenericEnumSymbol + interface: false + methods: + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + valueOf: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.common.ApprovalRuleType + params: {} + values: + annotations: [] + default: false + type: public static + returnType: "net.corda.data.membership.common.ApprovalRuleType[]" + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.common.RegistrationRequestDetails: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.common.RegistrationRequestDetails + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getHoldingIdentityId: + annotations: [] + default: false + type: public + returnType: String + getMemberProvidedContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedData + getReason: + annotations: [] + default: false + type: public + returnType: String + getRegistrationContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedData + getRegistrationId: + annotations: [] + default: false + type: public + returnType: String + getRegistrationLastModified: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getRegistrationProtocolVersion: + annotations: [] + default: false + type: public + returnType: int + getRegistrationSent: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getRegistrationStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.v2.RegistrationStatus + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSerial: + annotations: [] + default: false + type: public + returnType: Long + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.common.RegistrationRequestDetails$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.common.RegistrationRequestDetails + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setHoldingIdentityId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setMemberProvidedContext: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.SignedData + setReason: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setRegistrationContext: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.SignedData + setRegistrationId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setRegistrationLastModified: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + setRegistrationProtocolVersion: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + setRegistrationSent: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + setRegistrationStatus: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.common.v2.RegistrationStatus + setSerial: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Long + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.common.RegistrationRequestDetails$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.RegistrationRequestDetails + clearHoldingIdentityId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.RegistrationRequestDetails$Builder + clearMemberProvidedContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.RegistrationRequestDetails$Builder + clearReason: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.RegistrationRequestDetails$Builder + clearRegistrationContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.RegistrationRequestDetails$Builder + clearRegistrationId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.RegistrationRequestDetails$Builder + clearRegistrationLastModified: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.RegistrationRequestDetails$Builder + clearRegistrationProtocolVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.RegistrationRequestDetails$Builder + clearRegistrationSent: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.RegistrationRequestDetails$Builder + clearRegistrationStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.RegistrationRequestDetails$Builder + clearSerial: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.RegistrationRequestDetails$Builder + getHoldingIdentityId: + annotations: [] + default: false + type: public + returnType: String + getMemberProvidedContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedData + getMemberProvidedContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedData$Builder + getReason: + annotations: [] + default: false + type: public + returnType: String + getRegistrationContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedData + getRegistrationContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedData$Builder + getRegistrationId: + annotations: [] + default: false + type: public + returnType: String + getRegistrationLastModified: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getRegistrationProtocolVersion: + annotations: [] + default: false + type: public + returnType: int + getRegistrationSent: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getRegistrationStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.v2.RegistrationStatus + getSerial: + annotations: [] + default: false + type: public + returnType: Long + hasHoldingIdentityId: + annotations: [] + default: false + type: public + returnType: boolean + hasMemberProvidedContext: + annotations: [] + default: false + type: public + returnType: boolean + hasMemberProvidedContextBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasReason: + annotations: [] + default: false + type: public + returnType: boolean + hasRegistrationContext: + annotations: [] + default: false + type: public + returnType: boolean + hasRegistrationContextBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasRegistrationId: + annotations: [] + default: false + type: public + returnType: boolean + hasRegistrationLastModified: + annotations: [] + default: false + type: public + returnType: boolean + hasRegistrationProtocolVersion: + annotations: [] + default: false + type: public + returnType: boolean + hasRegistrationSent: + annotations: [] + default: false + type: public + returnType: boolean + hasRegistrationStatus: + annotations: [] + default: false + type: public + returnType: boolean + hasSerial: + annotations: [] + default: false + type: public + returnType: boolean + setHoldingIdentityId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.RegistrationRequestDetails$Builder + params: + value: + annotation: [] + type: String + setMemberProvidedContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.RegistrationRequestDetails$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.SignedData + setMemberProvidedContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.RegistrationRequestDetails$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.SignedData$Builder + setReason: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.RegistrationRequestDetails$Builder + params: + value: + annotation: [] + type: String + setRegistrationContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.RegistrationRequestDetails$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.SignedData + setRegistrationContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.RegistrationRequestDetails$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.SignedData$Builder + setRegistrationId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.RegistrationRequestDetails$Builder + params: + value: + annotation: [] + type: String + setRegistrationLastModified: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.RegistrationRequestDetails$Builder + params: + value: + annotation: [] + type: java.time.Instant + setRegistrationProtocolVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.RegistrationRequestDetails$Builder + params: + value: + annotation: [] + type: int + setRegistrationSent: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.RegistrationRequestDetails$Builder + params: + value: + annotation: [] + type: java.time.Instant + setRegistrationStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.RegistrationRequestDetails$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.common.v2.RegistrationStatus + setSerial: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.RegistrationRequestDetails$Builder + params: + value: + annotation: [] + type: Long +net.corda.data.membership.common.RegistrationStatus: + annotations: + - AvroGenerated + type: public final class + extends: java.lang.Enum + implements: + - org.apache.avro.generic.GenericEnumSymbol + interface: false + methods: + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + valueOf: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.common.RegistrationStatus + params: {} + values: + annotations: [] + default: false + type: public static + returnType: "net.corda.data.membership.common.RegistrationStatus[]" + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.common.v2.RegistrationStatus: + annotations: + - AvroGenerated + type: public final class + extends: java.lang.Enum + implements: + - org.apache.avro.generic.GenericEnumSymbol + interface: false + methods: + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + valueOf: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.common.v2.RegistrationStatus + params: {} + values: + annotations: [] + default: false + type: public static + returnType: "net.corda.data.membership.common.v2.RegistrationStatus[]" + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.request.MembershipPersistenceRequest: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.MembershipPersistenceRequest + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.MembershipRequestContext + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getRequest: + annotations: [] + default: false + type: public + returnType: Object + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.MembershipPersistenceRequest$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.request.MembershipPersistenceRequest + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setContext: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.db.request.MembershipRequestContext + setRequest: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Object + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.request.MembershipPersistenceRequest$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.MembershipPersistenceRequest + clearContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.MembershipPersistenceRequest$Builder + clearRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.MembershipPersistenceRequest$Builder + getContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.MembershipRequestContext + getContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.MembershipRequestContext$Builder + getRequest: + annotations: [] + default: false + type: public + returnType: Object + hasContext: + annotations: [] + default: false + type: public + returnType: boolean + hasContextBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasRequest: + annotations: [] + default: false + type: public + returnType: boolean + setContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.MembershipPersistenceRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.db.request.MembershipRequestContext + setContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.MembershipPersistenceRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.db.request.MembershipRequestContext$Builder + setRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.MembershipPersistenceRequest$Builder + params: + value: + annotation: [] + type: Object +net.corda.data.membership.db.request.MembershipRequestContext: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.MembershipRequestContext + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getRequestId: + annotations: [] + default: false + type: public + returnType: String + getRequestTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.MembershipRequestContext$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.request.MembershipRequestContext + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setHoldingIdentity: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setRequestId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setRequestTimestamp: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.request.MembershipRequestContext$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.MembershipRequestContext + clearHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.MembershipRequestContext$Builder + clearRequestId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.MembershipRequestContext$Builder + clearRequestTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.MembershipRequestContext$Builder + getHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getHoldingIdentityBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + getRequestId: + annotations: [] + default: false + type: public + returnType: String + getRequestTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + hasHoldingIdentity: + annotations: [] + default: false + type: public + returnType: boolean + hasHoldingIdentityBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasRequestId: + annotations: [] + default: false + type: public + returnType: boolean + hasRequestTimestamp: + annotations: [] + default: false + type: public + returnType: boolean + setHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.MembershipRequestContext$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setHoldingIdentityBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.MembershipRequestContext$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder + setRequestId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.MembershipRequestContext$Builder + params: + value: + annotation: [] + type: String + setRequestTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.MembershipRequestContext$Builder + params: + value: + annotation: [] + type: java.time.Instant +net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequest: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequest + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.MembershipPersistenceRequest + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequest$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequest + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setRequest: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.db.request.MembershipPersistenceRequest + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequest$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequest + clearRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequest$Builder + getRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.MembershipPersistenceRequest + getRequestBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.MembershipPersistenceRequest$Builder + hasRequest: + annotations: [] + default: false + type: public + returnType: boolean + hasRequestBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.db.request.MembershipPersistenceRequest + setRequestBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.db.request.MembershipPersistenceRequest$Builder +net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequestState: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequestState + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getLastFailedOn: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getNumberOfRetriesSoFar: + annotations: [] + default: false + type: public + returnType: int + getRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequest + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequestState$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequestState + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setLastFailedOn: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + setNumberOfRetriesSoFar: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + setRequest: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequest + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequestState$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequestState + clearLastFailedOn: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequestState$Builder + clearNumberOfRetriesSoFar: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequestState$Builder + clearRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequestState$Builder + getLastFailedOn: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getNumberOfRetriesSoFar: + annotations: [] + default: false + type: public + returnType: int + getRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequest + getRequestBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequest$Builder + hasLastFailedOn: + annotations: [] + default: false + type: public + returnType: boolean + hasNumberOfRetriesSoFar: + annotations: [] + default: false + type: public + returnType: boolean + hasRequest: + annotations: [] + default: false + type: public + returnType: boolean + hasRequestBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setLastFailedOn: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequestState$Builder + params: + value: + annotation: [] + type: java.time.Instant + setNumberOfRetriesSoFar: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequestState$Builder + params: + value: + annotation: [] + type: int + setRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequestState$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequest + setRequestBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequestState$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequest$Builder +net.corda.data.membership.db.request.command.ActivateMember: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.command.ActivateMember + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getActivatedMember: + annotations: [] + default: false + type: public + returnType: String + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getReason: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSerialNumber: + annotations: [] + default: false + type: public + returnType: Long + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.command.ActivateMember$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.request.command.ActivateMember + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setActivatedMember: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setReason: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setSerialNumber: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Long + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.request.command.ActivateMember$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.ActivateMember + clearActivatedMember: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.ActivateMember$Builder + clearReason: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.ActivateMember$Builder + clearSerialNumber: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.ActivateMember$Builder + getActivatedMember: + annotations: [] + default: false + type: public + returnType: String + getReason: + annotations: [] + default: false + type: public + returnType: String + getSerialNumber: + annotations: [] + default: false + type: public + returnType: Long + hasActivatedMember: + annotations: [] + default: false + type: public + returnType: boolean + hasReason: + annotations: [] + default: false + type: public + returnType: boolean + hasSerialNumber: + annotations: [] + default: false + type: public + returnType: boolean + setActivatedMember: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.ActivateMember$Builder + params: + value: + annotation: [] + type: String + setReason: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.ActivateMember$Builder + params: + value: + annotation: [] + type: String + setSerialNumber: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.ActivateMember$Builder + params: + value: + annotation: [] + type: Long +net.corda.data.membership.db.request.command.AddNotaryToGroupParameters: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.command.AddNotaryToGroupParameters + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getNotary: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.PersistentMemberInfo + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.command.AddNotaryToGroupParameters$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.request.command.AddNotaryToGroupParameters + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setNotary: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.PersistentMemberInfo + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.request.command.AddNotaryToGroupParameters$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.AddNotaryToGroupParameters + clearNotary: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.AddNotaryToGroupParameters$Builder + getNotary: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.PersistentMemberInfo + getNotaryBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.PersistentMemberInfo$Builder + hasNotary: + annotations: [] + default: false + type: public + returnType: boolean + hasNotaryBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setNotary: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.AddNotaryToGroupParameters$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.PersistentMemberInfo + setNotaryBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.AddNotaryToGroupParameters$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.PersistentMemberInfo$Builder +net.corda.data.membership.db.request.command.AddPreAuthToken: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.command.AddPreAuthToken + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getOwnerX500Name: + annotations: [] + default: false + type: public + returnType: String + getRemark: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getTokenId: + annotations: [] + default: false + type: public + returnType: String + getTtl: + annotations: [] + default: false + type: public + returnType: java.time.Instant + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.command.AddPreAuthToken$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.request.command.AddPreAuthToken + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setOwnerX500Name: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setRemark: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setTokenId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setTtl: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.request.command.AddPreAuthToken$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.AddPreAuthToken + clearOwnerX500Name: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.AddPreAuthToken$Builder + clearRemark: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.AddPreAuthToken$Builder + clearTokenId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.AddPreAuthToken$Builder + clearTtl: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.AddPreAuthToken$Builder + getOwnerX500Name: + annotations: [] + default: false + type: public + returnType: String + getRemark: + annotations: [] + default: false + type: public + returnType: String + getTokenId: + annotations: [] + default: false + type: public + returnType: String + getTtl: + annotations: [] + default: false + type: public + returnType: java.time.Instant + hasOwnerX500Name: + annotations: [] + default: false + type: public + returnType: boolean + hasRemark: + annotations: [] + default: false + type: public + returnType: boolean + hasTokenId: + annotations: [] + default: false + type: public + returnType: boolean + hasTtl: + annotations: [] + default: false + type: public + returnType: boolean + setOwnerX500Name: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.AddPreAuthToken$Builder + params: + value: + annotation: [] + type: String + setRemark: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.AddPreAuthToken$Builder + params: + value: + annotation: [] + type: String + setTokenId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.AddPreAuthToken$Builder + params: + value: + annotation: [] + type: String + setTtl: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.AddPreAuthToken$Builder + params: + value: + annotation: [] + type: java.time.Instant +net.corda.data.membership.db.request.command.ConsumePreAuthToken: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.command.ConsumePreAuthToken + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getOwnerX500Name: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getTokenId: + annotations: [] + default: false + type: public + returnType: String + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.command.ConsumePreAuthToken$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.request.command.ConsumePreAuthToken + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setOwnerX500Name: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setTokenId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.request.command.ConsumePreAuthToken$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.ConsumePreAuthToken + clearOwnerX500Name: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.ConsumePreAuthToken$Builder + clearTokenId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.ConsumePreAuthToken$Builder + getOwnerX500Name: + annotations: [] + default: false + type: public + returnType: String + getTokenId: + annotations: [] + default: false + type: public + returnType: String + hasOwnerX500Name: + annotations: [] + default: false + type: public + returnType: boolean + hasTokenId: + annotations: [] + default: false + type: public + returnType: boolean + setOwnerX500Name: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.ConsumePreAuthToken$Builder + params: + value: + annotation: [] + type: String + setTokenId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.ConsumePreAuthToken$Builder + params: + value: + annotation: [] + type: String +net.corda.data.membership.db.request.command.DeleteApprovalRule: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.command.DeleteApprovalRule + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getRuleId: + annotations: [] + default: false + type: public + returnType: String + getRuleType: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.ApprovalRuleType + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.command.DeleteApprovalRule$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.request.command.DeleteApprovalRule + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setRuleId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setRuleType: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.common.ApprovalRuleType + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.request.command.DeleteApprovalRule$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.DeleteApprovalRule + clearRuleId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.DeleteApprovalRule$Builder + clearRuleType: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.DeleteApprovalRule$Builder + getRuleId: + annotations: [] + default: false + type: public + returnType: String + getRuleType: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.ApprovalRuleType + hasRuleId: + annotations: [] + default: false + type: public + returnType: boolean + hasRuleType: + annotations: [] + default: false + type: public + returnType: boolean + setRuleId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.DeleteApprovalRule$Builder + params: + value: + annotation: [] + type: String + setRuleType: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.DeleteApprovalRule$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.common.ApprovalRuleType +net.corda.data.membership.db.request.command.MutualTlsAddToAllowedCertificates: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.command.MutualTlsAddToAllowedCertificates + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getSubject: + annotations: [] + default: false + type: public + returnType: String + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.command.MutualTlsAddToAllowedCertificates$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.request.command.MutualTlsAddToAllowedCertificates + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setSubject: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.request.command.MutualTlsAddToAllowedCertificates$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.MutualTlsAddToAllowedCertificates + clearSubject: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.MutualTlsAddToAllowedCertificates$Builder + getSubject: + annotations: [] + default: false + type: public + returnType: String + hasSubject: + annotations: [] + default: false + type: public + returnType: boolean + setSubject: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.MutualTlsAddToAllowedCertificates$Builder + params: + value: + annotation: [] + type: String +net.corda.data.membership.db.request.command.MutualTlsRemoveFromAllowedCertificates: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.command.MutualTlsRemoveFromAllowedCertificates + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getSubject: + annotations: [] + default: false + type: public + returnType: String + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.command.MutualTlsRemoveFromAllowedCertificates$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.request.command.MutualTlsRemoveFromAllowedCertificates + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setSubject: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.request.command.MutualTlsRemoveFromAllowedCertificates$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.MutualTlsRemoveFromAllowedCertificates + clearSubject: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.MutualTlsRemoveFromAllowedCertificates$Builder + getSubject: + annotations: [] + default: false + type: public + returnType: String + hasSubject: + annotations: [] + default: false + type: public + returnType: boolean + setSubject: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.MutualTlsRemoveFromAllowedCertificates$Builder + params: + value: + annotation: [] + type: String +net.corda.data.membership.db.request.command.PersistApprovalRule: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.command.PersistApprovalRule + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getLabel: + annotations: [] + default: false + type: public + returnType: String + getRule: + annotations: [] + default: false + type: public + returnType: String + getRuleId: + annotations: [] + default: false + type: public + returnType: String + getRuleType: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.ApprovalRuleType + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.command.PersistApprovalRule$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.request.command.PersistApprovalRule + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setLabel: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setRule: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setRuleId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setRuleType: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.common.ApprovalRuleType + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.request.command.PersistApprovalRule$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.PersistApprovalRule + clearLabel: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.PersistApprovalRule$Builder + clearRule: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.PersistApprovalRule$Builder + clearRuleId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.PersistApprovalRule$Builder + clearRuleType: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.PersistApprovalRule$Builder + getLabel: + annotations: [] + default: false + type: public + returnType: String + getRule: + annotations: [] + default: false + type: public + returnType: String + getRuleId: + annotations: [] + default: false + type: public + returnType: String + getRuleType: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.ApprovalRuleType + hasLabel: + annotations: [] + default: false + type: public + returnType: boolean + hasRule: + annotations: [] + default: false + type: public + returnType: boolean + hasRuleId: + annotations: [] + default: false + type: public + returnType: boolean + hasRuleType: + annotations: [] + default: false + type: public + returnType: boolean + setLabel: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.PersistApprovalRule$Builder + params: + value: + annotation: [] + type: String + setRule: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.PersistApprovalRule$Builder + params: + value: + annotation: [] + type: String + setRuleId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.PersistApprovalRule$Builder + params: + value: + annotation: [] + type: String + setRuleType: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.PersistApprovalRule$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.common.ApprovalRuleType +net.corda.data.membership.db.request.command.PersistGroupParameters: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.command.PersistGroupParameters + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getGroupParameters: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedGroupParameters + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.command.PersistGroupParameters$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.request.command.PersistGroupParameters + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setGroupParameters: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.SignedGroupParameters + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.request.command.PersistGroupParameters$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.PersistGroupParameters + clearGroupParameters: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.PersistGroupParameters$Builder + getGroupParameters: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedGroupParameters + getGroupParametersBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedGroupParameters$Builder + hasGroupParameters: + annotations: [] + default: false + type: public + returnType: boolean + hasGroupParametersBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setGroupParameters: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.PersistGroupParameters$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.SignedGroupParameters + setGroupParametersBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.PersistGroupParameters$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.SignedGroupParameters$Builder +net.corda.data.membership.db.request.command.PersistGroupParametersInitialSnapshot: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.command.PersistGroupParametersInitialSnapshot + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.command.PersistGroupParametersInitialSnapshot$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.request.command.PersistGroupParametersInitialSnapshot + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.request.command.PersistGroupParametersInitialSnapshot$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.PersistGroupParametersInitialSnapshot +net.corda.data.membership.db.request.command.PersistGroupPolicy: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.command.PersistGroupPolicy + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getProperties: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getVersion: + annotations: [] + default: false + type: public + returnType: long + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.command.PersistGroupPolicy$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.request.command.PersistGroupPolicy + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setProperties: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setVersion: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: long + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.request.command.PersistGroupPolicy$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.PersistGroupPolicy + clearProperties: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.PersistGroupPolicy$Builder + clearVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.PersistGroupPolicy$Builder + getProperties: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getPropertiesBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList$Builder + getVersion: + annotations: [] + default: false + type: public + returnType: long + hasProperties: + annotations: [] + default: false + type: public + returnType: boolean + hasPropertiesBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasVersion: + annotations: [] + default: false + type: public + returnType: boolean + setProperties: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.PersistGroupPolicy$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setPropertiesBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.PersistGroupPolicy$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList$Builder + setVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.PersistGroupPolicy$Builder + params: + value: + annotation: [] + type: long +net.corda.data.membership.db.request.command.PersistMemberInfo: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.command.PersistMemberInfo + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getMembers: + annotations: [] + default: false + type: public + returnType: java.util.List + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSignedMembers: + annotations: [] + default: false + type: public + returnType: java.util.List + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.command.PersistMemberInfo$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.request.command.PersistMemberInfo + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setMembers: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + setSignedMembers: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.request.command.PersistMemberInfo$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.PersistMemberInfo + clearMembers: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.PersistMemberInfo$Builder + clearSignedMembers: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.PersistMemberInfo$Builder + getMembers: + annotations: [] + default: false + type: public + returnType: java.util.List + getSignedMembers: + annotations: [] + default: false + type: public + returnType: java.util.List + hasMembers: + annotations: [] + default: false + type: public + returnType: boolean + hasSignedMembers: + annotations: [] + default: false + type: public + returnType: boolean + setMembers: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.PersistMemberInfo$Builder + params: + value: + annotation: [] + type: java.util.List + setSignedMembers: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.PersistMemberInfo$Builder + params: + value: + annotation: [] + type: java.util.List +net.corda.data.membership.db.request.command.PersistRegistrationRequest: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.command.PersistRegistrationRequest + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getRegisteringHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getRegistrationRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipRegistrationRequest + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.v2.RegistrationStatus + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.command.PersistRegistrationRequest$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.request.command.PersistRegistrationRequest + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setRegisteringHoldingIdentity: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setRegistrationRequest: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.p2p.MembershipRegistrationRequest + setStatus: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.common.v2.RegistrationStatus + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.request.command.PersistRegistrationRequest$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.PersistRegistrationRequest + clearRegisteringHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.PersistRegistrationRequest$Builder + clearRegistrationRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.PersistRegistrationRequest$Builder + clearStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.PersistRegistrationRequest$Builder + getRegisteringHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getRegisteringHoldingIdentityBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + getRegistrationRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipRegistrationRequest + getRegistrationRequestBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipRegistrationRequest$Builder + getStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.v2.RegistrationStatus + hasRegisteringHoldingIdentity: + annotations: [] + default: false + type: public + returnType: boolean + hasRegisteringHoldingIdentityBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasRegistrationRequest: + annotations: [] + default: false + type: public + returnType: boolean + hasRegistrationRequestBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasStatus: + annotations: [] + default: false + type: public + returnType: boolean + setRegisteringHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.PersistRegistrationRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setRegisteringHoldingIdentityBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.PersistRegistrationRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder + setRegistrationRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.PersistRegistrationRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.p2p.MembershipRegistrationRequest + setRegistrationRequestBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.PersistRegistrationRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.p2p.MembershipRegistrationRequest$Builder + setStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.PersistRegistrationRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.common.v2.RegistrationStatus +net.corda.data.membership.db.request.command.RevokePreAuthToken: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.command.RevokePreAuthToken + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getRemark: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getTokenId: + annotations: [] + default: false + type: public + returnType: String + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.command.RevokePreAuthToken$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.request.command.RevokePreAuthToken + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setRemark: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setTokenId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.request.command.RevokePreAuthToken$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.RevokePreAuthToken + clearRemark: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.RevokePreAuthToken$Builder + clearTokenId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.RevokePreAuthToken$Builder + getRemark: + annotations: [] + default: false + type: public + returnType: String + getTokenId: + annotations: [] + default: false + type: public + returnType: String + hasRemark: + annotations: [] + default: false + type: public + returnType: boolean + hasTokenId: + annotations: [] + default: false + type: public + returnType: boolean + setRemark: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.RevokePreAuthToken$Builder + params: + value: + annotation: [] + type: String + setTokenId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.RevokePreAuthToken$Builder + params: + value: + annotation: [] + type: String +net.corda.data.membership.db.request.command.SuspendMember: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.command.SuspendMember + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getReason: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSerialNumber: + annotations: [] + default: false + type: public + returnType: Long + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getSuspendedMember: + annotations: [] + default: false + type: public + returnType: String + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.command.SuspendMember$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.request.command.SuspendMember + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setReason: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setSerialNumber: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Long + setSuspendedMember: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.request.command.SuspendMember$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.SuspendMember + clearReason: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.SuspendMember$Builder + clearSerialNumber: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.SuspendMember$Builder + clearSuspendedMember: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.SuspendMember$Builder + getReason: + annotations: [] + default: false + type: public + returnType: String + getSerialNumber: + annotations: [] + default: false + type: public + returnType: Long + getSuspendedMember: + annotations: [] + default: false + type: public + returnType: String + hasReason: + annotations: [] + default: false + type: public + returnType: boolean + hasSerialNumber: + annotations: [] + default: false + type: public + returnType: boolean + hasSuspendedMember: + annotations: [] + default: false + type: public + returnType: boolean + setReason: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.SuspendMember$Builder + params: + value: + annotation: [] + type: String + setSerialNumber: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.SuspendMember$Builder + params: + value: + annotation: [] + type: Long + setSuspendedMember: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.SuspendMember$Builder + params: + value: + annotation: [] + type: String +net.corda.data.membership.db.request.command.UpdateGroupParameters: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.command.UpdateGroupParameters + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getUpdate: + annotations: [] + default: false + type: public + returnType: "java.util.Map" + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.command.UpdateGroupParameters$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.request.command.UpdateGroupParameters + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setUpdate: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: "java.util.Map" + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.request.command.UpdateGroupParameters$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.UpdateGroupParameters + clearUpdate: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.UpdateGroupParameters$Builder + getUpdate: + annotations: [] + default: false + type: public + returnType: "java.util.Map" + hasUpdate: + annotations: [] + default: false + type: public + returnType: boolean + setUpdate: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.UpdateGroupParameters$Builder + params: + value: + annotation: [] + type: "java.util.Map" +net.corda.data.membership.db.request.command.UpdateMemberAndRegistrationRequestToApproved: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.command.UpdateMemberAndRegistrationRequestToApproved + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getMember: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getRegistrationId: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.command.UpdateMemberAndRegistrationRequestToApproved$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.request.command.UpdateMemberAndRegistrationRequestToApproved + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setMember: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setRegistrationId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.request.command.UpdateMemberAndRegistrationRequestToApproved$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.UpdateMemberAndRegistrationRequestToApproved + clearMember: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.UpdateMemberAndRegistrationRequestToApproved$Builder + clearRegistrationId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.UpdateMemberAndRegistrationRequestToApproved$Builder + getMember: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getMemberBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + getRegistrationId: + annotations: [] + default: false + type: public + returnType: String + hasMember: + annotations: [] + default: false + type: public + returnType: boolean + hasMemberBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasRegistrationId: + annotations: [] + default: false + type: public + returnType: boolean + setMember: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.UpdateMemberAndRegistrationRequestToApproved$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setMemberBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.UpdateMemberAndRegistrationRequestToApproved$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder + setRegistrationId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.UpdateMemberAndRegistrationRequestToApproved$Builder + params: + value: + annotation: [] + type: String +net.corda.data.membership.db.request.command.UpdateMemberAndRegistrationRequestToDeclined: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.command.UpdateMemberAndRegistrationRequestToDeclined + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getMember: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getRegistrationId: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.command.UpdateMemberAndRegistrationRequestToDeclined$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.request.command.UpdateMemberAndRegistrationRequestToDeclined + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setMember: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setRegistrationId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.request.command.UpdateMemberAndRegistrationRequestToDeclined$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.UpdateMemberAndRegistrationRequestToDeclined + clearMember: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.UpdateMemberAndRegistrationRequestToDeclined$Builder + clearRegistrationId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.UpdateMemberAndRegistrationRequestToDeclined$Builder + getMember: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getMemberBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + getRegistrationId: + annotations: [] + default: false + type: public + returnType: String + hasMember: + annotations: [] + default: false + type: public + returnType: boolean + hasMemberBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasRegistrationId: + annotations: [] + default: false + type: public + returnType: boolean + setMember: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.UpdateMemberAndRegistrationRequestToDeclined$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setMemberBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.UpdateMemberAndRegistrationRequestToDeclined$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder + setRegistrationId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.UpdateMemberAndRegistrationRequestToDeclined$Builder + params: + value: + annotation: [] + type: String +net.corda.data.membership.db.request.command.UpdateRegistrationRequestStatus: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.command.UpdateRegistrationRequestStatus + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getReason: + annotations: [] + default: false + type: public + returnType: String + getRegistrationId: + annotations: [] + default: false + type: public + returnType: String + getRegistrationStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.v2.RegistrationStatus + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.command.UpdateRegistrationRequestStatus$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.request.command.UpdateRegistrationRequestStatus + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setReason: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setRegistrationId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setRegistrationStatus: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.common.v2.RegistrationStatus + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.request.command.UpdateRegistrationRequestStatus$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.UpdateRegistrationRequestStatus + clearReason: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.UpdateRegistrationRequestStatus$Builder + clearRegistrationId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.UpdateRegistrationRequestStatus$Builder + clearRegistrationStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.UpdateRegistrationRequestStatus$Builder + getReason: + annotations: [] + default: false + type: public + returnType: String + getRegistrationId: + annotations: [] + default: false + type: public + returnType: String + getRegistrationStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.v2.RegistrationStatus + hasReason: + annotations: [] + default: false + type: public + returnType: boolean + hasRegistrationId: + annotations: [] + default: false + type: public + returnType: boolean + hasRegistrationStatus: + annotations: [] + default: false + type: public + returnType: boolean + setReason: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.UpdateRegistrationRequestStatus$Builder + params: + value: + annotation: [] + type: String + setRegistrationId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.UpdateRegistrationRequestStatus$Builder + params: + value: + annotation: [] + type: String + setRegistrationStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.UpdateRegistrationRequestStatus$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.common.v2.RegistrationStatus +net.corda.data.membership.db.request.command.UpdateStaticNetworkInfo: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.command.UpdateStaticNetworkInfo + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getInfo: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.StaticNetworkInfo + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.command.UpdateStaticNetworkInfo$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.request.command.UpdateStaticNetworkInfo + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setInfo: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.StaticNetworkInfo + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.request.command.UpdateStaticNetworkInfo$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.UpdateStaticNetworkInfo + clearInfo: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.UpdateStaticNetworkInfo$Builder + getInfo: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.StaticNetworkInfo + getInfoBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.StaticNetworkInfo$Builder + hasInfo: + annotations: [] + default: false + type: public + returnType: boolean + hasInfoBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setInfo: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.UpdateStaticNetworkInfo$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.StaticNetworkInfo + setInfoBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.command.UpdateStaticNetworkInfo$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.StaticNetworkInfo$Builder +net.corda.data.membership.db.request.query.MutualTlsListAllowedCertificates: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.query.MutualTlsListAllowedCertificates + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.query.MutualTlsListAllowedCertificates$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.request.query.MutualTlsListAllowedCertificates + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.request.query.MutualTlsListAllowedCertificates$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.query.MutualTlsListAllowedCertificates +net.corda.data.membership.db.request.query.QueryApprovalRules: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.query.QueryApprovalRules + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getRuleType: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.ApprovalRuleType + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.query.QueryApprovalRules$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.request.query.QueryApprovalRules + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setRuleType: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.common.ApprovalRuleType + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.request.query.QueryApprovalRules$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.query.QueryApprovalRules + clearRuleType: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.query.QueryApprovalRules$Builder + getRuleType: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.ApprovalRuleType + hasRuleType: + annotations: [] + default: false + type: public + returnType: boolean + setRuleType: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.query.QueryApprovalRules$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.common.ApprovalRuleType +net.corda.data.membership.db.request.query.QueryGroupPolicy: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.query.QueryGroupPolicy + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.query.QueryGroupPolicy$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.request.query.QueryGroupPolicy + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.request.query.QueryGroupPolicy$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.query.QueryGroupPolicy +net.corda.data.membership.db.request.query.QueryMemberInfo: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.query.QueryMemberInfo + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getQueryIdentities: + annotations: [] + default: false + type: public + returnType: java.util.List + getQueryStatuses: + annotations: [] + default: false + type: public + returnType: java.util.List + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.query.QueryMemberInfo$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.request.query.QueryMemberInfo + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setQueryIdentities: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + setQueryStatuses: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.request.query.QueryMemberInfo$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.query.QueryMemberInfo + clearQueryIdentities: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.query.QueryMemberInfo$Builder + clearQueryStatuses: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.query.QueryMemberInfo$Builder + getQueryIdentities: + annotations: [] + default: false + type: public + returnType: java.util.List + getQueryStatuses: + annotations: [] + default: false + type: public + returnType: java.util.List + hasQueryIdentities: + annotations: [] + default: false + type: public + returnType: boolean + hasQueryStatuses: + annotations: [] + default: false + type: public + returnType: boolean + setQueryIdentities: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.query.QueryMemberInfo$Builder + params: + value: + annotation: [] + type: java.util.List + setQueryStatuses: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.query.QueryMemberInfo$Builder + params: + value: + annotation: [] + type: java.util.List +net.corda.data.membership.db.request.query.QueryMemberSignature: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.query.QueryMemberSignature + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getQueryIdentities: + annotations: [] + default: false + type: public + returnType: java.util.List + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.query.QueryMemberSignature$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.request.query.QueryMemberSignature + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setQueryIdentities: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.request.query.QueryMemberSignature$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.query.QueryMemberSignature + clearQueryIdentities: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.query.QueryMemberSignature$Builder + getQueryIdentities: + annotations: [] + default: false + type: public + returnType: java.util.List + hasQueryIdentities: + annotations: [] + default: false + type: public + returnType: boolean + setQueryIdentities: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.query.QueryMemberSignature$Builder + params: + value: + annotation: [] + type: java.util.List +net.corda.data.membership.db.request.query.QueryPreAuthToken: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.query.QueryPreAuthToken + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getOwnerX500Name: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getStatuses: + annotations: [] + default: false + type: public + returnType: java.util.List + getTokenId: + annotations: [] + default: false + type: public + returnType: String + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.query.QueryPreAuthToken$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.request.query.QueryPreAuthToken + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setOwnerX500Name: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setStatuses: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + setTokenId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.request.query.QueryPreAuthToken$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.query.QueryPreAuthToken + clearOwnerX500Name: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.query.QueryPreAuthToken$Builder + clearStatuses: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.query.QueryPreAuthToken$Builder + clearTokenId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.query.QueryPreAuthToken$Builder + getOwnerX500Name: + annotations: [] + default: false + type: public + returnType: String + getStatuses: + annotations: [] + default: false + type: public + returnType: java.util.List + getTokenId: + annotations: [] + default: false + type: public + returnType: String + hasOwnerX500Name: + annotations: [] + default: false + type: public + returnType: boolean + hasStatuses: + annotations: [] + default: false + type: public + returnType: boolean + hasTokenId: + annotations: [] + default: false + type: public + returnType: boolean + setOwnerX500Name: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.query.QueryPreAuthToken$Builder + params: + value: + annotation: [] + type: String + setStatuses: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.query.QueryPreAuthToken$Builder + params: + value: + annotation: [] + type: java.util.List + setTokenId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.query.QueryPreAuthToken$Builder + params: + value: + annotation: [] + type: String +net.corda.data.membership.db.request.query.QueryRegistrationRequest: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.query.QueryRegistrationRequest + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getRegistrationRequestId: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.query.QueryRegistrationRequest$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.request.query.QueryRegistrationRequest + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setRegistrationRequestId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.request.query.QueryRegistrationRequest$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.query.QueryRegistrationRequest + clearRegistrationRequestId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.query.QueryRegistrationRequest$Builder + getRegistrationRequestId: + annotations: [] + default: false + type: public + returnType: String + hasRegistrationRequestId: + annotations: [] + default: false + type: public + returnType: boolean + setRegistrationRequestId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.query.QueryRegistrationRequest$Builder + params: + value: + annotation: [] + type: String +net.corda.data.membership.db.request.query.QueryRegistrationRequests: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.query.QueryRegistrationRequests + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getLimit: + annotations: [] + default: false + type: public + returnType: Integer + getRequestSubjectX500Name: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getStatuses: + annotations: [] + default: false + type: public + returnType: java.util.List + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.query.QueryRegistrationRequests$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.request.query.QueryRegistrationRequests + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setLimit: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Integer + setRequestSubjectX500Name: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setStatuses: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.request.query.QueryRegistrationRequests$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.query.QueryRegistrationRequests + clearLimit: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.query.QueryRegistrationRequests$Builder + clearRequestSubjectX500Name: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.query.QueryRegistrationRequests$Builder + clearStatuses: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.query.QueryRegistrationRequests$Builder + getLimit: + annotations: [] + default: false + type: public + returnType: Integer + getRequestSubjectX500Name: + annotations: [] + default: false + type: public + returnType: String + getStatuses: + annotations: [] + default: false + type: public + returnType: java.util.List + hasLimit: + annotations: [] + default: false + type: public + returnType: boolean + hasRequestSubjectX500Name: + annotations: [] + default: false + type: public + returnType: boolean + hasStatuses: + annotations: [] + default: false + type: public + returnType: boolean + setLimit: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.query.QueryRegistrationRequests$Builder + params: + value: + annotation: [] + type: Integer + setRequestSubjectX500Name: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.query.QueryRegistrationRequests$Builder + params: + value: + annotation: [] + type: String + setStatuses: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.query.QueryRegistrationRequests$Builder + params: + value: + annotation: [] + type: java.util.List +net.corda.data.membership.db.request.query.QueryStaticNetworkInfo: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.query.QueryStaticNetworkInfo + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getGroupId: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.request.query.QueryStaticNetworkInfo$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.request.query.QueryStaticNetworkInfo + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setGroupId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.request.query.QueryStaticNetworkInfo$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.query.QueryStaticNetworkInfo + clearGroupId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.query.QueryStaticNetworkInfo$Builder + getGroupId: + annotations: [] + default: false + type: public + returnType: String + hasGroupId: + annotations: [] + default: false + type: public + returnType: boolean + setGroupId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.request.query.QueryStaticNetworkInfo$Builder + params: + value: + annotation: [] + type: String +net.corda.data.membership.db.response.MembershipPersistenceResponse: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.response.MembershipPersistenceResponse + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.MembershipResponseContext + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getPayload: + annotations: [] + default: false + type: public + returnType: Object + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.response.MembershipPersistenceResponse$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.response.MembershipPersistenceResponse + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setContext: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.db.response.MembershipResponseContext + setPayload: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Object + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.response.MembershipPersistenceResponse$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.MembershipPersistenceResponse + clearContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.MembershipPersistenceResponse$Builder + clearPayload: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.MembershipPersistenceResponse$Builder + getContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.MembershipResponseContext + getContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.MembershipResponseContext$Builder + getPayload: + annotations: [] + default: false + type: public + returnType: Object + hasContext: + annotations: [] + default: false + type: public + returnType: boolean + hasContextBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasPayload: + annotations: [] + default: false + type: public + returnType: boolean + setContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.MembershipPersistenceResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.db.response.MembershipResponseContext + setContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.MembershipPersistenceResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.db.response.MembershipResponseContext$Builder + setPayload: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.MembershipPersistenceResponse$Builder + params: + value: + annotation: [] + type: Object +net.corda.data.membership.db.response.MembershipResponseContext: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.response.MembershipResponseContext + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getRequestId: + annotations: [] + default: false + type: public + returnType: String + getRequestTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getResponseTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.response.MembershipResponseContext$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.response.MembershipResponseContext + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setHoldingIdentity: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setRequestId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setRequestTimestamp: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + setResponseTimestamp: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.response.MembershipResponseContext$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.MembershipResponseContext + clearHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.MembershipResponseContext$Builder + clearRequestId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.MembershipResponseContext$Builder + clearRequestTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.MembershipResponseContext$Builder + clearResponseTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.MembershipResponseContext$Builder + getHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getHoldingIdentityBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + getRequestId: + annotations: [] + default: false + type: public + returnType: String + getRequestTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getResponseTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + hasHoldingIdentity: + annotations: [] + default: false + type: public + returnType: boolean + hasHoldingIdentityBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasRequestId: + annotations: [] + default: false + type: public + returnType: boolean + hasRequestTimestamp: + annotations: [] + default: false + type: public + returnType: boolean + hasResponseTimestamp: + annotations: [] + default: false + type: public + returnType: boolean + setHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.MembershipResponseContext$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setHoldingIdentityBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.MembershipResponseContext$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder + setRequestId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.MembershipResponseContext$Builder + params: + value: + annotation: [] + type: String + setRequestTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.MembershipResponseContext$Builder + params: + value: + annotation: [] + type: java.time.Instant + setResponseTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.MembershipResponseContext$Builder + params: + value: + annotation: [] + type: java.time.Instant +net.corda.data.membership.db.response.command.ActivateMemberResponse: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.response.command.ActivateMemberResponse + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getGroupParameters: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedGroupParameters + getMemberInfo: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.PersistentMemberInfo + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.response.command.ActivateMemberResponse$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.response.command.ActivateMemberResponse + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setGroupParameters: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.SignedGroupParameters + setMemberInfo: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.PersistentMemberInfo + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.response.command.ActivateMemberResponse$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.command.ActivateMemberResponse + clearGroupParameters: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.command.ActivateMemberResponse$Builder + clearMemberInfo: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.command.ActivateMemberResponse$Builder + getGroupParameters: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedGroupParameters + getGroupParametersBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedGroupParameters$Builder + getMemberInfo: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.PersistentMemberInfo + getMemberInfoBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.PersistentMemberInfo$Builder + hasGroupParameters: + annotations: [] + default: false + type: public + returnType: boolean + hasGroupParametersBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasMemberInfo: + annotations: [] + default: false + type: public + returnType: boolean + hasMemberInfoBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setGroupParameters: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.command.ActivateMemberResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.SignedGroupParameters + setGroupParametersBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.command.ActivateMemberResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.SignedGroupParameters$Builder + setMemberInfo: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.command.ActivateMemberResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.PersistentMemberInfo + setMemberInfoBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.command.ActivateMemberResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.PersistentMemberInfo$Builder +net.corda.data.membership.db.response.command.DeleteApprovalRuleResponse: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.response.command.DeleteApprovalRuleResponse + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.response.command.DeleteApprovalRuleResponse$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.response.command.DeleteApprovalRuleResponse + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.response.command.DeleteApprovalRuleResponse$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.command.DeleteApprovalRuleResponse +net.corda.data.membership.db.response.command.PersistApprovalRuleResponse: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.response.command.PersistApprovalRuleResponse + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getPersistedRule: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.ApprovalRuleDetails + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.response.command.PersistApprovalRuleResponse$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.response.command.PersistApprovalRuleResponse + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setPersistedRule: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.common.ApprovalRuleDetails + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.response.command.PersistApprovalRuleResponse$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.command.PersistApprovalRuleResponse + clearPersistedRule: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.command.PersistApprovalRuleResponse$Builder + getPersistedRule: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.ApprovalRuleDetails + getPersistedRuleBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.ApprovalRuleDetails$Builder + hasPersistedRule: + annotations: [] + default: false + type: public + returnType: boolean + hasPersistedRuleBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setPersistedRule: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.command.PersistApprovalRuleResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.common.ApprovalRuleDetails + setPersistedRuleBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.command.PersistApprovalRuleResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.common.ApprovalRuleDetails$Builder +net.corda.data.membership.db.response.command.PersistGroupParametersResponse: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.response.command.PersistGroupParametersResponse + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getGroupParameters: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedGroupParameters + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.response.command.PersistGroupParametersResponse$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.response.command.PersistGroupParametersResponse + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setGroupParameters: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.SignedGroupParameters + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.response.command.PersistGroupParametersResponse$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.command.PersistGroupParametersResponse + clearGroupParameters: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.command.PersistGroupParametersResponse$Builder + getGroupParameters: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedGroupParameters + getGroupParametersBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedGroupParameters$Builder + hasGroupParameters: + annotations: [] + default: false + type: public + returnType: boolean + hasGroupParametersBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setGroupParameters: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.command.PersistGroupParametersResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.SignedGroupParameters + setGroupParametersBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.command.PersistGroupParametersResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.SignedGroupParameters$Builder +net.corda.data.membership.db.response.command.RevokePreAuthTokenResponse: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.response.command.RevokePreAuthTokenResponse + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getPreAuthToken: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.preauth.PreAuthToken + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.response.command.RevokePreAuthTokenResponse$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.response.command.RevokePreAuthTokenResponse + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setPreAuthToken: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.preauth.PreAuthToken + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.response.command.RevokePreAuthTokenResponse$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.command.RevokePreAuthTokenResponse + clearPreAuthToken: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.command.RevokePreAuthTokenResponse$Builder + getPreAuthToken: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.preauth.PreAuthToken + getPreAuthTokenBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.preauth.PreAuthToken$Builder + hasPreAuthToken: + annotations: [] + default: false + type: public + returnType: boolean + hasPreAuthTokenBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setPreAuthToken: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.command.RevokePreAuthTokenResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.preauth.PreAuthToken + setPreAuthTokenBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.command.RevokePreAuthTokenResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.preauth.PreAuthToken$Builder +net.corda.data.membership.db.response.command.SuspendMemberResponse: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.response.command.SuspendMemberResponse + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getGroupParameters: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedGroupParameters + getMemberInfo: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.PersistentMemberInfo + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.response.command.SuspendMemberResponse$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.response.command.SuspendMemberResponse + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setGroupParameters: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.SignedGroupParameters + setMemberInfo: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.PersistentMemberInfo + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.response.command.SuspendMemberResponse$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.command.SuspendMemberResponse + clearGroupParameters: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.command.SuspendMemberResponse$Builder + clearMemberInfo: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.command.SuspendMemberResponse$Builder + getGroupParameters: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedGroupParameters + getGroupParametersBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedGroupParameters$Builder + getMemberInfo: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.PersistentMemberInfo + getMemberInfoBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.PersistentMemberInfo$Builder + hasGroupParameters: + annotations: [] + default: false + type: public + returnType: boolean + hasGroupParametersBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasMemberInfo: + annotations: [] + default: false + type: public + returnType: boolean + hasMemberInfoBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setGroupParameters: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.command.SuspendMemberResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.SignedGroupParameters + setGroupParametersBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.command.SuspendMemberResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.SignedGroupParameters$Builder + setMemberInfo: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.command.SuspendMemberResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.PersistentMemberInfo + setMemberInfoBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.command.SuspendMemberResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.PersistentMemberInfo$Builder +net.corda.data.membership.db.response.query.ApprovalRulesQueryResponse: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.response.query.ApprovalRulesQueryResponse + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getRules: + annotations: [] + default: false + type: public + returnType: java.util.List + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.response.query.ApprovalRulesQueryResponse$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.response.query.ApprovalRulesQueryResponse + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setRules: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.response.query.ApprovalRulesQueryResponse$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.ApprovalRulesQueryResponse + clearRules: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.ApprovalRulesQueryResponse$Builder + getRules: + annotations: [] + default: false + type: public + returnType: java.util.List + hasRules: + annotations: [] + default: false + type: public + returnType: boolean + setRules: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.ApprovalRulesQueryResponse$Builder + params: + value: + annotation: [] + type: java.util.List +net.corda.data.membership.db.response.query.ErrorKind: + annotations: + - AvroGenerated + type: public final class + extends: java.lang.Enum + implements: + - org.apache.avro.generic.GenericEnumSymbol + interface: false + methods: + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + valueOf: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.response.query.ErrorKind + params: {} + values: + annotations: [] + default: false + type: public static + returnType: "net.corda.data.membership.db.response.query.ErrorKind[]" + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.response.query.GroupPolicyQueryResponse: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.response.query.GroupPolicyQueryResponse + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getProperties: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getVersion: + annotations: [] + default: false + type: public + returnType: long + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.response.query.GroupPolicyQueryResponse$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.response.query.GroupPolicyQueryResponse + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setProperties: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setVersion: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: long + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.response.query.GroupPolicyQueryResponse$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.GroupPolicyQueryResponse + clearProperties: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.GroupPolicyQueryResponse$Builder + clearVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.GroupPolicyQueryResponse$Builder + getProperties: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getPropertiesBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList$Builder + getVersion: + annotations: [] + default: false + type: public + returnType: long + hasProperties: + annotations: [] + default: false + type: public + returnType: boolean + hasPropertiesBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasVersion: + annotations: [] + default: false + type: public + returnType: boolean + setProperties: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.GroupPolicyQueryResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setPropertiesBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.GroupPolicyQueryResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList$Builder + setVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.GroupPolicyQueryResponse$Builder + params: + value: + annotation: [] + type: long +net.corda.data.membership.db.response.query.MemberInfoQueryResponse: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.response.query.MemberInfoQueryResponse + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getMembers: + annotations: [] + default: false + type: public + returnType: java.util.List + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.response.query.MemberInfoQueryResponse$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.response.query.MemberInfoQueryResponse + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setMembers: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.response.query.MemberInfoQueryResponse$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.MemberInfoQueryResponse + clearMembers: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.MemberInfoQueryResponse$Builder + getMembers: + annotations: [] + default: false + type: public + returnType: java.util.List + hasMembers: + annotations: [] + default: false + type: public + returnType: boolean + setMembers: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.MemberInfoQueryResponse$Builder + params: + value: + annotation: [] + type: java.util.List +net.corda.data.membership.db.response.query.MemberSignature: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.response.query.MemberSignature + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSignature: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureWithKey + getSignatureSpec: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureSpec + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.response.query.MemberSignature$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.response.query.MemberSignature + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setHoldingIdentity: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setSignature: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoSignatureWithKey + setSignatureSpec: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoSignatureSpec + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.response.query.MemberSignature$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.MemberSignature + clearHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.MemberSignature$Builder + clearSignature: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.MemberSignature$Builder + clearSignatureSpec: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.MemberSignature$Builder + getHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getHoldingIdentityBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + getSignature: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureWithKey + getSignatureBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureWithKey$Builder + getSignatureSpec: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureSpec + getSignatureSpecBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.wire.CryptoSignatureSpec$Builder + hasHoldingIdentity: + annotations: [] + default: false + type: public + returnType: boolean + hasHoldingIdentityBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasSignature: + annotations: [] + default: false + type: public + returnType: boolean + hasSignatureBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasSignatureSpec: + annotations: [] + default: false + type: public + returnType: boolean + hasSignatureSpecBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.MemberSignature$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setHoldingIdentityBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.MemberSignature$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder + setSignature: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.MemberSignature$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoSignatureWithKey + setSignatureBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.MemberSignature$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoSignatureWithKey$Builder + setSignatureSpec: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.MemberSignature$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoSignatureSpec + setSignatureSpecBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.MemberSignature$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.wire.CryptoSignatureSpec$Builder +net.corda.data.membership.db.response.query.MemberSignatureQueryResponse: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.response.query.MemberSignatureQueryResponse + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getMembersSignatures: + annotations: [] + default: false + type: public + returnType: java.util.List + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.response.query.MemberSignatureQueryResponse$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.response.query.MemberSignatureQueryResponse + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setMembersSignatures: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.response.query.MemberSignatureQueryResponse$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.MemberSignatureQueryResponse + clearMembersSignatures: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.MemberSignatureQueryResponse$Builder + getMembersSignatures: + annotations: [] + default: false + type: public + returnType: java.util.List + hasMembersSignatures: + annotations: [] + default: false + type: public + returnType: boolean + setMembersSignatures: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.MemberSignatureQueryResponse$Builder + params: + value: + annotation: [] + type: java.util.List +net.corda.data.membership.db.response.query.MutualTlsListAllowedCertificatesResponse: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.response.query.MutualTlsListAllowedCertificatesResponse + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getSubjects: + annotations: [] + default: false + type: public + returnType: java.util.List + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.response.query.MutualTlsListAllowedCertificatesResponse$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.response.query.MutualTlsListAllowedCertificatesResponse + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setSubjects: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.response.query.MutualTlsListAllowedCertificatesResponse$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.MutualTlsListAllowedCertificatesResponse + clearSubjects: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.MutualTlsListAllowedCertificatesResponse$Builder + getSubjects: + annotations: [] + default: false + type: public + returnType: java.util.List + hasSubjects: + annotations: [] + default: false + type: public + returnType: boolean + setSubjects: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.MutualTlsListAllowedCertificatesResponse$Builder + params: + value: + annotation: [] + type: java.util.List +net.corda.data.membership.db.response.query.PersistenceFailedResponse: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.response.query.PersistenceFailedResponse + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getErrorKind: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.ErrorKind + getErrorMessage: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.response.query.PersistenceFailedResponse$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.response.query.PersistenceFailedResponse + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setErrorKind: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.db.response.query.ErrorKind + setErrorMessage: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.response.query.PersistenceFailedResponse$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.PersistenceFailedResponse + clearErrorKind: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.PersistenceFailedResponse$Builder + clearErrorMessage: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.PersistenceFailedResponse$Builder + getErrorKind: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.ErrorKind + getErrorMessage: + annotations: [] + default: false + type: public + returnType: String + hasErrorKind: + annotations: [] + default: false + type: public + returnType: boolean + hasErrorMessage: + annotations: [] + default: false + type: public + returnType: boolean + setErrorKind: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.PersistenceFailedResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.db.response.query.ErrorKind + setErrorMessage: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.PersistenceFailedResponse$Builder + params: + value: + annotation: [] + type: String +net.corda.data.membership.db.response.query.PreAuthTokenQueryResponse: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.response.query.PreAuthTokenQueryResponse + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getTokens: + annotations: [] + default: false + type: public + returnType: java.util.List + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.response.query.PreAuthTokenQueryResponse$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.response.query.PreAuthTokenQueryResponse + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setTokens: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.response.query.PreAuthTokenQueryResponse$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.PreAuthTokenQueryResponse + clearTokens: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.PreAuthTokenQueryResponse$Builder + getTokens: + annotations: [] + default: false + type: public + returnType: java.util.List + hasTokens: + annotations: [] + default: false + type: public + returnType: boolean + setTokens: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.PreAuthTokenQueryResponse$Builder + params: + value: + annotation: [] + type: java.util.List +net.corda.data.membership.db.response.query.RegistrationRequestQueryResponse: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.response.query.RegistrationRequestQueryResponse + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getRegistrationRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.RegistrationRequestDetails + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.response.query.RegistrationRequestQueryResponse$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.response.query.RegistrationRequestQueryResponse + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setRegistrationRequest: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.common.RegistrationRequestDetails + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.response.query.RegistrationRequestQueryResponse$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.RegistrationRequestQueryResponse + clearRegistrationRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.RegistrationRequestQueryResponse$Builder + getRegistrationRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.RegistrationRequestDetails + getRegistrationRequestBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.RegistrationRequestDetails$Builder + hasRegistrationRequest: + annotations: [] + default: false + type: public + returnType: boolean + hasRegistrationRequestBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setRegistrationRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.RegistrationRequestQueryResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.common.RegistrationRequestDetails + setRegistrationRequestBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.RegistrationRequestQueryResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.common.RegistrationRequestDetails$Builder +net.corda.data.membership.db.response.query.RegistrationRequestsQueryResponse: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.response.query.RegistrationRequestsQueryResponse + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getRegistrationRequests: + annotations: [] + default: false + type: public + returnType: java.util.List + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.response.query.RegistrationRequestsQueryResponse$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.response.query.RegistrationRequestsQueryResponse + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setRegistrationRequests: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.response.query.RegistrationRequestsQueryResponse$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.RegistrationRequestsQueryResponse + clearRegistrationRequests: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.RegistrationRequestsQueryResponse$Builder + getRegistrationRequests: + annotations: [] + default: false + type: public + returnType: java.util.List + hasRegistrationRequests: + annotations: [] + default: false + type: public + returnType: boolean + setRegistrationRequests: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.RegistrationRequestsQueryResponse$Builder + params: + value: + annotation: [] + type: java.util.List +net.corda.data.membership.db.response.query.StaticNetworkInfoQueryResponse: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.response.query.StaticNetworkInfoQueryResponse + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getInfo: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.StaticNetworkInfo + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.response.query.StaticNetworkInfoQueryResponse$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.response.query.StaticNetworkInfoQueryResponse + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setInfo: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.StaticNetworkInfo + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.response.query.StaticNetworkInfoQueryResponse$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.StaticNetworkInfoQueryResponse + clearInfo: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.StaticNetworkInfoQueryResponse$Builder + getInfo: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.StaticNetworkInfo + getInfoBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.StaticNetworkInfo$Builder + hasInfo: + annotations: [] + default: false + type: public + returnType: boolean + hasInfoBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setInfo: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.StaticNetworkInfoQueryResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.StaticNetworkInfo + setInfoBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.StaticNetworkInfoQueryResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.StaticNetworkInfo$Builder +net.corda.data.membership.db.response.query.UpdateMemberAndRegistrationRequestResponse: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.response.query.UpdateMemberAndRegistrationRequestResponse + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getMemberInfo: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.PersistentMemberInfo + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.db.response.query.UpdateMemberAndRegistrationRequestResponse$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.db.response.query.UpdateMemberAndRegistrationRequestResponse + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setMemberInfo: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.PersistentMemberInfo + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.db.response.query.UpdateMemberAndRegistrationRequestResponse$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.UpdateMemberAndRegistrationRequestResponse + clearMemberInfo: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.UpdateMemberAndRegistrationRequestResponse$Builder + getMemberInfo: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.PersistentMemberInfo + getMemberInfoBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.PersistentMemberInfo$Builder + hasMemberInfo: + annotations: [] + default: false + type: public + returnType: boolean + hasMemberInfoBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setMemberInfo: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.UpdateMemberAndRegistrationRequestResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.PersistentMemberInfo + setMemberInfoBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.db.response.query.UpdateMemberAndRegistrationRequestResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.PersistentMemberInfo$Builder +net.corda.data.membership.event.MembershipEvent: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.event.MembershipEvent + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getEvent: + annotations: [] + default: false + type: public + returnType: Object + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.event.MembershipEvent$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.event.MembershipEvent + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setEvent: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Object + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.event.MembershipEvent$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.event.MembershipEvent + clearEvent: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.event.MembershipEvent$Builder + getEvent: + annotations: [] + default: false + type: public + returnType: Object + hasEvent: + annotations: [] + default: false + type: public + returnType: boolean + setEvent: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.event.MembershipEvent$Builder + params: + value: + annotation: [] + type: Object +net.corda.data.membership.event.registration.MemberRegistrationApproved: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.event.registration.MemberRegistrationApproved + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getApprovedMember: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.event.registration.MemberRegistrationApproved$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.event.registration.MemberRegistrationApproved + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setApprovedMember: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.event.registration.MemberRegistrationApproved$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.event.registration.MemberRegistrationApproved + clearApprovedMember: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.event.registration.MemberRegistrationApproved$Builder + getApprovedMember: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getApprovedMemberBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + hasApprovedMember: + annotations: [] + default: false + type: public + returnType: boolean + hasApprovedMemberBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setApprovedMember: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.event.registration.MemberRegistrationApproved$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setApprovedMemberBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.event.registration.MemberRegistrationApproved$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder +net.corda.data.membership.event.registration.MemberRegistrationDeclined: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.event.registration.MemberRegistrationDeclined + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDeclinedMember: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.event.registration.MemberRegistrationDeclined$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.event.registration.MemberRegistrationDeclined + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setDeclinedMember: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.event.registration.MemberRegistrationDeclined$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.event.registration.MemberRegistrationDeclined + clearDeclinedMember: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.event.registration.MemberRegistrationDeclined$Builder + getDeclinedMember: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getDeclinedMemberBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + hasDeclinedMember: + annotations: [] + default: false + type: public + returnType: boolean + hasDeclinedMemberBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setDeclinedMember: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.event.registration.MemberRegistrationDeclined$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setDeclinedMemberBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.event.registration.MemberRegistrationDeclined$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder +net.corda.data.membership.event.registration.MgmOnboarded: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.event.registration.MgmOnboarded + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getOnboardedMgm: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.event.registration.MgmOnboarded$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.event.registration.MgmOnboarded + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setOnboardedMgm: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.event.registration.MgmOnboarded$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.event.registration.MgmOnboarded + clearOnboardedMgm: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.event.registration.MgmOnboarded$Builder + getOnboardedMgm: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getOnboardedMgmBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + hasOnboardedMgm: + annotations: [] + default: false + type: public + returnType: boolean + hasOnboardedMgmBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setOnboardedMgm: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.event.registration.MgmOnboarded$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setOnboardedMgmBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.event.registration.MgmOnboarded$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder +net.corda.data.membership.p2p.DistributionMetaData: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.p2p.DistributionMetaData + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getSyncId: + annotations: [] + default: false + type: public + returnType: String + getSyncRequested: + annotations: [] + default: false + type: public + returnType: java.time.Instant + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.p2p.DistributionMetaData$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.p2p.DistributionMetaData + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setSyncId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setSyncRequested: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.p2p.DistributionMetaData$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.DistributionMetaData + clearSyncId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.DistributionMetaData$Builder + clearSyncRequested: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.DistributionMetaData$Builder + getSyncId: + annotations: [] + default: false + type: public + returnType: String + getSyncRequested: + annotations: [] + default: false + type: public + returnType: java.time.Instant + hasSyncId: + annotations: [] + default: false + type: public + returnType: boolean + hasSyncRequested: + annotations: [] + default: false + type: public + returnType: boolean + setSyncId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.DistributionMetaData$Builder + params: + value: + annotation: [] + type: String + setSyncRequested: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.DistributionMetaData$Builder + params: + value: + annotation: [] + type: java.time.Instant +net.corda.data.membership.p2p.DistributionType: + annotations: + - AvroGenerated + type: public final class + extends: java.lang.Enum + implements: + - org.apache.avro.generic.GenericEnumSymbol + interface: false + methods: + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + valueOf: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.p2p.DistributionType + params: {} + values: + annotations: [] + default: false + type: public static + returnType: "net.corda.data.membership.p2p.DistributionType[]" + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.p2p.MembershipPackage: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.p2p.MembershipPackage + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getCurrentPage: + annotations: [] + default: false + type: public + returnType: int + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getDistributionMetaData: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.DistributionMetaData + getDistributionType: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.DistributionType + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getGroupParameters: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedGroupParameters + getMemberships: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.SignedMemberships + getPageCount: + annotations: [] + default: false + type: public + returnType: int + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.p2p.MembershipPackage$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.p2p.MembershipPackage + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setCurrentPage: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + setDistributionMetaData: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.p2p.DistributionMetaData + setDistributionType: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.p2p.DistributionType + setGroupParameters: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.SignedGroupParameters + setMemberships: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.p2p.SignedMemberships + setPageCount: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.p2p.MembershipPackage$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipPackage + clearCurrentPage: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipPackage$Builder + clearDistributionMetaData: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipPackage$Builder + clearDistributionType: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipPackage$Builder + clearGroupParameters: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipPackage$Builder + clearMemberships: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipPackage$Builder + clearPageCount: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipPackage$Builder + getCurrentPage: + annotations: [] + default: false + type: public + returnType: int + getDistributionMetaData: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.DistributionMetaData + getDistributionMetaDataBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.DistributionMetaData$Builder + getDistributionType: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.DistributionType + getGroupParameters: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedGroupParameters + getGroupParametersBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedGroupParameters$Builder + getMemberships: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.SignedMemberships + getMembershipsBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.SignedMemberships$Builder + getPageCount: + annotations: [] + default: false + type: public + returnType: int + hasCurrentPage: + annotations: [] + default: false + type: public + returnType: boolean + hasDistributionMetaData: + annotations: [] + default: false + type: public + returnType: boolean + hasDistributionMetaDataBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasDistributionType: + annotations: [] + default: false + type: public + returnType: boolean + hasGroupParameters: + annotations: [] + default: false + type: public + returnType: boolean + hasGroupParametersBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasMemberships: + annotations: [] + default: false + type: public + returnType: boolean + hasMembershipsBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasPageCount: + annotations: [] + default: false + type: public + returnType: boolean + setCurrentPage: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipPackage$Builder + params: + value: + annotation: [] + type: int + setDistributionMetaData: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipPackage$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.p2p.DistributionMetaData + setDistributionMetaDataBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipPackage$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.p2p.DistributionMetaData$Builder + setDistributionType: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipPackage$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.p2p.DistributionType + setGroupParameters: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipPackage$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.SignedGroupParameters + setGroupParametersBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipPackage$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.SignedGroupParameters$Builder + setMemberships: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipPackage$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.p2p.SignedMemberships + setMembershipsBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipPackage$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.p2p.SignedMemberships$Builder + setPageCount: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipPackage$Builder + params: + value: + annotation: [] + type: int +net.corda.data.membership.p2p.MembershipRegistrationRequest: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.p2p.MembershipRegistrationRequest + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getMemberContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedData + getRegistrationContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedData + getRegistrationId: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSerial: + annotations: [] + default: false + type: public + returnType: Long + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.p2p.MembershipRegistrationRequest$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.p2p.MembershipRegistrationRequest + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setMemberContext: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.SignedData + setRegistrationContext: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.SignedData + setRegistrationId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setSerial: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Long + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.p2p.MembershipRegistrationRequest$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipRegistrationRequest + clearMemberContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipRegistrationRequest$Builder + clearRegistrationContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipRegistrationRequest$Builder + clearRegistrationId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipRegistrationRequest$Builder + clearSerial: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipRegistrationRequest$Builder + getMemberContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedData + getMemberContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedData$Builder + getRegistrationContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedData + getRegistrationContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.SignedData$Builder + getRegistrationId: + annotations: [] + default: false + type: public + returnType: String + getSerial: + annotations: [] + default: false + type: public + returnType: Long + hasMemberContext: + annotations: [] + default: false + type: public + returnType: boolean + hasMemberContextBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasRegistrationContext: + annotations: [] + default: false + type: public + returnType: boolean + hasRegistrationContextBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasRegistrationId: + annotations: [] + default: false + type: public + returnType: boolean + hasSerial: + annotations: [] + default: false + type: public + returnType: boolean + setMemberContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipRegistrationRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.SignedData + setMemberContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipRegistrationRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.SignedData$Builder + setRegistrationContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipRegistrationRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.SignedData + setRegistrationContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipRegistrationRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.SignedData$Builder + setRegistrationId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipRegistrationRequest$Builder + params: + value: + annotation: [] + type: String + setSerial: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipRegistrationRequest$Builder + params: + value: + annotation: [] + type: Long +net.corda.data.membership.p2p.MembershipSyncRequest: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.p2p.MembershipSyncRequest + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getBloomFilter: + annotations: [] + default: false + type: public + returnType: net.corda.data.sync.BloomFilter + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getCpiAllowlistHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.SecureHash + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getDistributionMetaData: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.DistributionMetaData + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getGroupParametersHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.SecureHash + getMembersHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.SecureHash + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.p2p.MembershipSyncRequest$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.p2p.MembershipSyncRequest + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setBloomFilter: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.sync.BloomFilter + setCpiAllowlistHash: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.crypto.SecureHash + setDistributionMetaData: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.p2p.DistributionMetaData + setGroupParametersHash: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.crypto.SecureHash + setMembersHash: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.crypto.SecureHash + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.p2p.MembershipSyncRequest$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipSyncRequest + clearBloomFilter: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipSyncRequest$Builder + clearCpiAllowlistHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipSyncRequest$Builder + clearDistributionMetaData: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipSyncRequest$Builder + clearGroupParametersHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipSyncRequest$Builder + clearMembersHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipSyncRequest$Builder + getBloomFilter: + annotations: [] + default: false + type: public + returnType: net.corda.data.sync.BloomFilter + getBloomFilterBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.sync.BloomFilter$Builder + getCpiAllowlistHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.SecureHash + getCpiAllowlistHashBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.SecureHash$Builder + getDistributionMetaData: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.DistributionMetaData + getDistributionMetaDataBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.DistributionMetaData$Builder + getGroupParametersHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.SecureHash + getGroupParametersHashBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.SecureHash$Builder + getMembersHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.SecureHash + getMembersHashBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.SecureHash$Builder + hasBloomFilter: + annotations: [] + default: false + type: public + returnType: boolean + hasBloomFilterBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasCpiAllowlistHash: + annotations: [] + default: false + type: public + returnType: boolean + hasCpiAllowlistHashBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasDistributionMetaData: + annotations: [] + default: false + type: public + returnType: boolean + hasDistributionMetaDataBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasGroupParametersHash: + annotations: [] + default: false + type: public + returnType: boolean + hasGroupParametersHashBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasMembersHash: + annotations: [] + default: false + type: public + returnType: boolean + hasMembersHashBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setBloomFilter: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipSyncRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.sync.BloomFilter + setBloomFilterBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipSyncRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.sync.BloomFilter$Builder + setCpiAllowlistHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipSyncRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.SecureHash + setCpiAllowlistHashBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipSyncRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.SecureHash$Builder + setDistributionMetaData: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipSyncRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.p2p.DistributionMetaData + setDistributionMetaDataBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipSyncRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.p2p.DistributionMetaData$Builder + setGroupParametersHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipSyncRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.SecureHash + setGroupParametersHashBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipSyncRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.SecureHash$Builder + setMembersHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipSyncRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.SecureHash + setMembersHashBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.MembershipSyncRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.SecureHash$Builder +net.corda.data.membership.p2p.SetOwnRegistrationStatus: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.p2p.SetOwnRegistrationStatus + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getNewStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.RegistrationStatus + getRegistrationId: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.p2p.SetOwnRegistrationStatus$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.p2p.SetOwnRegistrationStatus + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setNewStatus: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.common.RegistrationStatus + setRegistrationId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.p2p.SetOwnRegistrationStatus$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.SetOwnRegistrationStatus + clearNewStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.SetOwnRegistrationStatus$Builder + clearRegistrationId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.SetOwnRegistrationStatus$Builder + getNewStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.RegistrationStatus + getRegistrationId: + annotations: [] + default: false + type: public + returnType: String + hasNewStatus: + annotations: [] + default: false + type: public + returnType: boolean + hasRegistrationId: + annotations: [] + default: false + type: public + returnType: boolean + setNewStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.SetOwnRegistrationStatus$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.common.RegistrationStatus + setRegistrationId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.SetOwnRegistrationStatus$Builder + params: + value: + annotation: [] + type: String +net.corda.data.membership.p2p.SignedMemberships: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.p2p.SignedMemberships + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getHashCheck: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.SecureHash + getMemberships: + annotations: [] + default: false + type: public + returnType: java.util.List + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.p2p.SignedMemberships$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.p2p.SignedMemberships + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setHashCheck: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.crypto.SecureHash + setMemberships: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.p2p.SignedMemberships$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.SignedMemberships + clearHashCheck: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.SignedMemberships$Builder + clearMemberships: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.SignedMemberships$Builder + getHashCheck: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.SecureHash + getHashCheckBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.SecureHash$Builder + getMemberships: + annotations: [] + default: false + type: public + returnType: java.util.List + hasHashCheck: + annotations: [] + default: false + type: public + returnType: boolean + hasHashCheckBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasMemberships: + annotations: [] + default: false + type: public + returnType: boolean + setHashCheck: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.SignedMemberships$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.SecureHash + setHashCheckBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.SignedMemberships$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.SecureHash$Builder + setMemberships: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.SignedMemberships$Builder + params: + value: + annotation: [] + type: java.util.List +net.corda.data.membership.p2p.UnauthenticatedRegistrationRequest: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequest + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getHeader: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequestHeader + getPayload: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequest$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequest + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setHeader: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequestHeader + setPayload: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.p2p.UnauthenticatedRegistrationRequest$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequest + clearHeader: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequest$Builder + clearPayload: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequest$Builder + getHeader: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequestHeader + getHeaderBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequestHeader$Builder + getPayload: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + hasHeader: + annotations: [] + default: false + type: public + returnType: boolean + hasHeaderBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasPayload: + annotations: [] + default: false + type: public + returnType: boolean + setHeader: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequestHeader + setHeaderBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequestHeader$Builder + setPayload: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequest$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer +net.corda.data.membership.p2p.UnauthenticatedRegistrationRequestHeader: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequestHeader + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getAad: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getKey: + annotations: [] + default: false + type: public + returnType: String + getMgm: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getSalt: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequestHeader$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequestHeader + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setAad: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setKey: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setMgm: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setSalt: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.p2p.UnauthenticatedRegistrationRequestHeader$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequestHeader + clearAad: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequestHeader$Builder + clearKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequestHeader$Builder + clearMgm: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequestHeader$Builder + clearSalt: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequestHeader$Builder + getAad: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getKey: + annotations: [] + default: false + type: public + returnType: String + getMgm: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getMgmBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + getSalt: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + hasAad: + annotations: [] + default: false + type: public + returnType: boolean + hasKey: + annotations: [] + default: false + type: public + returnType: boolean + hasMgm: + annotations: [] + default: false + type: public + returnType: boolean + hasMgmBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasSalt: + annotations: [] + default: false + type: public + returnType: boolean + setAad: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequestHeader$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequestHeader$Builder + params: + value: + annotation: [] + type: String + setMgm: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequestHeader$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setMgmBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequestHeader$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder + setSalt: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequestHeader$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer +net.corda.data.membership.p2p.VerificationRequest: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.p2p.VerificationRequest + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getPayload: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getRegistrationId: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.p2p.VerificationRequest$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.p2p.VerificationRequest + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setPayload: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setRegistrationId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.p2p.VerificationRequest$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.VerificationRequest + clearPayload: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.VerificationRequest$Builder + clearRegistrationId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.VerificationRequest$Builder + getPayload: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getPayloadBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList$Builder + getRegistrationId: + annotations: [] + default: false + type: public + returnType: String + hasPayload: + annotations: [] + default: false + type: public + returnType: boolean + hasPayloadBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasRegistrationId: + annotations: [] + default: false + type: public + returnType: boolean + setPayload: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.VerificationRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setPayloadBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.VerificationRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList$Builder + setRegistrationId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.VerificationRequest$Builder + params: + value: + annotation: [] + type: String +net.corda.data.membership.p2p.VerificationResponse: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.p2p.VerificationResponse + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getPayload: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getRegistrationId: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.p2p.VerificationResponse$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.p2p.VerificationResponse + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setPayload: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setRegistrationId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.p2p.VerificationResponse$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.VerificationResponse + clearPayload: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.VerificationResponse$Builder + clearRegistrationId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.VerificationResponse$Builder + getPayload: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getPayloadBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList$Builder + getRegistrationId: + annotations: [] + default: false + type: public + returnType: String + hasPayload: + annotations: [] + default: false + type: public + returnType: boolean + hasPayloadBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasRegistrationId: + annotations: [] + default: false + type: public + returnType: boolean + setPayload: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.VerificationResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setPayloadBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.VerificationResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList$Builder + setRegistrationId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.VerificationResponse$Builder + params: + value: + annotation: [] + type: String +net.corda.data.membership.p2p.v2.SetOwnRegistrationStatus: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.p2p.v2.SetOwnRegistrationStatus + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getNewStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.v2.RegistrationStatus + getReason: + annotations: [] + default: false + type: public + returnType: String + getRegistrationId: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.p2p.v2.SetOwnRegistrationStatus$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.p2p.v2.SetOwnRegistrationStatus + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setNewStatus: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.common.v2.RegistrationStatus + setReason: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setRegistrationId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.p2p.v2.SetOwnRegistrationStatus$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.v2.SetOwnRegistrationStatus + clearNewStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.v2.SetOwnRegistrationStatus$Builder + clearReason: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.v2.SetOwnRegistrationStatus$Builder + clearRegistrationId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.v2.SetOwnRegistrationStatus$Builder + getNewStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.common.v2.RegistrationStatus + getReason: + annotations: [] + default: false + type: public + returnType: String + getRegistrationId: + annotations: [] + default: false + type: public + returnType: String + hasNewStatus: + annotations: [] + default: false + type: public + returnType: boolean + hasReason: + annotations: [] + default: false + type: public + returnType: boolean + hasRegistrationId: + annotations: [] + default: false + type: public + returnType: boolean + setNewStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.v2.SetOwnRegistrationStatus$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.common.v2.RegistrationStatus + setReason: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.v2.SetOwnRegistrationStatus$Builder + params: + value: + annotation: [] + type: String + setRegistrationId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.p2p.v2.SetOwnRegistrationStatus$Builder + params: + value: + annotation: [] + type: String +net.corda.data.membership.preauth.PreAuthToken: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.preauth.PreAuthToken + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getCreationRemark: + annotations: [] + default: false + type: public + returnType: String + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getId: + annotations: [] + default: false + type: public + returnType: String + getOwnerX500Name: + annotations: [] + default: false + type: public + returnType: String + getRemovalRemark: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.preauth.PreAuthTokenStatus + getTtl: + annotations: [] + default: false + type: public + returnType: java.time.Instant + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.preauth.PreAuthToken$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.preauth.PreAuthToken + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setCreationRemark: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setOwnerX500Name: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setRemovalRemark: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setStatus: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.preauth.PreAuthTokenStatus + setTtl: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.preauth.PreAuthToken$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.preauth.PreAuthToken + clearCreationRemark: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.preauth.PreAuthToken$Builder + clearId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.preauth.PreAuthToken$Builder + clearOwnerX500Name: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.preauth.PreAuthToken$Builder + clearRemovalRemark: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.preauth.PreAuthToken$Builder + clearStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.preauth.PreAuthToken$Builder + clearTtl: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.preauth.PreAuthToken$Builder + getCreationRemark: + annotations: [] + default: false + type: public + returnType: String + getId: + annotations: [] + default: false + type: public + returnType: String + getOwnerX500Name: + annotations: [] + default: false + type: public + returnType: String + getRemovalRemark: + annotations: [] + default: false + type: public + returnType: String + getStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.preauth.PreAuthTokenStatus + getTtl: + annotations: [] + default: false + type: public + returnType: java.time.Instant + hasCreationRemark: + annotations: [] + default: false + type: public + returnType: boolean + hasId: + annotations: [] + default: false + type: public + returnType: boolean + hasOwnerX500Name: + annotations: [] + default: false + type: public + returnType: boolean + hasRemovalRemark: + annotations: [] + default: false + type: public + returnType: boolean + hasStatus: + annotations: [] + default: false + type: public + returnType: boolean + hasTtl: + annotations: [] + default: false + type: public + returnType: boolean + setCreationRemark: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.preauth.PreAuthToken$Builder + params: + value: + annotation: [] + type: String + setId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.preauth.PreAuthToken$Builder + params: + value: + annotation: [] + type: String + setOwnerX500Name: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.preauth.PreAuthToken$Builder + params: + value: + annotation: [] + type: String + setRemovalRemark: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.preauth.PreAuthToken$Builder + params: + value: + annotation: [] + type: String + setStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.preauth.PreAuthToken$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.preauth.PreAuthTokenStatus + setTtl: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.preauth.PreAuthToken$Builder + params: + value: + annotation: [] + type: java.time.Instant +net.corda.data.membership.preauth.PreAuthTokenStatus: + annotations: + - AvroGenerated + type: public final class + extends: java.lang.Enum + implements: + - org.apache.avro.generic.GenericEnumSymbol + interface: false + methods: + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + valueOf: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.preauth.PreAuthTokenStatus + params: {} + values: + annotations: [] + default: false + type: public static + returnType: "net.corda.data.membership.preauth.PreAuthTokenStatus[]" + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.rpc.request.MGMGroupPolicyRequest: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.rpc.request.MGMGroupPolicyRequest + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getHoldingIdentityId: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.rpc.request.MGMGroupPolicyRequest$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.rpc.request.MGMGroupPolicyRequest + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setHoldingIdentityId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.rpc.request.MGMGroupPolicyRequest$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.rpc.request.MGMGroupPolicyRequest + clearHoldingIdentityId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.rpc.request.MGMGroupPolicyRequest$Builder + getHoldingIdentityId: + annotations: [] + default: false + type: public + returnType: String + hasHoldingIdentityId: + annotations: [] + default: false + type: public + returnType: boolean + setHoldingIdentityId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.rpc.request.MGMGroupPolicyRequest$Builder + params: + value: + annotation: [] + type: String +net.corda.data.membership.rpc.request.MembershipRpcRequest: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.rpc.request.MembershipRpcRequest + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getRequest: + annotations: [] + default: false + type: public + returnType: Object + getRequestContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.rpc.request.MembershipRpcRequestContext + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.rpc.request.MembershipRpcRequest$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.rpc.request.MembershipRpcRequest + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setRequest: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Object + setRequestContext: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.rpc.request.MembershipRpcRequestContext + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.rpc.request.MembershipRpcRequest$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.rpc.request.MembershipRpcRequest + clearRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.rpc.request.MembershipRpcRequest$Builder + clearRequestContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.rpc.request.MembershipRpcRequest$Builder + getRequest: + annotations: [] + default: false + type: public + returnType: Object + getRequestContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.rpc.request.MembershipRpcRequestContext + getRequestContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.rpc.request.MembershipRpcRequestContext$Builder + hasRequest: + annotations: [] + default: false + type: public + returnType: boolean + hasRequestContext: + annotations: [] + default: false + type: public + returnType: boolean + hasRequestContextBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.rpc.request.MembershipRpcRequest$Builder + params: + value: + annotation: [] + type: Object + setRequestContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.rpc.request.MembershipRpcRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.rpc.request.MembershipRpcRequestContext + setRequestContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.rpc.request.MembershipRpcRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.rpc.request.MembershipRpcRequestContext$Builder +net.corda.data.membership.rpc.request.MembershipRpcRequestContext: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.rpc.request.MembershipRpcRequestContext + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getRequestId: + annotations: [] + default: false + type: public + returnType: String + getRequestTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.rpc.request.MembershipRpcRequestContext$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.rpc.request.MembershipRpcRequestContext + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setRequestId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setRequestTimestamp: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.rpc.request.MembershipRpcRequestContext$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.rpc.request.MembershipRpcRequestContext + clearRequestId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.rpc.request.MembershipRpcRequestContext$Builder + clearRequestTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.rpc.request.MembershipRpcRequestContext$Builder + getRequestId: + annotations: [] + default: false + type: public + returnType: String + getRequestTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + hasRequestId: + annotations: [] + default: false + type: public + returnType: boolean + hasRequestTimestamp: + annotations: [] + default: false + type: public + returnType: boolean + setRequestId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.rpc.request.MembershipRpcRequestContext$Builder + params: + value: + annotation: [] + type: String + setRequestTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.rpc.request.MembershipRpcRequestContext$Builder + params: + value: + annotation: [] + type: java.time.Instant +net.corda.data.membership.rpc.response.MGMGroupPolicyResponse: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.rpc.response.MGMGroupPolicyResponse + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getGroupPolicy: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.rpc.response.MGMGroupPolicyResponse$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.rpc.response.MGMGroupPolicyResponse + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setGroupPolicy: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.rpc.response.MGMGroupPolicyResponse$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.rpc.response.MGMGroupPolicyResponse + clearGroupPolicy: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.rpc.response.MGMGroupPolicyResponse$Builder + getGroupPolicy: + annotations: [] + default: false + type: public + returnType: String + hasGroupPolicy: + annotations: [] + default: false + type: public + returnType: boolean + setGroupPolicy: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.rpc.response.MGMGroupPolicyResponse$Builder + params: + value: + annotation: [] + type: String +net.corda.data.membership.rpc.response.MembershipRpcResponse: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.rpc.response.MembershipRpcResponse + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getResponse: + annotations: [] + default: false + type: public + returnType: Object + getResponseContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.rpc.response.MembershipRpcResponseContext + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.rpc.response.MembershipRpcResponse$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.rpc.response.MembershipRpcResponse + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setResponse: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Object + setResponseContext: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.membership.rpc.response.MembershipRpcResponseContext + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.rpc.response.MembershipRpcResponse$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.rpc.response.MembershipRpcResponse + clearResponse: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.rpc.response.MembershipRpcResponse$Builder + clearResponseContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.rpc.response.MembershipRpcResponse$Builder + getResponse: + annotations: [] + default: false + type: public + returnType: Object + getResponseContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.rpc.response.MembershipRpcResponseContext + getResponseContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.rpc.response.MembershipRpcResponseContext$Builder + hasResponse: + annotations: [] + default: false + type: public + returnType: boolean + hasResponseContext: + annotations: [] + default: false + type: public + returnType: boolean + hasResponseContextBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setResponse: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.rpc.response.MembershipRpcResponse$Builder + params: + value: + annotation: [] + type: Object + setResponseContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.rpc.response.MembershipRpcResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.rpc.response.MembershipRpcResponseContext + setResponseContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.rpc.response.MembershipRpcResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.membership.rpc.response.MembershipRpcResponseContext$Builder +net.corda.data.membership.rpc.response.MembershipRpcResponseContext: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.rpc.response.MembershipRpcResponseContext + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getRequestId: + annotations: [] + default: false + type: public + returnType: String + getRequestTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getResponseTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.rpc.response.MembershipRpcResponseContext$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.rpc.response.MembershipRpcResponseContext + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setRequestId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setRequestTimestamp: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + setResponseTimestamp: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.rpc.response.MembershipRpcResponseContext$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.rpc.response.MembershipRpcResponseContext + clearRequestId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.rpc.response.MembershipRpcResponseContext$Builder + clearRequestTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.rpc.response.MembershipRpcResponseContext$Builder + clearResponseTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.rpc.response.MembershipRpcResponseContext$Builder + getRequestId: + annotations: [] + default: false + type: public + returnType: String + getRequestTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getResponseTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + hasRequestId: + annotations: [] + default: false + type: public + returnType: boolean + hasRequestTimestamp: + annotations: [] + default: false + type: public + returnType: boolean + hasResponseTimestamp: + annotations: [] + default: false + type: public + returnType: boolean + setRequestId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.rpc.response.MembershipRpcResponseContext$Builder + params: + value: + annotation: [] + type: String + setRequestTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.rpc.response.MembershipRpcResponseContext$Builder + params: + value: + annotation: [] + type: java.time.Instant + setResponseTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.rpc.response.MembershipRpcResponseContext$Builder + params: + value: + annotation: [] + type: java.time.Instant +net.corda.data.membership.state.RegistrationState: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.state.RegistrationState + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getMgm: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getRegisteringMember: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getRegistrationId: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.state.RegistrationState$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.state.RegistrationState + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setMgm: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setRegisteringMember: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setRegistrationId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.state.RegistrationState$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.state.RegistrationState + clearMgm: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.state.RegistrationState$Builder + clearRegisteringMember: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.state.RegistrationState$Builder + clearRegistrationId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.state.RegistrationState$Builder + getMgm: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getMgmBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + getRegisteringMember: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getRegisteringMemberBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + getRegistrationId: + annotations: [] + default: false + type: public + returnType: String + hasMgm: + annotations: [] + default: false + type: public + returnType: boolean + hasMgmBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasRegisteringMember: + annotations: [] + default: false + type: public + returnType: boolean + hasRegisteringMemberBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasRegistrationId: + annotations: [] + default: false + type: public + returnType: boolean + setMgm: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.state.RegistrationState$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setMgmBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.state.RegistrationState$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder + setRegisteringMember: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.state.RegistrationState$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setRegisteringMemberBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.state.RegistrationState$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder + setRegistrationId: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.state.RegistrationState$Builder + params: + value: + annotation: [] + type: String +net.corda.data.messaging.RPCRequest: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.messaging.RPCRequest + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getCorrelationKey: + annotations: [] + default: false + type: public + returnType: String + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getPayload: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getReplyPartition: + annotations: [] + default: false + type: public + returnType: int + getReplyTopic: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSendTime: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getSender: + annotations: [] + default: false + type: public + returnType: String + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.messaging.RPCRequest$Builder + params: + other: + annotation: [] + type: net.corda.data.messaging.RPCRequest + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setCorrelationKey: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setPayload: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setReplyPartition: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + setReplyTopic: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setSendTime: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + setSender: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.messaging.RPCRequest$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.messaging.RPCRequest + clearCorrelationKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.messaging.RPCRequest$Builder + clearPayload: + annotations: [] + default: false + type: public + returnType: net.corda.data.messaging.RPCRequest$Builder + clearReplyPartition: + annotations: [] + default: false + type: public + returnType: net.corda.data.messaging.RPCRequest$Builder + clearReplyTopic: + annotations: [] + default: false + type: public + returnType: net.corda.data.messaging.RPCRequest$Builder + clearSendTime: + annotations: [] + default: false + type: public + returnType: net.corda.data.messaging.RPCRequest$Builder + clearSender: + annotations: [] + default: false + type: public + returnType: net.corda.data.messaging.RPCRequest$Builder + getCorrelationKey: + annotations: [] + default: false + type: public + returnType: String + getPayload: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getReplyPartition: + annotations: [] + default: false + type: public + returnType: int + getReplyTopic: + annotations: [] + default: false + type: public + returnType: String + getSendTime: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getSender: + annotations: [] + default: false + type: public + returnType: String + hasCorrelationKey: + annotations: [] + default: false + type: public + returnType: boolean + hasPayload: + annotations: [] + default: false + type: public + returnType: boolean + hasReplyPartition: + annotations: [] + default: false + type: public + returnType: boolean + hasReplyTopic: + annotations: [] + default: false + type: public + returnType: boolean + hasSendTime: + annotations: [] + default: false + type: public + returnType: boolean + hasSender: + annotations: [] + default: false + type: public + returnType: boolean + setCorrelationKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.messaging.RPCRequest$Builder + params: + value: + annotation: [] + type: String + setPayload: + annotations: [] + default: false + type: public + returnType: net.corda.data.messaging.RPCRequest$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setReplyPartition: + annotations: [] + default: false + type: public + returnType: net.corda.data.messaging.RPCRequest$Builder + params: + value: + annotation: [] + type: int + setReplyTopic: + annotations: [] + default: false + type: public + returnType: net.corda.data.messaging.RPCRequest$Builder + params: + value: + annotation: [] + type: String + setSendTime: + annotations: [] + default: false + type: public + returnType: net.corda.data.messaging.RPCRequest$Builder + params: + value: + annotation: [] + type: java.time.Instant + setSender: + annotations: [] + default: false + type: public + returnType: net.corda.data.messaging.RPCRequest$Builder + params: + value: + annotation: [] + type: String +net.corda.data.messaging.RPCResponse: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.messaging.RPCResponse + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getCorrelationKey: + annotations: [] + default: false + type: public + returnType: String + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getPayload: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getResponseStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.messaging.ResponseStatus + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSendTime: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getSender: + annotations: [] + default: false + type: public + returnType: String + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.messaging.RPCResponse$Builder + params: + other: + annotation: [] + type: net.corda.data.messaging.RPCResponse + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setCorrelationKey: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setPayload: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setResponseStatus: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.messaging.ResponseStatus + setSendTime: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + setSender: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.messaging.RPCResponse$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.messaging.RPCResponse + clearCorrelationKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.messaging.RPCResponse$Builder + clearPayload: + annotations: [] + default: false + type: public + returnType: net.corda.data.messaging.RPCResponse$Builder + clearResponseStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.messaging.RPCResponse$Builder + clearSendTime: + annotations: [] + default: false + type: public + returnType: net.corda.data.messaging.RPCResponse$Builder + clearSender: + annotations: [] + default: false + type: public + returnType: net.corda.data.messaging.RPCResponse$Builder + getCorrelationKey: + annotations: [] + default: false + type: public + returnType: String + getPayload: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getResponseStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.messaging.ResponseStatus + getSendTime: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getSender: + annotations: [] + default: false + type: public + returnType: String + hasCorrelationKey: + annotations: [] + default: false + type: public + returnType: boolean + hasPayload: + annotations: [] + default: false + type: public + returnType: boolean + hasResponseStatus: + annotations: [] + default: false + type: public + returnType: boolean + hasSendTime: + annotations: [] + default: false + type: public + returnType: boolean + hasSender: + annotations: [] + default: false + type: public + returnType: boolean + setCorrelationKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.messaging.RPCResponse$Builder + params: + value: + annotation: [] + type: String + setPayload: + annotations: [] + default: false + type: public + returnType: net.corda.data.messaging.RPCResponse$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setResponseStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.messaging.RPCResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.messaging.ResponseStatus + setSendTime: + annotations: [] + default: false + type: public + returnType: net.corda.data.messaging.RPCResponse$Builder + params: + value: + annotation: [] + type: java.time.Instant + setSender: + annotations: [] + default: false + type: public + returnType: net.corda.data.messaging.RPCResponse$Builder + params: + value: + annotation: [] + type: String +net.corda.data.messaging.ResponseStatus: + annotations: + - AvroGenerated + type: public final class + extends: java.lang.Enum + implements: + - org.apache.avro.generic.GenericEnumSymbol + interface: false + methods: + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + valueOf: + annotations: [] + default: false + type: public static + returnType: net.corda.data.messaging.ResponseStatus + params: {} + values: + annotations: [] + default: false + type: public static + returnType: "net.corda.data.messaging.ResponseStatus[]" + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.AuthenticatedMessageAck: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.AuthenticatedMessageAck + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getMessageId: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.AuthenticatedMessageAck$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.AuthenticatedMessageAck + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setMessageId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.AuthenticatedMessageAck$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.AuthenticatedMessageAck + clearMessageId: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.AuthenticatedMessageAck$Builder + getMessageId: + annotations: [] + default: false + type: public + returnType: String + hasMessageId: + annotations: [] + default: false + type: public + returnType: boolean + setMessageId: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.AuthenticatedMessageAck$Builder + params: + value: + annotation: [] + type: String +net.corda.data.p2p.AuthenticatedMessageAndKey: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.AuthenticatedMessageAndKey + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getKey: + annotations: [] + default: false + type: public + returnType: String + getMessage: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.AuthenticatedMessage + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.AuthenticatedMessageAndKey$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.AuthenticatedMessageAndKey + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setKey: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setMessage: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.p2p.app.AuthenticatedMessage + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.AuthenticatedMessageAndKey$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.AuthenticatedMessageAndKey + clearKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.AuthenticatedMessageAndKey$Builder + clearMessage: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.AuthenticatedMessageAndKey$Builder + getKey: + annotations: [] + default: false + type: public + returnType: String + getMessage: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.AuthenticatedMessage + getMessageBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.AuthenticatedMessage$Builder + hasKey: + annotations: [] + default: false + type: public + returnType: boolean + hasMessage: + annotations: [] + default: false + type: public + returnType: boolean + hasMessageBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.AuthenticatedMessageAndKey$Builder + params: + value: + annotation: [] + type: String + setMessage: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.AuthenticatedMessageAndKey$Builder + params: + value: + annotation: [] + type: net.corda.data.p2p.app.AuthenticatedMessage + setMessageBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.AuthenticatedMessageAndKey$Builder + params: + value: + annotation: [] + type: net.corda.data.p2p.app.AuthenticatedMessage$Builder +net.corda.data.p2p.AuthenticatedMessageDeliveryState: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.AuthenticatedMessageDeliveryState + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getMessage: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.AuthenticatedMessageAndKey + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getTimestamp: + annotations: [] + default: false + type: public + returnType: long + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.AuthenticatedMessageDeliveryState$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.AuthenticatedMessageDeliveryState + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setMessage: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.p2p.AuthenticatedMessageAndKey + setTimestamp: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: long + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.AuthenticatedMessageDeliveryState$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.AuthenticatedMessageDeliveryState + clearMessage: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.AuthenticatedMessageDeliveryState$Builder + clearTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.AuthenticatedMessageDeliveryState$Builder + getMessage: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.AuthenticatedMessageAndKey + getMessageBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.AuthenticatedMessageAndKey$Builder + getTimestamp: + annotations: [] + default: false + type: public + returnType: long + hasMessage: + annotations: [] + default: false + type: public + returnType: boolean + hasMessageBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasTimestamp: + annotations: [] + default: false + type: public + returnType: boolean + setMessage: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.AuthenticatedMessageDeliveryState$Builder + params: + value: + annotation: [] + type: net.corda.data.p2p.AuthenticatedMessageAndKey + setMessageBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.AuthenticatedMessageDeliveryState$Builder + params: + value: + annotation: [] + type: net.corda.data.p2p.AuthenticatedMessageAndKey$Builder + setTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.AuthenticatedMessageDeliveryState$Builder + params: + value: + annotation: [] + type: long +net.corda.data.p2p.DataMessagePayload: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.DataMessagePayload + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getMessage: + annotations: [] + default: false + type: public + returnType: Object + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.DataMessagePayload$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.DataMessagePayload + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setMessage: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Object + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.DataMessagePayload$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.DataMessagePayload + clearMessage: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.DataMessagePayload$Builder + getMessage: + annotations: [] + default: false + type: public + returnType: Object + hasMessage: + annotations: [] + default: false + type: public + returnType: boolean + setMessage: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.DataMessagePayload$Builder + params: + value: + annotation: [] + type: Object +net.corda.data.p2p.GatewayTlsCertificates: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.GatewayTlsCertificates + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getTenantId: + annotations: [] + default: false + type: public + returnType: String + getTlsCertificates: + annotations: [] + default: false + type: public + returnType: java.util.List + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.GatewayTlsCertificates$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.GatewayTlsCertificates + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setHoldingIdentity: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setTenantId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setTlsCertificates: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.GatewayTlsCertificates$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.GatewayTlsCertificates + clearHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.GatewayTlsCertificates$Builder + clearTenantId: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.GatewayTlsCertificates$Builder + clearTlsCertificates: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.GatewayTlsCertificates$Builder + getHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getHoldingIdentityBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + getTenantId: + annotations: [] + default: false + type: public + returnType: String + getTlsCertificates: + annotations: [] + default: false + type: public + returnType: java.util.List + hasHoldingIdentity: + annotations: [] + default: false + type: public + returnType: boolean + hasHoldingIdentityBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasTenantId: + annotations: [] + default: false + type: public + returnType: boolean + hasTlsCertificates: + annotations: [] + default: false + type: public + returnType: boolean + setHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.GatewayTlsCertificates$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setHoldingIdentityBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.GatewayTlsCertificates$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder + setTenantId: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.GatewayTlsCertificates$Builder + params: + value: + annotation: [] + type: String + setTlsCertificates: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.GatewayTlsCertificates$Builder + params: + value: + annotation: [] + type: java.util.List +net.corda.data.p2p.GatewayTruststore: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.GatewayTruststore + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSourceIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getTrustedCertificates: + annotations: [] + default: false + type: public + returnType: java.util.List + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.GatewayTruststore$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.GatewayTruststore + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setSourceIdentity: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setTrustedCertificates: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.GatewayTruststore$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.GatewayTruststore + clearSourceIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.GatewayTruststore$Builder + clearTrustedCertificates: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.GatewayTruststore$Builder + getSourceIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getSourceIdentityBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + getTrustedCertificates: + annotations: [] + default: false + type: public + returnType: java.util.List + hasSourceIdentity: + annotations: [] + default: false + type: public + returnType: boolean + hasSourceIdentityBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasTrustedCertificates: + annotations: [] + default: false + type: public + returnType: boolean + setSourceIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.GatewayTruststore$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setSourceIdentityBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.GatewayTruststore$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder + setTrustedCertificates: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.GatewayTruststore$Builder + params: + value: + annotation: [] + type: java.util.List +net.corda.data.p2p.HeartbeatMessage: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.HeartbeatMessage + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.HeartbeatMessage$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.HeartbeatMessage + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.HeartbeatMessage$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.HeartbeatMessage +net.corda.data.p2p.HeartbeatMessageAck: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.HeartbeatMessageAck + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.HeartbeatMessageAck$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.HeartbeatMessageAck + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.HeartbeatMessageAck$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.HeartbeatMessageAck +net.corda.data.p2p.HostedIdentityEntry: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.HostedIdentityEntry + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getAlternativeSessionKeysAndCerts: + annotations: [] + default: false + type: public + returnType: java.util.List + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getPreferredSessionKeyAndCert: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.HostedIdentitySessionKeyAndCert + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getTlsCertificates: + annotations: [] + default: false + type: public + returnType: java.util.List + getTlsTenantId: + annotations: [] + default: false + type: public + returnType: String + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.HostedIdentityEntry$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.HostedIdentityEntry + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setAlternativeSessionKeysAndCerts: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + setHoldingIdentity: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setPreferredSessionKeyAndCert: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.p2p.HostedIdentitySessionKeyAndCert + setTlsCertificates: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + setTlsTenantId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.HostedIdentityEntry$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.HostedIdentityEntry + clearAlternativeSessionKeysAndCerts: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.HostedIdentityEntry$Builder + clearHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.HostedIdentityEntry$Builder + clearPreferredSessionKeyAndCert: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.HostedIdentityEntry$Builder + clearTlsCertificates: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.HostedIdentityEntry$Builder + clearTlsTenantId: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.HostedIdentityEntry$Builder + getAlternativeSessionKeysAndCerts: + annotations: [] + default: false + type: public + returnType: java.util.List + getHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getHoldingIdentityBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + getPreferredSessionKeyAndCert: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.HostedIdentitySessionKeyAndCert + getPreferredSessionKeyAndCertBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.HostedIdentitySessionKeyAndCert$Builder + getTlsCertificates: + annotations: [] + default: false + type: public + returnType: java.util.List + getTlsTenantId: + annotations: [] + default: false + type: public + returnType: String + hasAlternativeSessionKeysAndCerts: + annotations: [] + default: false + type: public + returnType: boolean + hasHoldingIdentity: + annotations: [] + default: false + type: public + returnType: boolean + hasHoldingIdentityBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasPreferredSessionKeyAndCert: + annotations: [] + default: false + type: public + returnType: boolean + hasPreferredSessionKeyAndCertBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasTlsCertificates: + annotations: [] + default: false + type: public + returnType: boolean + hasTlsTenantId: + annotations: [] + default: false + type: public + returnType: boolean + setAlternativeSessionKeysAndCerts: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.HostedIdentityEntry$Builder + params: + value: + annotation: [] + type: java.util.List + setHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.HostedIdentityEntry$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setHoldingIdentityBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.HostedIdentityEntry$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder + setPreferredSessionKeyAndCert: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.HostedIdentityEntry$Builder + params: + value: + annotation: [] + type: net.corda.data.p2p.HostedIdentitySessionKeyAndCert + setPreferredSessionKeyAndCertBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.HostedIdentityEntry$Builder + params: + value: + annotation: [] + type: net.corda.data.p2p.HostedIdentitySessionKeyAndCert$Builder + setTlsCertificates: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.HostedIdentityEntry$Builder + params: + value: + annotation: [] + type: java.util.List + setTlsTenantId: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.HostedIdentityEntry$Builder + params: + value: + annotation: [] + type: String +net.corda.data.p2p.HostedIdentitySessionKeyAndCert: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.HostedIdentitySessionKeyAndCert + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSessionCertificates: + annotations: [] + default: false + type: public + returnType: java.util.List + getSessionPublicKey: + annotations: [] + default: false + type: public + returnType: String + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.HostedIdentitySessionKeyAndCert$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.HostedIdentitySessionKeyAndCert + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setSessionCertificates: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + setSessionPublicKey: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.HostedIdentitySessionKeyAndCert$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.HostedIdentitySessionKeyAndCert + clearSessionCertificates: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.HostedIdentitySessionKeyAndCert$Builder + clearSessionPublicKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.HostedIdentitySessionKeyAndCert$Builder + getSessionCertificates: + annotations: [] + default: false + type: public + returnType: java.util.List + getSessionPublicKey: + annotations: [] + default: false + type: public + returnType: String + hasSessionCertificates: + annotations: [] + default: false + type: public + returnType: boolean + hasSessionPublicKey: + annotations: [] + default: false + type: public + returnType: boolean + setSessionCertificates: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.HostedIdentitySessionKeyAndCert$Builder + params: + value: + annotation: [] + type: java.util.List + setSessionPublicKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.HostedIdentitySessionKeyAndCert$Builder + params: + value: + annotation: [] + type: String +net.corda.data.p2p.LinkInMessage: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.LinkInMessage + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getPayload: + annotations: [] + default: false + type: public + returnType: Object + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.LinkInMessage$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.LinkInMessage + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setPayload: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Object + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.LinkInMessage$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.LinkInMessage + clearPayload: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.LinkInMessage$Builder + getPayload: + annotations: [] + default: false + type: public + returnType: Object + hasPayload: + annotations: [] + default: false + type: public + returnType: boolean + setPayload: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.LinkInMessage$Builder + params: + value: + annotation: [] + type: Object +net.corda.data.p2p.LinkOutHeader: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.LinkOutHeader + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getAddress: + annotations: [] + default: false + type: public + returnType: String + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getDestinationIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getDestinationNetworkType: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.NetworkType + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSourceIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.LinkOutHeader$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.LinkOutHeader + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setAddress: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setDestinationIdentity: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setDestinationNetworkType: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.p2p.NetworkType + setSourceIdentity: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.LinkOutHeader$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.LinkOutHeader + clearAddress: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.LinkOutHeader$Builder + clearDestinationIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.LinkOutHeader$Builder + clearDestinationNetworkType: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.LinkOutHeader$Builder + clearSourceIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.LinkOutHeader$Builder + getAddress: + annotations: [] + default: false + type: public + returnType: String + getDestinationIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getDestinationIdentityBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + getDestinationNetworkType: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.NetworkType + getSourceIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getSourceIdentityBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + hasAddress: + annotations: [] + default: false + type: public + returnType: boolean + hasDestinationIdentity: + annotations: [] + default: false + type: public + returnType: boolean + hasDestinationIdentityBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasDestinationNetworkType: + annotations: [] + default: false + type: public + returnType: boolean + hasSourceIdentity: + annotations: [] + default: false + type: public + returnType: boolean + hasSourceIdentityBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setAddress: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.LinkOutHeader$Builder + params: + value: + annotation: [] + type: String + setDestinationIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.LinkOutHeader$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setDestinationIdentityBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.LinkOutHeader$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder + setDestinationNetworkType: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.LinkOutHeader$Builder + params: + value: + annotation: [] + type: net.corda.data.p2p.NetworkType + setSourceIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.LinkOutHeader$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setSourceIdentityBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.LinkOutHeader$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder +net.corda.data.p2p.LinkOutMessage: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.LinkOutMessage + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getHeader: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.LinkOutHeader + getPayload: + annotations: [] + default: false + type: public + returnType: Object + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.LinkOutMessage$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.LinkOutMessage + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setHeader: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.p2p.LinkOutHeader + setPayload: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Object + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.LinkOutMessage$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.LinkOutMessage + clearHeader: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.LinkOutMessage$Builder + clearPayload: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.LinkOutMessage$Builder + getHeader: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.LinkOutHeader + getHeaderBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.LinkOutHeader$Builder + getPayload: + annotations: [] + default: false + type: public + returnType: Object + hasHeader: + annotations: [] + default: false + type: public + returnType: boolean + hasHeaderBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasPayload: + annotations: [] + default: false + type: public + returnType: boolean + setHeader: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.LinkOutMessage$Builder + params: + value: + annotation: [] + type: net.corda.data.p2p.LinkOutHeader + setHeaderBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.LinkOutMessage$Builder + params: + value: + annotation: [] + type: net.corda.data.p2p.LinkOutHeader$Builder + setPayload: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.LinkOutMessage$Builder + params: + value: + annotation: [] + type: Object +net.corda.data.p2p.MessageAck: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.MessageAck + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getAck: + annotations: [] + default: false + type: public + returnType: Object + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.MessageAck$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.MessageAck + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setAck: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Object + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.MessageAck$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.MessageAck + clearAck: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.MessageAck$Builder + getAck: + annotations: [] + default: false + type: public + returnType: Object + hasAck: + annotations: [] + default: false + type: public + returnType: boolean + setAck: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.MessageAck$Builder + params: + value: + annotation: [] + type: Object +net.corda.data.p2p.NetworkType: + annotations: + - AvroGenerated + type: public final class + extends: java.lang.Enum + implements: + - org.apache.avro.generic.GenericEnumSymbol + interface: false + methods: + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + valueOf: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.NetworkType + params: {} + values: + annotations: [] + default: false + type: public static + returnType: "net.corda.data.p2p.NetworkType[]" + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.SessionPartitions: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.SessionPartitions + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getPartitions: + annotations: [] + default: false + type: public + returnType: java.util.List + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.SessionPartitions$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.SessionPartitions + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setPartitions: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.SessionPartitions$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.SessionPartitions + clearPartitions: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.SessionPartitions$Builder + getPartitions: + annotations: [] + default: false + type: public + returnType: java.util.List + hasPartitions: + annotations: [] + default: false + type: public + returnType: boolean + setPartitions: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.SessionPartitions$Builder + params: + value: + annotation: [] + type: java.util.List +net.corda.data.p2p.app.AppMessage: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.app.AppMessage + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getMessage: + annotations: [] + default: false + type: public + returnType: Object + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.app.AppMessage$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.app.AppMessage + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setMessage: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Object + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.app.AppMessage$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.AppMessage + clearMessage: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.AppMessage$Builder + getMessage: + annotations: [] + default: false + type: public + returnType: Object + hasMessage: + annotations: [] + default: false + type: public + returnType: boolean + setMessage: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.AppMessage$Builder + params: + value: + annotation: [] + type: Object +net.corda.data.p2p.app.AuthenticatedMessage: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.app.AuthenticatedMessage + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getHeader: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.AuthenticatedMessageHeader + getPayload: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.app.AuthenticatedMessage$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.app.AuthenticatedMessage + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setHeader: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.p2p.app.AuthenticatedMessageHeader + setPayload: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.app.AuthenticatedMessage$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.AuthenticatedMessage + clearHeader: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.AuthenticatedMessage$Builder + clearPayload: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.AuthenticatedMessage$Builder + getHeader: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.AuthenticatedMessageHeader + getHeaderBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.AuthenticatedMessageHeader$Builder + getPayload: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + hasHeader: + annotations: [] + default: false + type: public + returnType: boolean + hasHeaderBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasPayload: + annotations: [] + default: false + type: public + returnType: boolean + setHeader: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.AuthenticatedMessage$Builder + params: + value: + annotation: [] + type: net.corda.data.p2p.app.AuthenticatedMessageHeader + setHeaderBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.AuthenticatedMessage$Builder + params: + value: + annotation: [] + type: net.corda.data.p2p.app.AuthenticatedMessageHeader$Builder + setPayload: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.AuthenticatedMessage$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer +net.corda.data.p2p.app.AuthenticatedMessageHeader: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.app.AuthenticatedMessageHeader + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getDestination: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getMessageId: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSource: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getStatusFilter: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.MembershipStatusFilter + getSubsystem: + annotations: [] + default: false + type: public + returnType: String + getTraceId: + annotations: [] + default: false + type: public + returnType: String + getTtl: + annotations: [] + default: false + type: public + returnType: java.time.Instant + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.app.AuthenticatedMessageHeader$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.app.AuthenticatedMessageHeader + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setDestination: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setMessageId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setSource: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setStatusFilter: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.p2p.app.MembershipStatusFilter + setSubsystem: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setTraceId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setTtl: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.app.AuthenticatedMessageHeader$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.AuthenticatedMessageHeader + clearDestination: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.AuthenticatedMessageHeader$Builder + clearMessageId: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.AuthenticatedMessageHeader$Builder + clearSource: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.AuthenticatedMessageHeader$Builder + clearStatusFilter: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.AuthenticatedMessageHeader$Builder + clearSubsystem: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.AuthenticatedMessageHeader$Builder + clearTraceId: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.AuthenticatedMessageHeader$Builder + clearTtl: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.AuthenticatedMessageHeader$Builder + getDestination: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getDestinationBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + getMessageId: + annotations: [] + default: false + type: public + returnType: String + getSource: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getSourceBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + getStatusFilter: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.MembershipStatusFilter + getSubsystem: + annotations: [] + default: false + type: public + returnType: String + getTraceId: + annotations: [] + default: false + type: public + returnType: String + getTtl: + annotations: [] + default: false + type: public + returnType: java.time.Instant + hasDestination: + annotations: [] + default: false + type: public + returnType: boolean + hasDestinationBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasMessageId: + annotations: [] + default: false + type: public + returnType: boolean + hasSource: + annotations: [] + default: false + type: public + returnType: boolean + hasSourceBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasStatusFilter: + annotations: [] + default: false + type: public + returnType: boolean + hasSubsystem: + annotations: [] + default: false + type: public + returnType: boolean + hasTraceId: + annotations: [] + default: false + type: public + returnType: boolean + hasTtl: + annotations: [] + default: false + type: public + returnType: boolean + setDestination: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.AuthenticatedMessageHeader$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setDestinationBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.AuthenticatedMessageHeader$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder + setMessageId: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.AuthenticatedMessageHeader$Builder + params: + value: + annotation: [] + type: String + setSource: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.AuthenticatedMessageHeader$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setSourceBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.AuthenticatedMessageHeader$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder + setStatusFilter: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.AuthenticatedMessageHeader$Builder + params: + value: + annotation: [] + type: net.corda.data.p2p.app.MembershipStatusFilter + setSubsystem: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.AuthenticatedMessageHeader$Builder + params: + value: + annotation: [] + type: String + setTraceId: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.AuthenticatedMessageHeader$Builder + params: + value: + annotation: [] + type: String + setTtl: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.AuthenticatedMessageHeader$Builder + params: + value: + annotation: [] + type: java.time.Instant +net.corda.data.p2p.app.InboundUnauthenticatedMessage: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.app.InboundUnauthenticatedMessage + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getHeader: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.InboundUnauthenticatedMessageHeader + getPayload: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.app.InboundUnauthenticatedMessage$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.app.InboundUnauthenticatedMessage + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setHeader: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.p2p.app.InboundUnauthenticatedMessageHeader + setPayload: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.app.InboundUnauthenticatedMessage$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.InboundUnauthenticatedMessage + clearHeader: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.InboundUnauthenticatedMessage$Builder + clearPayload: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.InboundUnauthenticatedMessage$Builder + getHeader: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.InboundUnauthenticatedMessageHeader + getHeaderBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.InboundUnauthenticatedMessageHeader$Builder + getPayload: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + hasHeader: + annotations: [] + default: false + type: public + returnType: boolean + hasHeaderBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasPayload: + annotations: [] + default: false + type: public + returnType: boolean + setHeader: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.InboundUnauthenticatedMessage$Builder + params: + value: + annotation: [] + type: net.corda.data.p2p.app.InboundUnauthenticatedMessageHeader + setHeaderBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.InboundUnauthenticatedMessage$Builder + params: + value: + annotation: [] + type: net.corda.data.p2p.app.InboundUnauthenticatedMessageHeader$Builder + setPayload: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.InboundUnauthenticatedMessage$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer +net.corda.data.p2p.app.InboundUnauthenticatedMessageHeader: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.app.InboundUnauthenticatedMessageHeader + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getMessageId: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getSubsystem: + annotations: [] + default: false + type: public + returnType: String + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.app.InboundUnauthenticatedMessageHeader$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.app.InboundUnauthenticatedMessageHeader + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setMessageId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setSubsystem: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.app.InboundUnauthenticatedMessageHeader$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.InboundUnauthenticatedMessageHeader + clearMessageId: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.InboundUnauthenticatedMessageHeader$Builder + clearSubsystem: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.InboundUnauthenticatedMessageHeader$Builder + getMessageId: + annotations: [] + default: false + type: public + returnType: String + getSubsystem: + annotations: [] + default: false + type: public + returnType: String + hasMessageId: + annotations: [] + default: false + type: public + returnType: boolean + hasSubsystem: + annotations: [] + default: false + type: public + returnType: boolean + setMessageId: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.InboundUnauthenticatedMessageHeader$Builder + params: + value: + annotation: [] + type: String + setSubsystem: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.InboundUnauthenticatedMessageHeader$Builder + params: + value: + annotation: [] + type: String +net.corda.data.p2p.app.MembershipStatusFilter: + annotations: + - AvroGenerated + type: public final class + extends: java.lang.Enum + implements: + - org.apache.avro.generic.GenericEnumSymbol + interface: false + methods: + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + valueOf: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.app.MembershipStatusFilter + params: {} + values: + annotations: [] + default: false + type: public static + returnType: "net.corda.data.p2p.app.MembershipStatusFilter[]" + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.app.OutboundUnauthenticatedMessage: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.app.OutboundUnauthenticatedMessage + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getHeader: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.OutboundUnauthenticatedMessageHeader + getPayload: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.app.OutboundUnauthenticatedMessage$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.app.OutboundUnauthenticatedMessage + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setHeader: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.p2p.app.OutboundUnauthenticatedMessageHeader + setPayload: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.app.OutboundUnauthenticatedMessage$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.OutboundUnauthenticatedMessage + clearHeader: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.OutboundUnauthenticatedMessage$Builder + clearPayload: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.OutboundUnauthenticatedMessage$Builder + getHeader: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.OutboundUnauthenticatedMessageHeader + getHeaderBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.OutboundUnauthenticatedMessageHeader$Builder + getPayload: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + hasHeader: + annotations: [] + default: false + type: public + returnType: boolean + hasHeaderBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasPayload: + annotations: [] + default: false + type: public + returnType: boolean + setHeader: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.OutboundUnauthenticatedMessage$Builder + params: + value: + annotation: [] + type: net.corda.data.p2p.app.OutboundUnauthenticatedMessageHeader + setHeaderBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.OutboundUnauthenticatedMessage$Builder + params: + value: + annotation: [] + type: net.corda.data.p2p.app.OutboundUnauthenticatedMessageHeader$Builder + setPayload: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.OutboundUnauthenticatedMessage$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer +net.corda.data.p2p.app.OutboundUnauthenticatedMessageHeader: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.app.OutboundUnauthenticatedMessageHeader + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getDestination: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getMessageId: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSource: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getSubsystem: + annotations: [] + default: false + type: public + returnType: String + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.app.OutboundUnauthenticatedMessageHeader$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.app.OutboundUnauthenticatedMessageHeader + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setDestination: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setMessageId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setSource: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setSubsystem: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.app.OutboundUnauthenticatedMessageHeader$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.OutboundUnauthenticatedMessageHeader + clearDestination: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.OutboundUnauthenticatedMessageHeader$Builder + clearMessageId: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.OutboundUnauthenticatedMessageHeader$Builder + clearSource: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.OutboundUnauthenticatedMessageHeader$Builder + clearSubsystem: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.OutboundUnauthenticatedMessageHeader$Builder + getDestination: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getDestinationBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + getMessageId: + annotations: [] + default: false + type: public + returnType: String + getSource: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getSourceBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + getSubsystem: + annotations: [] + default: false + type: public + returnType: String + hasDestination: + annotations: [] + default: false + type: public + returnType: boolean + hasDestinationBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasMessageId: + annotations: [] + default: false + type: public + returnType: boolean + hasSource: + annotations: [] + default: false + type: public + returnType: boolean + hasSourceBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasSubsystem: + annotations: [] + default: false + type: public + returnType: boolean + setDestination: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.OutboundUnauthenticatedMessageHeader$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setDestinationBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.OutboundUnauthenticatedMessageHeader$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder + setMessageId: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.OutboundUnauthenticatedMessageHeader$Builder + params: + value: + annotation: [] + type: String + setSource: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.OutboundUnauthenticatedMessageHeader$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setSourceBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.OutboundUnauthenticatedMessageHeader$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder + setSubsystem: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.app.OutboundUnauthenticatedMessageHeader$Builder + params: + value: + annotation: [] + type: String +net.corda.data.p2p.crypto.AuthenticatedDataMessage: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.crypto.AuthenticatedDataMessage + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getAuthTag: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getHeader: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.CommonHeader + getPayload: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.crypto.AuthenticatedDataMessage$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.crypto.AuthenticatedDataMessage + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setAuthTag: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setHeader: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.p2p.crypto.CommonHeader + setPayload: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.crypto.AuthenticatedDataMessage$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.AuthenticatedDataMessage + clearAuthTag: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.AuthenticatedDataMessage$Builder + clearHeader: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.AuthenticatedDataMessage$Builder + clearPayload: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.AuthenticatedDataMessage$Builder + getAuthTag: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getHeader: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.CommonHeader + getHeaderBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.CommonHeader$Builder + getPayload: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + hasAuthTag: + annotations: [] + default: false + type: public + returnType: boolean + hasHeader: + annotations: [] + default: false + type: public + returnType: boolean + hasHeaderBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasPayload: + annotations: [] + default: false + type: public + returnType: boolean + setAuthTag: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.AuthenticatedDataMessage$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setHeader: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.AuthenticatedDataMessage$Builder + params: + value: + annotation: [] + type: net.corda.data.p2p.crypto.CommonHeader + setHeaderBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.AuthenticatedDataMessage$Builder + params: + value: + annotation: [] + type: net.corda.data.p2p.crypto.CommonHeader$Builder + setPayload: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.AuthenticatedDataMessage$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer +net.corda.data.p2p.crypto.AuthenticatedEncryptedDataMessage: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.crypto.AuthenticatedEncryptedDataMessage + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getAuthTag: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getEncryptedPayload: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getHeader: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.CommonHeader + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.crypto.AuthenticatedEncryptedDataMessage$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.crypto.AuthenticatedEncryptedDataMessage + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setAuthTag: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setEncryptedPayload: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setHeader: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.p2p.crypto.CommonHeader + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.crypto.AuthenticatedEncryptedDataMessage$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.AuthenticatedEncryptedDataMessage + clearAuthTag: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.AuthenticatedEncryptedDataMessage$Builder + clearEncryptedPayload: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.AuthenticatedEncryptedDataMessage$Builder + clearHeader: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.AuthenticatedEncryptedDataMessage$Builder + getAuthTag: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getEncryptedPayload: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getHeader: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.CommonHeader + getHeaderBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.CommonHeader$Builder + hasAuthTag: + annotations: [] + default: false + type: public + returnType: boolean + hasEncryptedPayload: + annotations: [] + default: false + type: public + returnType: boolean + hasHeader: + annotations: [] + default: false + type: public + returnType: boolean + hasHeaderBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setAuthTag: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.AuthenticatedEncryptedDataMessage$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setEncryptedPayload: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.AuthenticatedEncryptedDataMessage$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setHeader: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.AuthenticatedEncryptedDataMessage$Builder + params: + value: + annotation: [] + type: net.corda.data.p2p.crypto.CommonHeader + setHeaderBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.AuthenticatedEncryptedDataMessage$Builder + params: + value: + annotation: [] + type: net.corda.data.p2p.crypto.CommonHeader$Builder +net.corda.data.p2p.crypto.CommonHeader: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.crypto.CommonHeader + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getMessageType: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.MessageType + getProtocolVersion: + annotations: [] + default: false + type: public + returnType: int + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSequenceNo: + annotations: [] + default: false + type: public + returnType: long + getSessionId: + annotations: [] + default: false + type: public + returnType: String + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getTimestamp: + annotations: [] + default: false + type: public + returnType: long + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.crypto.CommonHeader$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.crypto.CommonHeader + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setMessageType: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.p2p.crypto.MessageType + setProtocolVersion: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + setSequenceNo: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: long + setSessionId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setTimestamp: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: long + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.crypto.CommonHeader$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.CommonHeader + clearMessageType: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.CommonHeader$Builder + clearProtocolVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.CommonHeader$Builder + clearSequenceNo: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.CommonHeader$Builder + clearSessionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.CommonHeader$Builder + clearTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.CommonHeader$Builder + getMessageType: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.MessageType + getProtocolVersion: + annotations: [] + default: false + type: public + returnType: int + getSequenceNo: + annotations: [] + default: false + type: public + returnType: long + getSessionId: + annotations: [] + default: false + type: public + returnType: String + getTimestamp: + annotations: [] + default: false + type: public + returnType: long + hasMessageType: + annotations: [] + default: false + type: public + returnType: boolean + hasProtocolVersion: + annotations: [] + default: false + type: public + returnType: boolean + hasSequenceNo: + annotations: [] + default: false + type: public + returnType: boolean + hasSessionId: + annotations: [] + default: false + type: public + returnType: boolean + hasTimestamp: + annotations: [] + default: false + type: public + returnType: boolean + setMessageType: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.CommonHeader$Builder + params: + value: + annotation: [] + type: net.corda.data.p2p.crypto.MessageType + setProtocolVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.CommonHeader$Builder + params: + value: + annotation: [] + type: int + setSequenceNo: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.CommonHeader$Builder + params: + value: + annotation: [] + type: long + setSessionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.CommonHeader$Builder + params: + value: + annotation: [] + type: String + setTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.CommonHeader$Builder + params: + value: + annotation: [] + type: long +net.corda.data.p2p.crypto.InitiatorHandshakeMessage: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.crypto.InitiatorHandshakeMessage + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getAuthTag: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getEncryptedData: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getHeader: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.CommonHeader + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.crypto.InitiatorHandshakeMessage$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.crypto.InitiatorHandshakeMessage + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setAuthTag: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setEncryptedData: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setHeader: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.p2p.crypto.CommonHeader + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.crypto.InitiatorHandshakeMessage$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.InitiatorHandshakeMessage + clearAuthTag: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.InitiatorHandshakeMessage$Builder + clearEncryptedData: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.InitiatorHandshakeMessage$Builder + clearHeader: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.InitiatorHandshakeMessage$Builder + getAuthTag: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getEncryptedData: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getHeader: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.CommonHeader + getHeaderBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.CommonHeader$Builder + hasAuthTag: + annotations: [] + default: false + type: public + returnType: boolean + hasEncryptedData: + annotations: [] + default: false + type: public + returnType: boolean + hasHeader: + annotations: [] + default: false + type: public + returnType: boolean + hasHeaderBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setAuthTag: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.InitiatorHandshakeMessage$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setEncryptedData: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.InitiatorHandshakeMessage$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setHeader: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.InitiatorHandshakeMessage$Builder + params: + value: + annotation: [] + type: net.corda.data.p2p.crypto.CommonHeader + setHeaderBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.InitiatorHandshakeMessage$Builder + params: + value: + annotation: [] + type: net.corda.data.p2p.crypto.CommonHeader$Builder +net.corda.data.p2p.crypto.InitiatorHelloMessage: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.crypto.InitiatorHelloMessage + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getHeader: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.CommonHeader + getInitiatorPublicKey: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSource: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.InitiatorHandshakeIdentity + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.crypto.InitiatorHelloMessage$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.crypto.InitiatorHelloMessage + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setHeader: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.p2p.crypto.CommonHeader + setInitiatorPublicKey: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setSource: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.p2p.crypto.internal.InitiatorHandshakeIdentity + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.crypto.InitiatorHelloMessage$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.InitiatorHelloMessage + clearHeader: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.InitiatorHelloMessage$Builder + clearInitiatorPublicKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.InitiatorHelloMessage$Builder + clearSource: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.InitiatorHelloMessage$Builder + getHeader: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.CommonHeader + getHeaderBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.CommonHeader$Builder + getInitiatorPublicKey: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getSource: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.InitiatorHandshakeIdentity + getSourceBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.InitiatorHandshakeIdentity$Builder + hasHeader: + annotations: [] + default: false + type: public + returnType: boolean + hasHeaderBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasInitiatorPublicKey: + annotations: [] + default: false + type: public + returnType: boolean + hasSource: + annotations: [] + default: false + type: public + returnType: boolean + hasSourceBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setHeader: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.InitiatorHelloMessage$Builder + params: + value: + annotation: [] + type: net.corda.data.p2p.crypto.CommonHeader + setHeaderBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.InitiatorHelloMessage$Builder + params: + value: + annotation: [] + type: net.corda.data.p2p.crypto.CommonHeader$Builder + setInitiatorPublicKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.InitiatorHelloMessage$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setSource: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.InitiatorHelloMessage$Builder + params: + value: + annotation: [] + type: net.corda.data.p2p.crypto.internal.InitiatorHandshakeIdentity + setSourceBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.InitiatorHelloMessage$Builder + params: + value: + annotation: [] + type: net.corda.data.p2p.crypto.internal.InitiatorHandshakeIdentity$Builder +net.corda.data.p2p.crypto.MessageType: + annotations: + - AvroGenerated + type: public final class + extends: java.lang.Enum + implements: + - org.apache.avro.generic.GenericEnumSymbol + interface: false + methods: + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + valueOf: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.crypto.MessageType + params: {} + values: + annotations: [] + default: false + type: public static + returnType: "net.corda.data.p2p.crypto.MessageType[]" + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.crypto.ProtocolMode: + annotations: + - AvroGenerated + type: public final class + extends: java.lang.Enum + implements: + - org.apache.avro.generic.GenericEnumSymbol + interface: false + methods: + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + valueOf: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.crypto.ProtocolMode + params: {} + values: + annotations: [] + default: false + type: public static + returnType: "net.corda.data.p2p.crypto.ProtocolMode[]" + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.crypto.ResponderHandshakeMessage: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.crypto.ResponderHandshakeMessage + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getAuthTag: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getEncryptedData: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getHeader: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.CommonHeader + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.crypto.ResponderHandshakeMessage$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.crypto.ResponderHandshakeMessage + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setAuthTag: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setEncryptedData: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setHeader: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.p2p.crypto.CommonHeader + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.crypto.ResponderHandshakeMessage$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.ResponderHandshakeMessage + clearAuthTag: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.ResponderHandshakeMessage$Builder + clearEncryptedData: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.ResponderHandshakeMessage$Builder + clearHeader: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.ResponderHandshakeMessage$Builder + getAuthTag: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getEncryptedData: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getHeader: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.CommonHeader + getHeaderBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.CommonHeader$Builder + hasAuthTag: + annotations: [] + default: false + type: public + returnType: boolean + hasEncryptedData: + annotations: [] + default: false + type: public + returnType: boolean + hasHeader: + annotations: [] + default: false + type: public + returnType: boolean + hasHeaderBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setAuthTag: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.ResponderHandshakeMessage$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setEncryptedData: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.ResponderHandshakeMessage$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setHeader: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.ResponderHandshakeMessage$Builder + params: + value: + annotation: [] + type: net.corda.data.p2p.crypto.CommonHeader + setHeaderBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.ResponderHandshakeMessage$Builder + params: + value: + annotation: [] + type: net.corda.data.p2p.crypto.CommonHeader$Builder +net.corda.data.p2p.crypto.ResponderHelloMessage: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.crypto.ResponderHelloMessage + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getHeader: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.CommonHeader + getResponderPublicKey: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.crypto.ResponderHelloMessage$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.crypto.ResponderHelloMessage + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setHeader: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.p2p.crypto.CommonHeader + setResponderPublicKey: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.crypto.ResponderHelloMessage$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.ResponderHelloMessage + clearHeader: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.ResponderHelloMessage$Builder + clearResponderPublicKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.ResponderHelloMessage$Builder + getHeader: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.CommonHeader + getHeaderBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.CommonHeader$Builder + getResponderPublicKey: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + hasHeader: + annotations: [] + default: false + type: public + returnType: boolean + hasHeaderBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasResponderPublicKey: + annotations: [] + default: false + type: public + returnType: boolean + setHeader: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.ResponderHelloMessage$Builder + params: + value: + annotation: [] + type: net.corda.data.p2p.crypto.CommonHeader + setHeaderBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.ResponderHelloMessage$Builder + params: + value: + annotation: [] + type: net.corda.data.p2p.crypto.CommonHeader$Builder + setResponderPublicKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.ResponderHelloMessage$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer +net.corda.data.p2p.crypto.internal.InitiatorEncryptedExtensions: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.crypto.internal.InitiatorEncryptedExtensions + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getGroupId: + annotations: [] + default: false + type: public + returnType: String + getInitiatorCertificate: + annotations: [] + default: false + type: public + returnType: java.util.List + getMaxMessageSize: + annotations: [] + default: false + type: public + returnType: int + getResponderPublicKeyHash: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getSupportedModes: + annotations: [] + default: false + type: public + returnType: java.util.List + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.crypto.internal.InitiatorEncryptedExtensions$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.crypto.internal.InitiatorEncryptedExtensions + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setGroupId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setInitiatorCertificate: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + setMaxMessageSize: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + setResponderPublicKeyHash: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setSupportedModes: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.crypto.internal.InitiatorEncryptedExtensions$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.InitiatorEncryptedExtensions + clearGroupId: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.InitiatorEncryptedExtensions$Builder + clearInitiatorCertificate: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.InitiatorEncryptedExtensions$Builder + clearMaxMessageSize: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.InitiatorEncryptedExtensions$Builder + clearResponderPublicKeyHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.InitiatorEncryptedExtensions$Builder + clearSupportedModes: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.InitiatorEncryptedExtensions$Builder + getGroupId: + annotations: [] + default: false + type: public + returnType: String + getInitiatorCertificate: + annotations: [] + default: false + type: public + returnType: java.util.List + getMaxMessageSize: + annotations: [] + default: false + type: public + returnType: int + getResponderPublicKeyHash: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getSupportedModes: + annotations: [] + default: false + type: public + returnType: java.util.List + hasGroupId: + annotations: [] + default: false + type: public + returnType: boolean + hasInitiatorCertificate: + annotations: [] + default: false + type: public + returnType: boolean + hasMaxMessageSize: + annotations: [] + default: false + type: public + returnType: boolean + hasResponderPublicKeyHash: + annotations: [] + default: false + type: public + returnType: boolean + hasSupportedModes: + annotations: [] + default: false + type: public + returnType: boolean + setGroupId: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.InitiatorEncryptedExtensions$Builder + params: + value: + annotation: [] + type: String + setInitiatorCertificate: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.InitiatorEncryptedExtensions$Builder + params: + value: + annotation: [] + type: java.util.List + setMaxMessageSize: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.InitiatorEncryptedExtensions$Builder + params: + value: + annotation: [] + type: int + setResponderPublicKeyHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.InitiatorEncryptedExtensions$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setSupportedModes: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.InitiatorEncryptedExtensions$Builder + params: + value: + annotation: [] + type: java.util.List +net.corda.data.p2p.crypto.internal.InitiatorHandshakeIdentity: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.crypto.internal.InitiatorHandshakeIdentity + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getGroupId: + annotations: [] + default: false + type: public + returnType: String + getInitiatorPublicKeyHash: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.crypto.internal.InitiatorHandshakeIdentity$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.crypto.internal.InitiatorHandshakeIdentity + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setGroupId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setInitiatorPublicKeyHash: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.crypto.internal.InitiatorHandshakeIdentity$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.InitiatorHandshakeIdentity + clearGroupId: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.InitiatorHandshakeIdentity$Builder + clearInitiatorPublicKeyHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.InitiatorHandshakeIdentity$Builder + getGroupId: + annotations: [] + default: false + type: public + returnType: String + getInitiatorPublicKeyHash: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + hasGroupId: + annotations: [] + default: false + type: public + returnType: boolean + hasInitiatorPublicKeyHash: + annotations: [] + default: false + type: public + returnType: boolean + setGroupId: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.InitiatorHandshakeIdentity$Builder + params: + value: + annotation: [] + type: String + setInitiatorPublicKeyHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.InitiatorHandshakeIdentity$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer +net.corda.data.p2p.crypto.internal.InitiatorHandshakePayload: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.crypto.internal.InitiatorHandshakePayload + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getInitiatorEncryptedExtensions: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.InitiatorEncryptedExtensions + getInitiatorFinished: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getInitiatorPartyVerify: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getInitiatorPublicKeyHash: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.crypto.internal.InitiatorHandshakePayload$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.crypto.internal.InitiatorHandshakePayload + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setInitiatorEncryptedExtensions: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.p2p.crypto.internal.InitiatorEncryptedExtensions + setInitiatorFinished: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setInitiatorPartyVerify: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setInitiatorPublicKeyHash: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.crypto.internal.InitiatorHandshakePayload$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.InitiatorHandshakePayload + clearInitiatorEncryptedExtensions: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.InitiatorHandshakePayload$Builder + clearInitiatorFinished: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.InitiatorHandshakePayload$Builder + clearInitiatorPartyVerify: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.InitiatorHandshakePayload$Builder + clearInitiatorPublicKeyHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.InitiatorHandshakePayload$Builder + getInitiatorEncryptedExtensions: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.InitiatorEncryptedExtensions + getInitiatorEncryptedExtensionsBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.InitiatorEncryptedExtensions$Builder + getInitiatorFinished: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getInitiatorPartyVerify: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getInitiatorPublicKeyHash: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + hasInitiatorEncryptedExtensions: + annotations: [] + default: false + type: public + returnType: boolean + hasInitiatorEncryptedExtensionsBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasInitiatorFinished: + annotations: [] + default: false + type: public + returnType: boolean + hasInitiatorPartyVerify: + annotations: [] + default: false + type: public + returnType: boolean + hasInitiatorPublicKeyHash: + annotations: [] + default: false + type: public + returnType: boolean + setInitiatorEncryptedExtensions: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.InitiatorHandshakePayload$Builder + params: + value: + annotation: [] + type: net.corda.data.p2p.crypto.internal.InitiatorEncryptedExtensions + setInitiatorEncryptedExtensionsBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.InitiatorHandshakePayload$Builder + params: + value: + annotation: [] + type: net.corda.data.p2p.crypto.internal.InitiatorEncryptedExtensions$Builder + setInitiatorFinished: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.InitiatorHandshakePayload$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setInitiatorPartyVerify: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.InitiatorHandshakePayload$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setInitiatorPublicKeyHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.InitiatorHandshakePayload$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer +net.corda.data.p2p.crypto.internal.ResponderEncryptedExtensions: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.crypto.internal.ResponderEncryptedExtensions + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getMaxMessageSize: + annotations: [] + default: false + type: public + returnType: int + getResponderCertificate: + annotations: [] + default: false + type: public + returnType: java.util.List + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSelectedMode: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.ProtocolMode + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.crypto.internal.ResponderEncryptedExtensions$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.crypto.internal.ResponderEncryptedExtensions + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setMaxMessageSize: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + setResponderCertificate: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + setSelectedMode: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.p2p.crypto.ProtocolMode + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.crypto.internal.ResponderEncryptedExtensions$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.ResponderEncryptedExtensions + clearMaxMessageSize: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.ResponderEncryptedExtensions$Builder + clearResponderCertificate: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.ResponderEncryptedExtensions$Builder + clearSelectedMode: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.ResponderEncryptedExtensions$Builder + getMaxMessageSize: + annotations: [] + default: false + type: public + returnType: int + getResponderCertificate: + annotations: [] + default: false + type: public + returnType: java.util.List + getSelectedMode: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.ProtocolMode + hasMaxMessageSize: + annotations: [] + default: false + type: public + returnType: boolean + hasResponderCertificate: + annotations: [] + default: false + type: public + returnType: boolean + hasSelectedMode: + annotations: [] + default: false + type: public + returnType: boolean + setMaxMessageSize: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.ResponderEncryptedExtensions$Builder + params: + value: + annotation: [] + type: int + setResponderCertificate: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.ResponderEncryptedExtensions$Builder + params: + value: + annotation: [] + type: java.util.List + setSelectedMode: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.ResponderEncryptedExtensions$Builder + params: + value: + annotation: [] + type: net.corda.data.p2p.crypto.ProtocolMode +net.corda.data.p2p.crypto.internal.ResponderHandshakePayload: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.crypto.internal.ResponderHandshakePayload + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getResponderEncryptedExtensions: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.ResponderEncryptedExtensions + getResponderFinished: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getResponderPartyVerify: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getResponderPublicKeyHash: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.crypto.internal.ResponderHandshakePayload$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.crypto.internal.ResponderHandshakePayload + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setResponderEncryptedExtensions: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.p2p.crypto.internal.ResponderEncryptedExtensions + setResponderFinished: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setResponderPartyVerify: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setResponderPublicKeyHash: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.crypto.internal.ResponderHandshakePayload$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.ResponderHandshakePayload + clearResponderEncryptedExtensions: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.ResponderHandshakePayload$Builder + clearResponderFinished: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.ResponderHandshakePayload$Builder + clearResponderPartyVerify: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.ResponderHandshakePayload$Builder + clearResponderPublicKeyHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.ResponderHandshakePayload$Builder + getResponderEncryptedExtensions: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.ResponderEncryptedExtensions + getResponderEncryptedExtensionsBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.ResponderEncryptedExtensions$Builder + getResponderFinished: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getResponderPartyVerify: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getResponderPublicKeyHash: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + hasResponderEncryptedExtensions: + annotations: [] + default: false + type: public + returnType: boolean + hasResponderEncryptedExtensionsBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasResponderFinished: + annotations: [] + default: false + type: public + returnType: boolean + hasResponderPartyVerify: + annotations: [] + default: false + type: public + returnType: boolean + hasResponderPublicKeyHash: + annotations: [] + default: false + type: public + returnType: boolean + setResponderEncryptedExtensions: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.ResponderHandshakePayload$Builder + params: + value: + annotation: [] + type: net.corda.data.p2p.crypto.internal.ResponderEncryptedExtensions + setResponderEncryptedExtensionsBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.ResponderHandshakePayload$Builder + params: + value: + annotation: [] + type: net.corda.data.p2p.crypto.internal.ResponderEncryptedExtensions$Builder + setResponderFinished: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.ResponderHandshakePayload$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setResponderPartyVerify: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.ResponderHandshakePayload$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setResponderPublicKeyHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.crypto.internal.ResponderHandshakePayload$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer +net.corda.data.p2p.gateway.GatewayMessage: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.gateway.GatewayMessage + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getId: + annotations: [] + default: false + type: public + returnType: String + getPayload: + annotations: [] + default: false + type: public + returnType: Object + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.gateway.GatewayMessage$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.gateway.GatewayMessage + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setPayload: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Object + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.gateway.GatewayMessage$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.gateway.GatewayMessage + clearId: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.gateway.GatewayMessage$Builder + clearPayload: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.gateway.GatewayMessage$Builder + getId: + annotations: [] + default: false + type: public + returnType: String + getPayload: + annotations: [] + default: false + type: public + returnType: Object + hasId: + annotations: [] + default: false + type: public + returnType: boolean + hasPayload: + annotations: [] + default: false + type: public + returnType: boolean + setId: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.gateway.GatewayMessage$Builder + params: + value: + annotation: [] + type: String + setPayload: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.gateway.GatewayMessage$Builder + params: + value: + annotation: [] + type: Object +net.corda.data.p2p.gateway.GatewayResponse: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.gateway.GatewayResponse + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getId: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.gateway.GatewayResponse$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.gateway.GatewayResponse + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.gateway.GatewayResponse$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.gateway.GatewayResponse + clearId: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.gateway.GatewayResponse$Builder + getId: + annotations: [] + default: false + type: public + returnType: String + hasId: + annotations: [] + default: false + type: public + returnType: boolean + setId: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.gateway.GatewayResponse$Builder + params: + value: + annotation: [] + type: String +net.corda.data.p2p.gateway.certificates.Active: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.gateway.certificates.Active + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.gateway.certificates.Active$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.gateway.certificates.Active + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.gateway.certificates.Active$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.gateway.certificates.Active +net.corda.data.p2p.gateway.certificates.RevocationCheckRequest: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.gateway.certificates.RevocationCheckRequest + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getCertificates: + annotations: [] + default: false + type: public + returnType: java.util.List + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getMode: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.gateway.certificates.RevocationMode + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getTrustedCertificates: + annotations: [] + default: false + type: public + returnType: java.util.List + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.gateway.certificates.RevocationCheckRequest$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.gateway.certificates.RevocationCheckRequest + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setCertificates: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + setMode: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.p2p.gateway.certificates.RevocationMode + setTrustedCertificates: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.gateway.certificates.RevocationCheckRequest$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.gateway.certificates.RevocationCheckRequest + clearCertificates: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.gateway.certificates.RevocationCheckRequest$Builder + clearMode: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.gateway.certificates.RevocationCheckRequest$Builder + clearTrustedCertificates: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.gateway.certificates.RevocationCheckRequest$Builder + getCertificates: + annotations: [] + default: false + type: public + returnType: java.util.List + getMode: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.gateway.certificates.RevocationMode + getTrustedCertificates: + annotations: [] + default: false + type: public + returnType: java.util.List + hasCertificates: + annotations: [] + default: false + type: public + returnType: boolean + hasMode: + annotations: [] + default: false + type: public + returnType: boolean + hasTrustedCertificates: + annotations: [] + default: false + type: public + returnType: boolean + setCertificates: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.gateway.certificates.RevocationCheckRequest$Builder + params: + value: + annotation: [] + type: java.util.List + setMode: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.gateway.certificates.RevocationCheckRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.p2p.gateway.certificates.RevocationMode + setTrustedCertificates: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.gateway.certificates.RevocationCheckRequest$Builder + params: + value: + annotation: [] + type: java.util.List +net.corda.data.p2p.gateway.certificates.RevocationCheckResponse: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.gateway.certificates.RevocationCheckResponse + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getStatus: + annotations: [] + default: false + type: public + returnType: Object + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.gateway.certificates.RevocationCheckResponse$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.gateway.certificates.RevocationCheckResponse + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setStatus: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Object + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.gateway.certificates.RevocationCheckResponse$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.gateway.certificates.RevocationCheckResponse + clearStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.gateway.certificates.RevocationCheckResponse$Builder + getStatus: + annotations: [] + default: false + type: public + returnType: Object + hasStatus: + annotations: [] + default: false + type: public + returnType: boolean + setStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.gateway.certificates.RevocationCheckResponse$Builder + params: + value: + annotation: [] + type: Object +net.corda.data.p2p.gateway.certificates.RevocationMode: + annotations: + - AvroGenerated + type: public final class + extends: java.lang.Enum + implements: + - org.apache.avro.generic.GenericEnumSymbol + interface: false + methods: + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + valueOf: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.gateway.certificates.RevocationMode + params: {} + values: + annotations: [] + default: false + type: public static + returnType: "net.corda.data.p2p.gateway.certificates.RevocationMode[]" + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.gateway.certificates.Revoked: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.gateway.certificates.Revoked + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getCertificateIndex: + annotations: [] + default: false + type: public + returnType: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getReason: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.gateway.certificates.Revoked$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.gateway.certificates.Revoked + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setCertificateIndex: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + setReason: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.gateway.certificates.Revoked$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.gateway.certificates.Revoked + clearCertificateIndex: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.gateway.certificates.Revoked$Builder + clearReason: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.gateway.certificates.Revoked$Builder + getCertificateIndex: + annotations: [] + default: false + type: public + returnType: int + getReason: + annotations: [] + default: false + type: public + returnType: String + hasCertificateIndex: + annotations: [] + default: false + type: public + returnType: boolean + hasReason: + annotations: [] + default: false + type: public + returnType: boolean + setCertificateIndex: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.gateway.certificates.Revoked$Builder + params: + value: + annotation: [] + type: int + setReason: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.gateway.certificates.Revoked$Builder + params: + value: + annotation: [] + type: String +net.corda.data.p2p.markers.AppMessageMarker: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.markers.AppMessageMarker + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getMarker: + annotations: [] + default: false + type: public + returnType: Object + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getTimestamp: + annotations: [] + default: false + type: public + returnType: long + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.markers.AppMessageMarker$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.markers.AppMessageMarker + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setMarker: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Object + setTimestamp: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: long + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.markers.AppMessageMarker$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.markers.AppMessageMarker + clearMarker: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.markers.AppMessageMarker$Builder + clearTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.markers.AppMessageMarker$Builder + getMarker: + annotations: [] + default: false + type: public + returnType: Object + getTimestamp: + annotations: [] + default: false + type: public + returnType: long + hasMarker: + annotations: [] + default: false + type: public + returnType: boolean + hasTimestamp: + annotations: [] + default: false + type: public + returnType: boolean + setMarker: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.markers.AppMessageMarker$Builder + params: + value: + annotation: [] + type: Object + setTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.markers.AppMessageMarker$Builder + params: + value: + annotation: [] + type: long +net.corda.data.p2p.markers.ApplicationProcessedMarker: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.markers.ApplicationProcessedMarker + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.markers.ApplicationProcessedMarker$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.markers.ApplicationProcessedMarker + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.markers.ApplicationProcessedMarker$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.markers.ApplicationProcessedMarker +net.corda.data.p2p.markers.ApplicationRejectedStaleMarker: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.markers.ApplicationRejectedStaleMarker + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.markers.ApplicationRejectedStaleMarker$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.markers.ApplicationRejectedStaleMarker + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.markers.ApplicationRejectedStaleMarker$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.markers.ApplicationRejectedStaleMarker +net.corda.data.p2p.markers.Component: + annotations: + - AvroGenerated + type: public final class + extends: java.lang.Enum + implements: + - org.apache.avro.generic.GenericEnumSymbol + interface: false + methods: + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + valueOf: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.markers.Component + params: {} + values: + annotations: [] + default: false + type: public static + returnType: "net.corda.data.p2p.markers.Component[]" + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.markers.GatewaySentMarker: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.markers.GatewaySentMarker + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.markers.GatewaySentMarker$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.markers.GatewaySentMarker + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.markers.GatewaySentMarker$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.markers.GatewaySentMarker +net.corda.data.p2p.markers.LinkManagerDiscardedMarker: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.markers.LinkManagerDiscardedMarker + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getMessage: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.AuthenticatedMessageAndKey + getReason: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.markers.LinkManagerDiscardedMarker$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.markers.LinkManagerDiscardedMarker + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setMessage: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.p2p.AuthenticatedMessageAndKey + setReason: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.markers.LinkManagerDiscardedMarker$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.markers.LinkManagerDiscardedMarker + clearMessage: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.markers.LinkManagerDiscardedMarker$Builder + clearReason: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.markers.LinkManagerDiscardedMarker$Builder + getMessage: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.AuthenticatedMessageAndKey + getMessageBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.AuthenticatedMessageAndKey$Builder + getReason: + annotations: [] + default: false + type: public + returnType: String + hasMessage: + annotations: [] + default: false + type: public + returnType: boolean + hasMessageBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasReason: + annotations: [] + default: false + type: public + returnType: boolean + setMessage: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.markers.LinkManagerDiscardedMarker$Builder + params: + value: + annotation: [] + type: net.corda.data.p2p.AuthenticatedMessageAndKey + setMessageBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.markers.LinkManagerDiscardedMarker$Builder + params: + value: + annotation: [] + type: net.corda.data.p2p.AuthenticatedMessageAndKey$Builder + setReason: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.markers.LinkManagerDiscardedMarker$Builder + params: + value: + annotation: [] + type: String +net.corda.data.p2p.markers.LinkManagerProcessedMarker: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.markers.LinkManagerProcessedMarker + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getMessage: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.AuthenticatedMessageAndKey + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.markers.LinkManagerProcessedMarker$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.markers.LinkManagerProcessedMarker + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setMessage: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.p2p.AuthenticatedMessageAndKey + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.markers.LinkManagerProcessedMarker$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.markers.LinkManagerProcessedMarker + clearMessage: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.markers.LinkManagerProcessedMarker$Builder + getMessage: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.AuthenticatedMessageAndKey + getMessageBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.AuthenticatedMessageAndKey$Builder + hasMessage: + annotations: [] + default: false + type: public + returnType: boolean + hasMessageBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setMessage: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.markers.LinkManagerProcessedMarker$Builder + params: + value: + annotation: [] + type: net.corda.data.p2p.AuthenticatedMessageAndKey + setMessageBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.markers.LinkManagerProcessedMarker$Builder + params: + value: + annotation: [] + type: net.corda.data.p2p.AuthenticatedMessageAndKey$Builder +net.corda.data.p2p.markers.LinkManagerReceivedMarker: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.markers.LinkManagerReceivedMarker + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.markers.LinkManagerReceivedMarker$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.markers.LinkManagerReceivedMarker + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.markers.LinkManagerReceivedMarker$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.markers.LinkManagerReceivedMarker +net.corda.data.p2p.markers.LinkManagerSentMarker: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.markers.LinkManagerSentMarker + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.markers.LinkManagerSentMarker$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.markers.LinkManagerSentMarker + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.markers.LinkManagerSentMarker$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.markers.LinkManagerSentMarker +net.corda.data.p2p.markers.TtlExpiredMarker: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.markers.TtlExpiredMarker + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getComponent: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.markers.Component + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.markers.TtlExpiredMarker$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.markers.TtlExpiredMarker + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setComponent: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.p2p.markers.Component + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.markers.TtlExpiredMarker$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.markers.TtlExpiredMarker + clearComponent: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.markers.TtlExpiredMarker$Builder + getComponent: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.markers.Component + hasComponent: + annotations: [] + default: false + type: public + returnType: boolean + setComponent: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.markers.TtlExpiredMarker$Builder + params: + value: + annotation: [] + type: net.corda.data.p2p.markers.Component +net.corda.data.p2p.mtls.MemberAllowedCertificateSubject: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.mtls.MemberAllowedCertificateSubject + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getSubject: + annotations: [] + default: false + type: public + returnType: String + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.mtls.MemberAllowedCertificateSubject$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.mtls.MemberAllowedCertificateSubject + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setSubject: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.mtls.MemberAllowedCertificateSubject$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.mtls.MemberAllowedCertificateSubject + clearSubject: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.mtls.MemberAllowedCertificateSubject$Builder + getSubject: + annotations: [] + default: false + type: public + returnType: String + hasSubject: + annotations: [] + default: false + type: public + returnType: boolean + setSubject: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.mtls.MemberAllowedCertificateSubject$Builder + params: + value: + annotation: [] + type: String +net.corda.data.p2p.mtls.MgmAllowedCertificateSubject: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.mtls.MgmAllowedCertificateSubject + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getGroupId: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getSubject: + annotations: [] + default: false + type: public + returnType: String + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.mtls.MgmAllowedCertificateSubject$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.mtls.MgmAllowedCertificateSubject + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setGroupId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setSubject: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.mtls.MgmAllowedCertificateSubject$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.mtls.MgmAllowedCertificateSubject + clearGroupId: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.mtls.MgmAllowedCertificateSubject$Builder + clearSubject: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.mtls.MgmAllowedCertificateSubject$Builder + getGroupId: + annotations: [] + default: false + type: public + returnType: String + getSubject: + annotations: [] + default: false + type: public + returnType: String + hasGroupId: + annotations: [] + default: false + type: public + returnType: boolean + hasSubject: + annotations: [] + default: false + type: public + returnType: boolean + setGroupId: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.mtls.MgmAllowedCertificateSubject$Builder + params: + value: + annotation: [] + type: String + setSubject: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.mtls.MgmAllowedCertificateSubject$Builder + params: + value: + annotation: [] + type: String +net.corda.data.p2p.mtls.gateway.ClientCertificateSubjects: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.mtls.gateway.ClientCertificateSubjects + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getSubject: + annotations: [] + default: false + type: public + returnType: String + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.p2p.mtls.gateway.ClientCertificateSubjects$Builder + params: + other: + annotation: [] + type: net.corda.data.p2p.mtls.gateway.ClientCertificateSubjects + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setSubject: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.p2p.mtls.gateway.ClientCertificateSubjects$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.mtls.gateway.ClientCertificateSubjects + clearSubject: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.mtls.gateway.ClientCertificateSubjects$Builder + getSubject: + annotations: [] + default: false + type: public + returnType: String + hasSubject: + annotations: [] + default: false + type: public + returnType: boolean + setSubject: + annotations: [] + default: false + type: public + returnType: net.corda.data.p2p.mtls.gateway.ClientCertificateSubjects$Builder + params: + value: + annotation: [] + type: String +net.corda.data.packaging.CorDappManifest: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.packaging.CorDappManifest + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getAttributes: + annotations: [] + default: false + type: public + returnType: "java.util.Map" + getBundleSymbolicName: + annotations: [] + default: false + type: public + returnType: String + getBundleVersion: + annotations: [] + default: false + type: public + returnType: String + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getLicense: + annotations: [] + default: false + type: public + returnType: String + getMinPlatformVersion: + annotations: [] + default: false + type: public + returnType: int + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getShortName: + annotations: [] + default: false + type: public + returnType: String + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getTargetPlatformVersion: + annotations: [] + default: false + type: public + returnType: int + getType: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CorDappType + getVendor: + annotations: [] + default: false + type: public + returnType: String + getVersionId: + annotations: [] + default: false + type: public + returnType: Integer + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.packaging.CorDappManifest$Builder + params: + other: + annotation: [] + type: net.corda.data.packaging.CorDappManifest + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setAttributes: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: "java.util.Map" + setBundleSymbolicName: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setBundleVersion: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setLicense: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setMinPlatformVersion: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + setShortName: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setTargetPlatformVersion: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + setType: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.packaging.CorDappType + setVendor: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setVersionId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Integer + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.packaging.CorDappManifest$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CorDappManifest + clearAttributes: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CorDappManifest$Builder + clearBundleSymbolicName: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CorDappManifest$Builder + clearBundleVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CorDappManifest$Builder + clearLicense: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CorDappManifest$Builder + clearMinPlatformVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CorDappManifest$Builder + clearShortName: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CorDappManifest$Builder + clearTargetPlatformVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CorDappManifest$Builder + clearType: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CorDappManifest$Builder + clearVendor: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CorDappManifest$Builder + clearVersionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CorDappManifest$Builder + getAttributes: + annotations: [] + default: false + type: public + returnType: "java.util.Map" + getBundleSymbolicName: + annotations: [] + default: false + type: public + returnType: String + getBundleVersion: + annotations: [] + default: false + type: public + returnType: String + getLicense: + annotations: [] + default: false + type: public + returnType: String + getMinPlatformVersion: + annotations: [] + default: false + type: public + returnType: int + getShortName: + annotations: [] + default: false + type: public + returnType: String + getTargetPlatformVersion: + annotations: [] + default: false + type: public + returnType: int + getType: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CorDappType + getVendor: + annotations: [] + default: false + type: public + returnType: String + getVersionId: + annotations: [] + default: false + type: public + returnType: Integer + hasAttributes: + annotations: [] + default: false + type: public + returnType: boolean + hasBundleSymbolicName: + annotations: [] + default: false + type: public + returnType: boolean + hasBundleVersion: + annotations: [] + default: false + type: public + returnType: boolean + hasLicense: + annotations: [] + default: false + type: public + returnType: boolean + hasMinPlatformVersion: + annotations: [] + default: false + type: public + returnType: boolean + hasShortName: + annotations: [] + default: false + type: public + returnType: boolean + hasTargetPlatformVersion: + annotations: [] + default: false + type: public + returnType: boolean + hasType: + annotations: [] + default: false + type: public + returnType: boolean + hasVendor: + annotations: [] + default: false + type: public + returnType: boolean + hasVersionId: + annotations: [] + default: false + type: public + returnType: boolean + setAttributes: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CorDappManifest$Builder + params: + value: + annotation: [] + type: "java.util.Map" + setBundleSymbolicName: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CorDappManifest$Builder + params: + value: + annotation: [] + type: String + setBundleVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CorDappManifest$Builder + params: + value: + annotation: [] + type: String + setLicense: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CorDappManifest$Builder + params: + value: + annotation: [] + type: String + setMinPlatformVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CorDappManifest$Builder + params: + value: + annotation: [] + type: int + setShortName: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CorDappManifest$Builder + params: + value: + annotation: [] + type: String + setTargetPlatformVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CorDappManifest$Builder + params: + value: + annotation: [] + type: int + setType: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CorDappManifest$Builder + params: + value: + annotation: [] + type: net.corda.data.packaging.CorDappType + setVendor: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CorDappManifest$Builder + params: + value: + annotation: [] + type: String + setVersionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CorDappManifest$Builder + params: + value: + annotation: [] + type: Integer +net.corda.data.packaging.CorDappType: + annotations: + - AvroGenerated + type: public final class + extends: java.lang.Enum + implements: + - org.apache.avro.generic.GenericEnumSymbol + interface: false + methods: + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + valueOf: + annotations: [] + default: false + type: public static + returnType: net.corda.data.packaging.CorDappType + params: {} + values: + annotations: [] + default: false + type: public static + returnType: "net.corda.data.packaging.CorDappType[]" + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.packaging.CpiIdentifier: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.packaging.CpiIdentifier + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getName: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSignerSummaryHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.SecureHash + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getVersion: + annotations: [] + default: false + type: public + returnType: String + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.packaging.CpiIdentifier$Builder + params: + other: + annotation: [] + type: net.corda.data.packaging.CpiIdentifier + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setName: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setSignerSummaryHash: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.crypto.SecureHash + setVersion: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.packaging.CpiIdentifier$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpiIdentifier + clearName: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpiIdentifier$Builder + clearSignerSummaryHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpiIdentifier$Builder + clearVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpiIdentifier$Builder + getName: + annotations: [] + default: false + type: public + returnType: String + getSignerSummaryHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.SecureHash + getSignerSummaryHashBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.SecureHash$Builder + getVersion: + annotations: [] + default: false + type: public + returnType: String + hasName: + annotations: [] + default: false + type: public + returnType: boolean + hasSignerSummaryHash: + annotations: [] + default: false + type: public + returnType: boolean + hasSignerSummaryHashBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasVersion: + annotations: [] + default: false + type: public + returnType: boolean + setName: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpiIdentifier$Builder + params: + value: + annotation: [] + type: String + setSignerSummaryHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpiIdentifier$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.SecureHash + setSignerSummaryHashBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpiIdentifier$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.SecureHash$Builder + setVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpiIdentifier$Builder + params: + value: + annotation: [] + type: String +net.corda.data.packaging.CpiMetadata: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.packaging.CpiMetadata + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getCpks: + annotations: [] + default: false + type: public + returnType: java.util.List + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getGroupPolicy: + annotations: [] + default: false + type: public + returnType: String + getHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.SecureHash + getId: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpiIdentifier + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getVersion: + annotations: [] + default: false + type: public + returnType: int + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.packaging.CpiMetadata$Builder + params: + other: + annotation: [] + type: net.corda.data.packaging.CpiMetadata + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setCpks: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + setGroupPolicy: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setHash: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.crypto.SecureHash + setId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.packaging.CpiIdentifier + setTimestamp: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + setVersion: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.packaging.CpiMetadata$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpiMetadata + clearCpks: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpiMetadata$Builder + clearGroupPolicy: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpiMetadata$Builder + clearHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpiMetadata$Builder + clearId: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpiMetadata$Builder + clearTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpiMetadata$Builder + clearVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpiMetadata$Builder + getCpks: + annotations: [] + default: false + type: public + returnType: java.util.List + getGroupPolicy: + annotations: [] + default: false + type: public + returnType: String + getHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.SecureHash + getHashBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.SecureHash$Builder + getId: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpiIdentifier + getIdBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpiIdentifier$Builder + getTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getVersion: + annotations: [] + default: false + type: public + returnType: int + hasCpks: + annotations: [] + default: false + type: public + returnType: boolean + hasGroupPolicy: + annotations: [] + default: false + type: public + returnType: boolean + hasHash: + annotations: [] + default: false + type: public + returnType: boolean + hasHashBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasId: + annotations: [] + default: false + type: public + returnType: boolean + hasIdBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasTimestamp: + annotations: [] + default: false + type: public + returnType: boolean + hasVersion: + annotations: [] + default: false + type: public + returnType: boolean + setCpks: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpiMetadata$Builder + params: + value: + annotation: [] + type: java.util.List + setGroupPolicy: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpiMetadata$Builder + params: + value: + annotation: [] + type: String + setHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpiMetadata$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.SecureHash + setHashBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpiMetadata$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.SecureHash$Builder + setId: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpiMetadata$Builder + params: + value: + annotation: [] + type: net.corda.data.packaging.CpiIdentifier + setIdBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpiMetadata$Builder + params: + value: + annotation: [] + type: net.corda.data.packaging.CpiIdentifier$Builder + setTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpiMetadata$Builder + params: + value: + annotation: [] + type: java.time.Instant + setVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpiMetadata$Builder + params: + value: + annotation: [] + type: int +net.corda.data.packaging.CpiSegmentRequest: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.packaging.CpiSegmentRequest + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getIdentifier: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpiIdentifier + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getStart: + annotations: [] + default: false + type: public + returnType: long + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.packaging.CpiSegmentRequest$Builder + params: + other: + annotation: [] + type: net.corda.data.packaging.CpiSegmentRequest + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setIdentifier: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.packaging.CpiIdentifier + setStart: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: long + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.packaging.CpiSegmentRequest$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpiSegmentRequest + clearIdentifier: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpiSegmentRequest$Builder + clearStart: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpiSegmentRequest$Builder + getIdentifier: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpiIdentifier + getIdentifierBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpiIdentifier$Builder + getStart: + annotations: [] + default: false + type: public + returnType: long + hasIdentifier: + annotations: [] + default: false + type: public + returnType: boolean + hasIdentifierBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasStart: + annotations: [] + default: false + type: public + returnType: boolean + setIdentifier: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpiSegmentRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.packaging.CpiIdentifier + setIdentifierBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpiSegmentRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.packaging.CpiIdentifier$Builder + setStart: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpiSegmentRequest$Builder + params: + value: + annotation: [] + type: long +net.corda.data.packaging.CpiSegmentResponse: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.packaging.CpiSegmentResponse + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getAtEnd: + annotations: [] + default: false + type: public + returnType: boolean + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSegment: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.packaging.CpiSegmentResponse$Builder + params: + other: + annotation: [] + type: net.corda.data.packaging.CpiSegmentResponse + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setAtEnd: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: boolean + setSegment: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.packaging.CpiSegmentResponse$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpiSegmentResponse + clearAtEnd: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpiSegmentResponse$Builder + clearSegment: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpiSegmentResponse$Builder + getAtEnd: + annotations: [] + default: false + type: public + returnType: boolean + getSegment: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + hasAtEnd: + annotations: [] + default: false + type: public + returnType: boolean + hasSegment: + annotations: [] + default: false + type: public + returnType: boolean + setAtEnd: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpiSegmentResponse$Builder + params: + value: + annotation: [] + type: boolean + setSegment: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpiSegmentResponse$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer +net.corda.data.packaging.CpkFormatVersion: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.packaging.CpkFormatVersion + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getMajor: + annotations: [] + default: false + type: public + returnType: int + getMinor: + annotations: [] + default: false + type: public + returnType: int + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.packaging.CpkFormatVersion$Builder + params: + other: + annotation: [] + type: net.corda.data.packaging.CpkFormatVersion + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setMajor: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + setMinor: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.packaging.CpkFormatVersion$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkFormatVersion + clearMajor: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkFormatVersion$Builder + clearMinor: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkFormatVersion$Builder + getMajor: + annotations: [] + default: false + type: public + returnType: int + getMinor: + annotations: [] + default: false + type: public + returnType: int + hasMajor: + annotations: [] + default: false + type: public + returnType: boolean + hasMinor: + annotations: [] + default: false + type: public + returnType: boolean + setMajor: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkFormatVersion$Builder + params: + value: + annotation: [] + type: int + setMinor: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkFormatVersion$Builder + params: + value: + annotation: [] + type: int +net.corda.data.packaging.CpkIdentifier: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.packaging.CpkIdentifier + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getName: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSignerSummaryHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.SecureHash + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getVersion: + annotations: [] + default: false + type: public + returnType: String + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.packaging.CpkIdentifier$Builder + params: + other: + annotation: [] + type: net.corda.data.packaging.CpkIdentifier + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setName: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setSignerSummaryHash: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.crypto.SecureHash + setVersion: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.packaging.CpkIdentifier$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkIdentifier + clearName: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkIdentifier$Builder + clearSignerSummaryHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkIdentifier$Builder + clearVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkIdentifier$Builder + getName: + annotations: [] + default: false + type: public + returnType: String + getSignerSummaryHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.SecureHash + getSignerSummaryHashBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.SecureHash$Builder + getVersion: + annotations: [] + default: false + type: public + returnType: String + hasName: + annotations: [] + default: false + type: public + returnType: boolean + hasSignerSummaryHash: + annotations: [] + default: false + type: public + returnType: boolean + hasSignerSummaryHashBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasVersion: + annotations: [] + default: false + type: public + returnType: boolean + setName: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkIdentifier$Builder + params: + value: + annotation: [] + type: String + setSignerSummaryHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkIdentifier$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.SecureHash + setSignerSummaryHashBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkIdentifier$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.SecureHash$Builder + setVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkIdentifier$Builder + params: + value: + annotation: [] + type: String +net.corda.data.packaging.CpkManifest: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.packaging.CpkManifest + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkFormatVersion + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.packaging.CpkManifest$Builder + params: + other: + annotation: [] + type: net.corda.data.packaging.CpkManifest + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setVersion: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.packaging.CpkFormatVersion + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.packaging.CpkManifest$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkManifest + clearVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkManifest$Builder + getVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkFormatVersion + getVersionBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkFormatVersion$Builder + hasVersion: + annotations: [] + default: false + type: public + returnType: boolean + hasVersionBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkManifest$Builder + params: + value: + annotation: [] + type: net.corda.data.packaging.CpkFormatVersion + setVersionBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkManifest$Builder + params: + value: + annotation: [] + type: net.corda.data.packaging.CpkFormatVersion$Builder +net.corda.data.packaging.CpkMetadata: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.packaging.CpkMetadata + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getCorDappCertificates: + annotations: [] + default: false + type: public + returnType: java.util.List + getCorDappManifest: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CorDappManifest + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getExternalChannelsConfig: + annotations: [] + default: false + type: public + returnType: String + getHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.SecureHash + getId: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkIdentifier + getLibraries: + annotations: [] + default: false + type: public + returnType: java.util.List + getMainBundle: + annotations: [] + default: false + type: public + returnType: String + getManifest: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkManifest + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getType: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkType + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.packaging.CpkMetadata$Builder + params: + other: + annotation: [] + type: net.corda.data.packaging.CpkMetadata + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setCorDappCertificates: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + setCorDappManifest: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.packaging.CorDappManifest + setExternalChannelsConfig: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setHash: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.crypto.SecureHash + setId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.packaging.CpkIdentifier + setLibraries: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + setMainBundle: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setManifest: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.packaging.CpkManifest + setTimestamp: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + setType: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.packaging.CpkType + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.packaging.CpkMetadata$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkMetadata + clearCorDappCertificates: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkMetadata$Builder + clearCorDappManifest: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkMetadata$Builder + clearExternalChannelsConfig: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkMetadata$Builder + clearHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkMetadata$Builder + clearId: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkMetadata$Builder + clearLibraries: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkMetadata$Builder + clearMainBundle: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkMetadata$Builder + clearManifest: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkMetadata$Builder + clearTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkMetadata$Builder + clearType: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkMetadata$Builder + getCorDappCertificates: + annotations: [] + default: false + type: public + returnType: java.util.List + getCorDappManifest: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CorDappManifest + getCorDappManifestBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CorDappManifest$Builder + getExternalChannelsConfig: + annotations: [] + default: false + type: public + returnType: String + getHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.SecureHash + getHashBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.crypto.SecureHash$Builder + getId: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkIdentifier + getIdBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkIdentifier$Builder + getLibraries: + annotations: [] + default: false + type: public + returnType: java.util.List + getMainBundle: + annotations: [] + default: false + type: public + returnType: String + getManifest: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkManifest + getManifestBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkManifest$Builder + getTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getType: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkType + hasCorDappCertificates: + annotations: [] + default: false + type: public + returnType: boolean + hasCorDappManifest: + annotations: [] + default: false + type: public + returnType: boolean + hasCorDappManifestBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasExternalChannelsConfig: + annotations: [] + default: false + type: public + returnType: boolean + hasHash: + annotations: [] + default: false + type: public + returnType: boolean + hasHashBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasId: + annotations: [] + default: false + type: public + returnType: boolean + hasIdBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasLibraries: + annotations: [] + default: false + type: public + returnType: boolean + hasMainBundle: + annotations: [] + default: false + type: public + returnType: boolean + hasManifest: + annotations: [] + default: false + type: public + returnType: boolean + hasManifestBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasTimestamp: + annotations: [] + default: false + type: public + returnType: boolean + hasType: + annotations: [] + default: false + type: public + returnType: boolean + setCorDappCertificates: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkMetadata$Builder + params: + value: + annotation: [] + type: java.util.List + setCorDappManifest: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkMetadata$Builder + params: + value: + annotation: [] + type: net.corda.data.packaging.CorDappManifest + setCorDappManifestBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkMetadata$Builder + params: + value: + annotation: [] + type: net.corda.data.packaging.CorDappManifest$Builder + setExternalChannelsConfig: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkMetadata$Builder + params: + value: + annotation: [] + type: String + setHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkMetadata$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.SecureHash + setHashBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkMetadata$Builder + params: + value: + annotation: [] + type: net.corda.data.crypto.SecureHash$Builder + setId: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkMetadata$Builder + params: + value: + annotation: [] + type: net.corda.data.packaging.CpkIdentifier + setIdBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkMetadata$Builder + params: + value: + annotation: [] + type: net.corda.data.packaging.CpkIdentifier$Builder + setLibraries: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkMetadata$Builder + params: + value: + annotation: [] + type: java.util.List + setMainBundle: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkMetadata$Builder + params: + value: + annotation: [] + type: String + setManifest: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkMetadata$Builder + params: + value: + annotation: [] + type: net.corda.data.packaging.CpkManifest + setManifestBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkMetadata$Builder + params: + value: + annotation: [] + type: net.corda.data.packaging.CpkManifest$Builder + setTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkMetadata$Builder + params: + value: + annotation: [] + type: java.time.Instant + setType: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpkMetadata$Builder + params: + value: + annotation: [] + type: net.corda.data.packaging.CpkType +net.corda.data.packaging.CpkType: + annotations: + - AvroGenerated + type: public final class + extends: java.lang.Enum + implements: + - org.apache.avro.generic.GenericEnumSymbol + interface: false + methods: + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + valueOf: + annotations: [] + default: false + type: public static + returnType: net.corda.data.packaging.CpkType + params: {} + values: + annotations: [] + default: false + type: public static + returnType: "net.corda.data.packaging.CpkType[]" + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.permissions.ChangeDetails: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.permissions.ChangeDetails + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getUpdateTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.permissions.ChangeDetails$Builder + params: + other: + annotation: [] + type: net.corda.data.permissions.ChangeDetails + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setUpdateTimestamp: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.permissions.ChangeDetails$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.ChangeDetails + clearUpdateTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.ChangeDetails$Builder + getUpdateTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + hasUpdateTimestamp: + annotations: [] + default: false + type: public + returnType: boolean + setUpdateTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.ChangeDetails$Builder + params: + value: + annotation: [] + type: java.time.Instant +net.corda.data.permissions.Group: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.permissions.Group + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getId: + annotations: [] + default: false + type: public + returnType: String + getLastChangeDetails: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.ChangeDetails + getName: + annotations: [] + default: false + type: public + returnType: String + getParentGroupId: + annotations: [] + default: false + type: public + returnType: String + getProperties: + annotations: [] + default: false + type: public + returnType: java.util.List + getRoleAssociations: + annotations: [] + default: false + type: public + returnType: java.util.List + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getVersion: + annotations: [] + default: false + type: public + returnType: int + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.permissions.Group$Builder + params: + other: + annotation: [] + type: net.corda.data.permissions.Group + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setLastChangeDetails: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.permissions.ChangeDetails + setName: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setParentGroupId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setProperties: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + setRoleAssociations: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + setVersion: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.permissions.Group$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Group + clearId: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Group$Builder + clearLastChangeDetails: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Group$Builder + clearName: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Group$Builder + clearParentGroupId: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Group$Builder + clearProperties: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Group$Builder + clearRoleAssociations: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Group$Builder + clearVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Group$Builder + getId: + annotations: [] + default: false + type: public + returnType: String + getLastChangeDetails: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.ChangeDetails + getLastChangeDetailsBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.ChangeDetails$Builder + getName: + annotations: [] + default: false + type: public + returnType: String + getParentGroupId: + annotations: [] + default: false + type: public + returnType: String + getProperties: + annotations: [] + default: false + type: public + returnType: java.util.List + getRoleAssociations: + annotations: [] + default: false + type: public + returnType: java.util.List + getVersion: + annotations: [] + default: false + type: public + returnType: int + hasId: + annotations: [] + default: false + type: public + returnType: boolean + hasLastChangeDetails: + annotations: [] + default: false + type: public + returnType: boolean + hasLastChangeDetailsBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasName: + annotations: [] + default: false + type: public + returnType: boolean + hasParentGroupId: + annotations: [] + default: false + type: public + returnType: boolean + hasProperties: + annotations: [] + default: false + type: public + returnType: boolean + hasRoleAssociations: + annotations: [] + default: false + type: public + returnType: boolean + hasVersion: + annotations: [] + default: false + type: public + returnType: boolean + setId: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Group$Builder + params: + value: + annotation: [] + type: String + setLastChangeDetails: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Group$Builder + params: + value: + annotation: [] + type: net.corda.data.permissions.ChangeDetails + setLastChangeDetailsBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Group$Builder + params: + value: + annotation: [] + type: net.corda.data.permissions.ChangeDetails$Builder + setName: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Group$Builder + params: + value: + annotation: [] + type: String + setParentGroupId: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Group$Builder + params: + value: + annotation: [] + type: String + setProperties: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Group$Builder + params: + value: + annotation: [] + type: java.util.List + setRoleAssociations: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Group$Builder + params: + value: + annotation: [] + type: java.util.List + setVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Group$Builder + params: + value: + annotation: [] + type: int +net.corda.data.permissions.Permission: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.permissions.Permission + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getGroupVisibility: + annotations: [] + default: false + type: public + returnType: String + getId: + annotations: [] + default: false + type: public + returnType: String + getLastChangeDetails: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.ChangeDetails + getPermissionString: + annotations: [] + default: false + type: public + returnType: String + getPermissionType: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.PermissionType + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getVersion: + annotations: [] + default: false + type: public + returnType: int + getVirtualNode: + annotations: [] + default: false + type: public + returnType: String + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.permissions.Permission$Builder + params: + other: + annotation: [] + type: net.corda.data.permissions.Permission + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setGroupVisibility: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setLastChangeDetails: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.permissions.ChangeDetails + setPermissionString: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setPermissionType: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.permissions.PermissionType + setVersion: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + setVirtualNode: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.permissions.Permission$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Permission + clearGroupVisibility: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Permission$Builder + clearId: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Permission$Builder + clearLastChangeDetails: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Permission$Builder + clearPermissionString: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Permission$Builder + clearPermissionType: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Permission$Builder + clearVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Permission$Builder + clearVirtualNode: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Permission$Builder + getGroupVisibility: + annotations: [] + default: false + type: public + returnType: String + getId: + annotations: [] + default: false + type: public + returnType: String + getLastChangeDetails: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.ChangeDetails + getLastChangeDetailsBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.ChangeDetails$Builder + getPermissionString: + annotations: [] + default: false + type: public + returnType: String + getPermissionType: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.PermissionType + getVersion: + annotations: [] + default: false + type: public + returnType: int + getVirtualNode: + annotations: [] + default: false + type: public + returnType: String + hasGroupVisibility: + annotations: [] + default: false + type: public + returnType: boolean + hasId: + annotations: [] + default: false + type: public + returnType: boolean + hasLastChangeDetails: + annotations: [] + default: false + type: public + returnType: boolean + hasLastChangeDetailsBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasPermissionString: + annotations: [] + default: false + type: public + returnType: boolean + hasPermissionType: + annotations: [] + default: false + type: public + returnType: boolean + hasVersion: + annotations: [] + default: false + type: public + returnType: boolean + hasVirtualNode: + annotations: [] + default: false + type: public + returnType: boolean + setGroupVisibility: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Permission$Builder + params: + value: + annotation: [] + type: String + setId: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Permission$Builder + params: + value: + annotation: [] + type: String + setLastChangeDetails: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Permission$Builder + params: + value: + annotation: [] + type: net.corda.data.permissions.ChangeDetails + setLastChangeDetailsBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Permission$Builder + params: + value: + annotation: [] + type: net.corda.data.permissions.ChangeDetails$Builder + setPermissionString: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Permission$Builder + params: + value: + annotation: [] + type: String + setPermissionType: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Permission$Builder + params: + value: + annotation: [] + type: net.corda.data.permissions.PermissionType + setVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Permission$Builder + params: + value: + annotation: [] + type: int + setVirtualNode: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Permission$Builder + params: + value: + annotation: [] + type: String +net.corda.data.permissions.PermissionAssociation: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.permissions.PermissionAssociation + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getChangeDetails: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.ChangeDetails + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getPermissionId: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.permissions.PermissionAssociation$Builder + params: + other: + annotation: [] + type: net.corda.data.permissions.PermissionAssociation + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setChangeDetails: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.permissions.ChangeDetails + setPermissionId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.permissions.PermissionAssociation$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.PermissionAssociation + clearChangeDetails: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.PermissionAssociation$Builder + clearPermissionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.PermissionAssociation$Builder + getChangeDetails: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.ChangeDetails + getChangeDetailsBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.ChangeDetails$Builder + getPermissionId: + annotations: [] + default: false + type: public + returnType: String + hasChangeDetails: + annotations: [] + default: false + type: public + returnType: boolean + hasChangeDetailsBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasPermissionId: + annotations: [] + default: false + type: public + returnType: boolean + setChangeDetails: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.PermissionAssociation$Builder + params: + value: + annotation: [] + type: net.corda.data.permissions.ChangeDetails + setChangeDetailsBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.PermissionAssociation$Builder + params: + value: + annotation: [] + type: net.corda.data.permissions.ChangeDetails$Builder + setPermissionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.PermissionAssociation$Builder + params: + value: + annotation: [] + type: String +net.corda.data.permissions.PermissionType: + annotations: + - AvroGenerated + type: public final class + extends: java.lang.Enum + implements: + - org.apache.avro.generic.GenericEnumSymbol + interface: false + methods: + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + valueOf: + annotations: [] + default: false + type: public static + returnType: net.corda.data.permissions.PermissionType + params: {} + values: + annotations: [] + default: false + type: public static + returnType: "net.corda.data.permissions.PermissionType[]" + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.permissions.Property: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.permissions.Property + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getId: + annotations: [] + default: false + type: public + returnType: String + getKey: + annotations: [] + default: false + type: public + returnType: String + getLastChangeDetails: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.ChangeDetails + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getValue: + annotations: [] + default: false + type: public + returnType: String + getVersion: + annotations: [] + default: false + type: public + returnType: int + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.permissions.Property$Builder + params: + other: + annotation: [] + type: net.corda.data.permissions.Property + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setKey: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setLastChangeDetails: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.permissions.ChangeDetails + setValue: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setVersion: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.permissions.Property$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Property + clearId: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Property$Builder + clearKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Property$Builder + clearLastChangeDetails: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Property$Builder + clearValue: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Property$Builder + clearVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Property$Builder + getId: + annotations: [] + default: false + type: public + returnType: String + getKey: + annotations: [] + default: false + type: public + returnType: String + getLastChangeDetails: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.ChangeDetails + getLastChangeDetailsBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.ChangeDetails$Builder + getValue: + annotations: [] + default: false + type: public + returnType: String + getVersion: + annotations: [] + default: false + type: public + returnType: int + hasId: + annotations: [] + default: false + type: public + returnType: boolean + hasKey: + annotations: [] + default: false + type: public + returnType: boolean + hasLastChangeDetails: + annotations: [] + default: false + type: public + returnType: boolean + hasLastChangeDetailsBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasValue: + annotations: [] + default: false + type: public + returnType: boolean + hasVersion: + annotations: [] + default: false + type: public + returnType: boolean + setId: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Property$Builder + params: + value: + annotation: [] + type: String + setKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Property$Builder + params: + value: + annotation: [] + type: String + setLastChangeDetails: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Property$Builder + params: + value: + annotation: [] + type: net.corda.data.permissions.ChangeDetails + setLastChangeDetailsBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Property$Builder + params: + value: + annotation: [] + type: net.corda.data.permissions.ChangeDetails$Builder + setValue: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Property$Builder + params: + value: + annotation: [] + type: String + setVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Property$Builder + params: + value: + annotation: [] + type: int +net.corda.data.permissions.Role: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.permissions.Role + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getGroupVisibility: + annotations: [] + default: false + type: public + returnType: String + getId: + annotations: [] + default: false + type: public + returnType: String + getLastChangeDetails: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.ChangeDetails + getName: + annotations: [] + default: false + type: public + returnType: String + getPermissions: + annotations: [] + default: false + type: public + returnType: java.util.List + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getVersion: + annotations: [] + default: false + type: public + returnType: int + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.permissions.Role$Builder + params: + other: + annotation: [] + type: net.corda.data.permissions.Role + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setGroupVisibility: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setLastChangeDetails: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.permissions.ChangeDetails + setName: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setPermissions: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + setVersion: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.permissions.Role$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Role + clearGroupVisibility: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Role$Builder + clearId: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Role$Builder + clearLastChangeDetails: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Role$Builder + clearName: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Role$Builder + clearPermissions: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Role$Builder + clearVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Role$Builder + getGroupVisibility: + annotations: [] + default: false + type: public + returnType: String + getId: + annotations: [] + default: false + type: public + returnType: String + getLastChangeDetails: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.ChangeDetails + getLastChangeDetailsBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.ChangeDetails$Builder + getName: + annotations: [] + default: false + type: public + returnType: String + getPermissions: + annotations: [] + default: false + type: public + returnType: java.util.List + getVersion: + annotations: [] + default: false + type: public + returnType: int + hasGroupVisibility: + annotations: [] + default: false + type: public + returnType: boolean + hasId: + annotations: [] + default: false + type: public + returnType: boolean + hasLastChangeDetails: + annotations: [] + default: false + type: public + returnType: boolean + hasLastChangeDetailsBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasName: + annotations: [] + default: false + type: public + returnType: boolean + hasPermissions: + annotations: [] + default: false + type: public + returnType: boolean + hasVersion: + annotations: [] + default: false + type: public + returnType: boolean + setGroupVisibility: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Role$Builder + params: + value: + annotation: [] + type: String + setId: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Role$Builder + params: + value: + annotation: [] + type: String + setLastChangeDetails: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Role$Builder + params: + value: + annotation: [] + type: net.corda.data.permissions.ChangeDetails + setLastChangeDetailsBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Role$Builder + params: + value: + annotation: [] + type: net.corda.data.permissions.ChangeDetails$Builder + setName: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Role$Builder + params: + value: + annotation: [] + type: String + setPermissions: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Role$Builder + params: + value: + annotation: [] + type: java.util.List + setVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.Role$Builder + params: + value: + annotation: [] + type: int +net.corda.data.permissions.RoleAssociation: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.permissions.RoleAssociation + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getChangeDetails: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.ChangeDetails + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getRoleId: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.permissions.RoleAssociation$Builder + params: + other: + annotation: [] + type: net.corda.data.permissions.RoleAssociation + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setChangeDetails: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.permissions.ChangeDetails + setRoleId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.permissions.RoleAssociation$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.RoleAssociation + clearChangeDetails: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.RoleAssociation$Builder + clearRoleId: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.RoleAssociation$Builder + getChangeDetails: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.ChangeDetails + getChangeDetailsBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.ChangeDetails$Builder + getRoleId: + annotations: [] + default: false + type: public + returnType: String + hasChangeDetails: + annotations: [] + default: false + type: public + returnType: boolean + hasChangeDetailsBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasRoleId: + annotations: [] + default: false + type: public + returnType: boolean + setChangeDetails: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.RoleAssociation$Builder + params: + value: + annotation: [] + type: net.corda.data.permissions.ChangeDetails + setChangeDetailsBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.RoleAssociation$Builder + params: + value: + annotation: [] + type: net.corda.data.permissions.ChangeDetails$Builder + setRoleId: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.RoleAssociation$Builder + params: + value: + annotation: [] + type: String +net.corda.data.permissions.User: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.permissions.User + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEnabled: + annotations: [] + default: false + type: public + returnType: boolean + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getFullName: + annotations: [] + default: false + type: public + returnType: String + getHashedPassword: + annotations: [] + default: false + type: public + returnType: String + getId: + annotations: [] + default: false + type: public + returnType: String + getLastChangeDetails: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.ChangeDetails + getLoginName: + annotations: [] + default: false + type: public + returnType: String + getParentGroupId: + annotations: [] + default: false + type: public + returnType: String + getPasswordExpiry: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getProperties: + annotations: [] + default: false + type: public + returnType: java.util.List + getRoleAssociations: + annotations: [] + default: false + type: public + returnType: java.util.List + getSaltValue: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getSsoAuth: + annotations: [] + default: false + type: public + returnType: boolean + getVersion: + annotations: [] + default: false + type: public + returnType: int + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.permissions.User$Builder + params: + other: + annotation: [] + type: net.corda.data.permissions.User + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setEnabled: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: boolean + setFullName: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setHashedPassword: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setLastChangeDetails: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.permissions.ChangeDetails + setLoginName: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setParentGroupId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setPasswordExpiry: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + setProperties: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + setRoleAssociations: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + setSaltValue: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setSsoAuth: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: boolean + setVersion: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.permissions.User$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.User + clearEnabled: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.User$Builder + clearFullName: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.User$Builder + clearHashedPassword: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.User$Builder + clearId: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.User$Builder + clearLastChangeDetails: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.User$Builder + clearLoginName: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.User$Builder + clearParentGroupId: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.User$Builder + clearPasswordExpiry: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.User$Builder + clearProperties: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.User$Builder + clearRoleAssociations: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.User$Builder + clearSaltValue: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.User$Builder + clearSsoAuth: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.User$Builder + clearVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.User$Builder + getEnabled: + annotations: [] + default: false + type: public + returnType: boolean + getFullName: + annotations: [] + default: false + type: public + returnType: String + getHashedPassword: + annotations: [] + default: false + type: public + returnType: String + getId: + annotations: [] + default: false + type: public + returnType: String + getLastChangeDetails: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.ChangeDetails + getLastChangeDetailsBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.ChangeDetails$Builder + getLoginName: + annotations: [] + default: false + type: public + returnType: String + getParentGroupId: + annotations: [] + default: false + type: public + returnType: String + getPasswordExpiry: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getProperties: + annotations: [] + default: false + type: public + returnType: java.util.List + getRoleAssociations: + annotations: [] + default: false + type: public + returnType: java.util.List + getSaltValue: + annotations: [] + default: false + type: public + returnType: String + getSsoAuth: + annotations: [] + default: false + type: public + returnType: boolean + getVersion: + annotations: [] + default: false + type: public + returnType: int + hasEnabled: + annotations: [] + default: false + type: public + returnType: boolean + hasFullName: + annotations: [] + default: false + type: public + returnType: boolean + hasHashedPassword: + annotations: [] + default: false + type: public + returnType: boolean + hasId: + annotations: [] + default: false + type: public + returnType: boolean + hasLastChangeDetails: + annotations: [] + default: false + type: public + returnType: boolean + hasLastChangeDetailsBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasLoginName: + annotations: [] + default: false + type: public + returnType: boolean + hasParentGroupId: + annotations: [] + default: false + type: public + returnType: boolean + hasPasswordExpiry: + annotations: [] + default: false + type: public + returnType: boolean + hasProperties: + annotations: [] + default: false + type: public + returnType: boolean + hasRoleAssociations: + annotations: [] + default: false + type: public + returnType: boolean + hasSaltValue: + annotations: [] + default: false + type: public + returnType: boolean + hasSsoAuth: + annotations: [] + default: false + type: public + returnType: boolean + hasVersion: + annotations: [] + default: false + type: public + returnType: boolean + setEnabled: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.User$Builder + params: + value: + annotation: [] + type: boolean + setFullName: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.User$Builder + params: + value: + annotation: [] + type: String + setHashedPassword: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.User$Builder + params: + value: + annotation: [] + type: String + setId: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.User$Builder + params: + value: + annotation: [] + type: String + setLastChangeDetails: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.User$Builder + params: + value: + annotation: [] + type: net.corda.data.permissions.ChangeDetails + setLastChangeDetailsBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.User$Builder + params: + value: + annotation: [] + type: net.corda.data.permissions.ChangeDetails$Builder + setLoginName: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.User$Builder + params: + value: + annotation: [] + type: String + setParentGroupId: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.User$Builder + params: + value: + annotation: [] + type: String + setPasswordExpiry: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.User$Builder + params: + value: + annotation: [] + type: java.time.Instant + setProperties: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.User$Builder + params: + value: + annotation: [] + type: java.util.List + setRoleAssociations: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.User$Builder + params: + value: + annotation: [] + type: java.util.List + setSaltValue: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.User$Builder + params: + value: + annotation: [] + type: String + setSsoAuth: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.User$Builder + params: + value: + annotation: [] + type: boolean + setVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.User$Builder + params: + value: + annotation: [] + type: int +net.corda.data.permissions.management.PermissionManagementRequest: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.permissions.management.PermissionManagementRequest + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getRequest: + annotations: [] + default: false + type: public + returnType: Object + getRequestUserId: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getVirtualNodeId: + annotations: [] + default: false + type: public + returnType: String + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.permissions.management.PermissionManagementRequest$Builder + params: + other: + annotation: [] + type: net.corda.data.permissions.management.PermissionManagementRequest + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setRequest: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Object + setRequestUserId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setVirtualNodeId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.permissions.management.PermissionManagementRequest$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.PermissionManagementRequest + clearRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.PermissionManagementRequest$Builder + clearRequestUserId: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.PermissionManagementRequest$Builder + clearVirtualNodeId: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.PermissionManagementRequest$Builder + getRequest: + annotations: [] + default: false + type: public + returnType: Object + getRequestUserId: + annotations: [] + default: false + type: public + returnType: String + getVirtualNodeId: + annotations: [] + default: false + type: public + returnType: String + hasRequest: + annotations: [] + default: false + type: public + returnType: boolean + hasRequestUserId: + annotations: [] + default: false + type: public + returnType: boolean + hasVirtualNodeId: + annotations: [] + default: false + type: public + returnType: boolean + setRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.PermissionManagementRequest$Builder + params: + value: + annotation: [] + type: Object + setRequestUserId: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.PermissionManagementRequest$Builder + params: + value: + annotation: [] + type: String + setVirtualNodeId: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.PermissionManagementRequest$Builder + params: + value: + annotation: [] + type: String +net.corda.data.permissions.management.PermissionManagementResponse: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.permissions.management.PermissionManagementResponse + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getResponse: + annotations: [] + default: false + type: public + returnType: Object + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.permissions.management.PermissionManagementResponse$Builder + params: + other: + annotation: [] + type: net.corda.data.permissions.management.PermissionManagementResponse + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setResponse: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Object + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.permissions.management.PermissionManagementResponse$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.PermissionManagementResponse + clearResponse: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.PermissionManagementResponse$Builder + getResponse: + annotations: [] + default: false + type: public + returnType: Object + hasResponse: + annotations: [] + default: false + type: public + returnType: boolean + setResponse: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.PermissionManagementResponse$Builder + params: + value: + annotation: [] + type: Object +net.corda.data.permissions.management.permission.BulkCreatePermissionsRequest: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.permissions.management.permission.BulkCreatePermissionsRequest + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getPermissionsToCreate: + annotations: [] + default: false + type: public + returnType: java.util.List + getRoleIds: + annotations: [] + default: false + type: public + returnType: java.util.List + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.permissions.management.permission.BulkCreatePermissionsRequest$Builder + params: + other: + annotation: [] + type: net.corda.data.permissions.management.permission.BulkCreatePermissionsRequest + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setPermissionsToCreate: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + setRoleIds: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.permissions.management.permission.BulkCreatePermissionsRequest$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.permission.BulkCreatePermissionsRequest + clearPermissionsToCreate: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.permission.BulkCreatePermissionsRequest$Builder + clearRoleIds: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.permission.BulkCreatePermissionsRequest$Builder + getPermissionsToCreate: + annotations: [] + default: false + type: public + returnType: java.util.List + getRoleIds: + annotations: [] + default: false + type: public + returnType: java.util.List + hasPermissionsToCreate: + annotations: [] + default: false + type: public + returnType: boolean + hasRoleIds: + annotations: [] + default: false + type: public + returnType: boolean + setPermissionsToCreate: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.permission.BulkCreatePermissionsRequest$Builder + params: + value: + annotation: [] + type: java.util.List + setRoleIds: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.permission.BulkCreatePermissionsRequest$Builder + params: + value: + annotation: [] + type: java.util.List +net.corda.data.permissions.management.permission.BulkCreatePermissionsResponse: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.permissions.management.permission.BulkCreatePermissionsResponse + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getPermissionIds: + annotations: [] + default: false + type: public + returnType: java.util.List + getRoleIds: + annotations: [] + default: false + type: public + returnType: java.util.List + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.permissions.management.permission.BulkCreatePermissionsResponse$Builder + params: + other: + annotation: [] + type: net.corda.data.permissions.management.permission.BulkCreatePermissionsResponse + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setPermissionIds: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + setRoleIds: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.permissions.management.permission.BulkCreatePermissionsResponse$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.permission.BulkCreatePermissionsResponse + clearPermissionIds: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.permission.BulkCreatePermissionsResponse$Builder + clearRoleIds: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.permission.BulkCreatePermissionsResponse$Builder + getPermissionIds: + annotations: [] + default: false + type: public + returnType: java.util.List + getRoleIds: + annotations: [] + default: false + type: public + returnType: java.util.List + hasPermissionIds: + annotations: [] + default: false + type: public + returnType: boolean + hasRoleIds: + annotations: [] + default: false + type: public + returnType: boolean + setPermissionIds: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.permission.BulkCreatePermissionsResponse$Builder + params: + value: + annotation: [] + type: java.util.List + setRoleIds: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.permission.BulkCreatePermissionsResponse$Builder + params: + value: + annotation: [] + type: java.util.List +net.corda.data.permissions.management.permission.CreatePermissionRequest: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.permissions.management.permission.CreatePermissionRequest + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getGroupVisibility: + annotations: [] + default: false + type: public + returnType: String + getPermissionString: + annotations: [] + default: false + type: public + returnType: String + getPermissionType: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.PermissionType + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.permissions.management.permission.CreatePermissionRequest$Builder + params: + other: + annotation: [] + type: net.corda.data.permissions.management.permission.CreatePermissionRequest + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setGroupVisibility: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setPermissionString: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setPermissionType: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.permissions.PermissionType + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.permissions.management.permission.CreatePermissionRequest$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.permission.CreatePermissionRequest + clearGroupVisibility: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.permission.CreatePermissionRequest$Builder + clearPermissionString: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.permission.CreatePermissionRequest$Builder + clearPermissionType: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.permission.CreatePermissionRequest$Builder + getGroupVisibility: + annotations: [] + default: false + type: public + returnType: String + getPermissionString: + annotations: [] + default: false + type: public + returnType: String + getPermissionType: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.PermissionType + hasGroupVisibility: + annotations: [] + default: false + type: public + returnType: boolean + hasPermissionString: + annotations: [] + default: false + type: public + returnType: boolean + hasPermissionType: + annotations: [] + default: false + type: public + returnType: boolean + setGroupVisibility: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.permission.CreatePermissionRequest$Builder + params: + value: + annotation: [] + type: String + setPermissionString: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.permission.CreatePermissionRequest$Builder + params: + value: + annotation: [] + type: String + setPermissionType: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.permission.CreatePermissionRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.permissions.PermissionType +net.corda.data.permissions.management.role.AddPermissionToRoleRequest: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.permissions.management.role.AddPermissionToRoleRequest + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getPermissionId: + annotations: [] + default: false + type: public + returnType: String + getRoleId: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.permissions.management.role.AddPermissionToRoleRequest$Builder + params: + other: + annotation: [] + type: net.corda.data.permissions.management.role.AddPermissionToRoleRequest + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setPermissionId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setRoleId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.permissions.management.role.AddPermissionToRoleRequest$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.role.AddPermissionToRoleRequest + clearPermissionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.role.AddPermissionToRoleRequest$Builder + clearRoleId: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.role.AddPermissionToRoleRequest$Builder + getPermissionId: + annotations: [] + default: false + type: public + returnType: String + getRoleId: + annotations: [] + default: false + type: public + returnType: String + hasPermissionId: + annotations: [] + default: false + type: public + returnType: boolean + hasRoleId: + annotations: [] + default: false + type: public + returnType: boolean + setPermissionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.role.AddPermissionToRoleRequest$Builder + params: + value: + annotation: [] + type: String + setRoleId: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.role.AddPermissionToRoleRequest$Builder + params: + value: + annotation: [] + type: String +net.corda.data.permissions.management.role.CreateRoleRequest: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.permissions.management.role.CreateRoleRequest + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getGroupVisibility: + annotations: [] + default: false + type: public + returnType: String + getRoleName: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.permissions.management.role.CreateRoleRequest$Builder + params: + other: + annotation: [] + type: net.corda.data.permissions.management.role.CreateRoleRequest + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setGroupVisibility: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setRoleName: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.permissions.management.role.CreateRoleRequest$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.role.CreateRoleRequest + clearGroupVisibility: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.role.CreateRoleRequest$Builder + clearRoleName: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.role.CreateRoleRequest$Builder + getGroupVisibility: + annotations: [] + default: false + type: public + returnType: String + getRoleName: + annotations: [] + default: false + type: public + returnType: String + hasGroupVisibility: + annotations: [] + default: false + type: public + returnType: boolean + hasRoleName: + annotations: [] + default: false + type: public + returnType: boolean + setGroupVisibility: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.role.CreateRoleRequest$Builder + params: + value: + annotation: [] + type: String + setRoleName: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.role.CreateRoleRequest$Builder + params: + value: + annotation: [] + type: String +net.corda.data.permissions.management.role.RemovePermissionFromRoleRequest: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.permissions.management.role.RemovePermissionFromRoleRequest + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getPermissionId: + annotations: [] + default: false + type: public + returnType: String + getRoleId: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.permissions.management.role.RemovePermissionFromRoleRequest$Builder + params: + other: + annotation: [] + type: net.corda.data.permissions.management.role.RemovePermissionFromRoleRequest + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setPermissionId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setRoleId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.permissions.management.role.RemovePermissionFromRoleRequest$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.role.RemovePermissionFromRoleRequest + clearPermissionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.role.RemovePermissionFromRoleRequest$Builder + clearRoleId: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.role.RemovePermissionFromRoleRequest$Builder + getPermissionId: + annotations: [] + default: false + type: public + returnType: String + getRoleId: + annotations: [] + default: false + type: public + returnType: String + hasPermissionId: + annotations: [] + default: false + type: public + returnType: boolean + hasRoleId: + annotations: [] + default: false + type: public + returnType: boolean + setPermissionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.role.RemovePermissionFromRoleRequest$Builder + params: + value: + annotation: [] + type: String + setRoleId: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.role.RemovePermissionFromRoleRequest$Builder + params: + value: + annotation: [] + type: String +net.corda.data.permissions.management.user.AddRoleToUserRequest: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.permissions.management.user.AddRoleToUserRequest + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getLoginName: + annotations: [] + default: false + type: public + returnType: String + getRoleId: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.permissions.management.user.AddRoleToUserRequest$Builder + params: + other: + annotation: [] + type: net.corda.data.permissions.management.user.AddRoleToUserRequest + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setLoginName: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setRoleId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.permissions.management.user.AddRoleToUserRequest$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.user.AddRoleToUserRequest + clearLoginName: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.user.AddRoleToUserRequest$Builder + clearRoleId: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.user.AddRoleToUserRequest$Builder + getLoginName: + annotations: [] + default: false + type: public + returnType: String + getRoleId: + annotations: [] + default: false + type: public + returnType: String + hasLoginName: + annotations: [] + default: false + type: public + returnType: boolean + hasRoleId: + annotations: [] + default: false + type: public + returnType: boolean + setLoginName: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.user.AddRoleToUserRequest$Builder + params: + value: + annotation: [] + type: String + setRoleId: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.user.AddRoleToUserRequest$Builder + params: + value: + annotation: [] + type: String +net.corda.data.permissions.management.user.CreateUserRequest: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.permissions.management.user.CreateUserRequest + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEnabled: + annotations: [] + default: false + type: public + returnType: boolean + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getFullName: + annotations: [] + default: false + type: public + returnType: String + getInitialHashedPassword: + annotations: [] + default: false + type: public + returnType: String + getLoginName: + annotations: [] + default: false + type: public + returnType: String + getParentGroupId: + annotations: [] + default: false + type: public + returnType: String + getPasswordExpiry: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getSaltValue: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.permissions.management.user.CreateUserRequest$Builder + params: + other: + annotation: [] + type: net.corda.data.permissions.management.user.CreateUserRequest + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setEnabled: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: boolean + setFullName: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setInitialHashedPassword: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setLoginName: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setParentGroupId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setPasswordExpiry: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + setSaltValue: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.permissions.management.user.CreateUserRequest$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.user.CreateUserRequest + clearEnabled: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.user.CreateUserRequest$Builder + clearFullName: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.user.CreateUserRequest$Builder + clearInitialHashedPassword: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.user.CreateUserRequest$Builder + clearLoginName: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.user.CreateUserRequest$Builder + clearParentGroupId: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.user.CreateUserRequest$Builder + clearPasswordExpiry: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.user.CreateUserRequest$Builder + clearSaltValue: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.user.CreateUserRequest$Builder + getEnabled: + annotations: [] + default: false + type: public + returnType: boolean + getFullName: + annotations: [] + default: false + type: public + returnType: String + getInitialHashedPassword: + annotations: [] + default: false + type: public + returnType: String + getLoginName: + annotations: [] + default: false + type: public + returnType: String + getParentGroupId: + annotations: [] + default: false + type: public + returnType: String + getPasswordExpiry: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getSaltValue: + annotations: [] + default: false + type: public + returnType: String + hasEnabled: + annotations: [] + default: false + type: public + returnType: boolean + hasFullName: + annotations: [] + default: false + type: public + returnType: boolean + hasInitialHashedPassword: + annotations: [] + default: false + type: public + returnType: boolean + hasLoginName: + annotations: [] + default: false + type: public + returnType: boolean + hasParentGroupId: + annotations: [] + default: false + type: public + returnType: boolean + hasPasswordExpiry: + annotations: [] + default: false + type: public + returnType: boolean + hasSaltValue: + annotations: [] + default: false + type: public + returnType: boolean + setEnabled: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.user.CreateUserRequest$Builder + params: + value: + annotation: [] + type: boolean + setFullName: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.user.CreateUserRequest$Builder + params: + value: + annotation: [] + type: String + setInitialHashedPassword: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.user.CreateUserRequest$Builder + params: + value: + annotation: [] + type: String + setLoginName: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.user.CreateUserRequest$Builder + params: + value: + annotation: [] + type: String + setParentGroupId: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.user.CreateUserRequest$Builder + params: + value: + annotation: [] + type: String + setPasswordExpiry: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.user.CreateUserRequest$Builder + params: + value: + annotation: [] + type: java.time.Instant + setSaltValue: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.user.CreateUserRequest$Builder + params: + value: + annotation: [] + type: String +net.corda.data.permissions.management.user.RemoveRoleFromUserRequest: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.permissions.management.user.RemoveRoleFromUserRequest + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getLoginName: + annotations: [] + default: false + type: public + returnType: String + getRoleId: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.permissions.management.user.RemoveRoleFromUserRequest$Builder + params: + other: + annotation: [] + type: net.corda.data.permissions.management.user.RemoveRoleFromUserRequest + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setLoginName: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setRoleId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.permissions.management.user.RemoveRoleFromUserRequest$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.user.RemoveRoleFromUserRequest + clearLoginName: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.user.RemoveRoleFromUserRequest$Builder + clearRoleId: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.user.RemoveRoleFromUserRequest$Builder + getLoginName: + annotations: [] + default: false + type: public + returnType: String + getRoleId: + annotations: [] + default: false + type: public + returnType: String + hasLoginName: + annotations: [] + default: false + type: public + returnType: boolean + hasRoleId: + annotations: [] + default: false + type: public + returnType: boolean + setLoginName: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.user.RemoveRoleFromUserRequest$Builder + params: + value: + annotation: [] + type: String + setRoleId: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.management.user.RemoveRoleFromUserRequest$Builder + params: + value: + annotation: [] + type: String +net.corda.data.permissions.summary.PermissionSummary: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.permissions.summary.PermissionSummary + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getGroupVisibility: + annotations: [] + default: false + type: public + returnType: String + getId: + annotations: [] + default: false + type: public + returnType: String + getPermissionString: + annotations: [] + default: false + type: public + returnType: String + getPermissionType: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.PermissionType + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getVirtualNode: + annotations: [] + default: false + type: public + returnType: String + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.permissions.summary.PermissionSummary$Builder + params: + other: + annotation: [] + type: net.corda.data.permissions.summary.PermissionSummary + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setGroupVisibility: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setPermissionString: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setPermissionType: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.permissions.PermissionType + setVirtualNode: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.permissions.summary.PermissionSummary$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.summary.PermissionSummary + clearGroupVisibility: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.summary.PermissionSummary$Builder + clearId: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.summary.PermissionSummary$Builder + clearPermissionString: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.summary.PermissionSummary$Builder + clearPermissionType: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.summary.PermissionSummary$Builder + clearVirtualNode: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.summary.PermissionSummary$Builder + getGroupVisibility: + annotations: [] + default: false + type: public + returnType: String + getId: + annotations: [] + default: false + type: public + returnType: String + getPermissionString: + annotations: [] + default: false + type: public + returnType: String + getPermissionType: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.PermissionType + getVirtualNode: + annotations: [] + default: false + type: public + returnType: String + hasGroupVisibility: + annotations: [] + default: false + type: public + returnType: boolean + hasId: + annotations: [] + default: false + type: public + returnType: boolean + hasPermissionString: + annotations: [] + default: false + type: public + returnType: boolean + hasPermissionType: + annotations: [] + default: false + type: public + returnType: boolean + hasVirtualNode: + annotations: [] + default: false + type: public + returnType: boolean + setGroupVisibility: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.summary.PermissionSummary$Builder + params: + value: + annotation: [] + type: String + setId: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.summary.PermissionSummary$Builder + params: + value: + annotation: [] + type: String + setPermissionString: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.summary.PermissionSummary$Builder + params: + value: + annotation: [] + type: String + setPermissionType: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.summary.PermissionSummary$Builder + params: + value: + annotation: [] + type: net.corda.data.permissions.PermissionType + setVirtualNode: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.summary.PermissionSummary$Builder + params: + value: + annotation: [] + type: String +net.corda.data.permissions.summary.UserPermissionSummary: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.permissions.summary.UserPermissionSummary + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEnabled: + annotations: [] + default: false + type: public + returnType: boolean + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getLastUpdateTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getLoginName: + annotations: [] + default: false + type: public + returnType: String + getPermissions: + annotations: [] + default: false + type: public + returnType: java.util.List + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.permissions.summary.UserPermissionSummary$Builder + params: + other: + annotation: [] + type: net.corda.data.permissions.summary.UserPermissionSummary + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setEnabled: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: boolean + setLastUpdateTimestamp: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + setLoginName: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setPermissions: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.permissions.summary.UserPermissionSummary$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.summary.UserPermissionSummary + clearEnabled: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.summary.UserPermissionSummary$Builder + clearLastUpdateTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.summary.UserPermissionSummary$Builder + clearLoginName: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.summary.UserPermissionSummary$Builder + clearPermissions: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.summary.UserPermissionSummary$Builder + getEnabled: + annotations: [] + default: false + type: public + returnType: boolean + getLastUpdateTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getLoginName: + annotations: [] + default: false + type: public + returnType: String + getPermissions: + annotations: [] + default: false + type: public + returnType: java.util.List + hasEnabled: + annotations: [] + default: false + type: public + returnType: boolean + hasLastUpdateTimestamp: + annotations: [] + default: false + type: public + returnType: boolean + hasLoginName: + annotations: [] + default: false + type: public + returnType: boolean + hasPermissions: + annotations: [] + default: false + type: public + returnType: boolean + setEnabled: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.summary.UserPermissionSummary$Builder + params: + value: + annotation: [] + type: boolean + setLastUpdateTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.summary.UserPermissionSummary$Builder + params: + value: + annotation: [] + type: java.time.Instant + setLoginName: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.summary.UserPermissionSummary$Builder + params: + value: + annotation: [] + type: String + setPermissions: + annotations: [] + default: false + type: public + returnType: net.corda.data.permissions.summary.UserPermissionSummary$Builder + params: + value: + annotation: [] + type: java.util.List +net.corda.data.persistence.DeleteEntities: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.persistence.DeleteEntities + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getEntities: + annotations: [] + default: false + type: public + returnType: java.util.List + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.persistence.DeleteEntities$Builder + params: + other: + annotation: [] + type: net.corda.data.persistence.DeleteEntities + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setEntities: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.persistence.DeleteEntities$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.DeleteEntities + clearEntities: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.DeleteEntities$Builder + getEntities: + annotations: [] + default: false + type: public + returnType: java.util.List + hasEntities: + annotations: [] + default: false + type: public + returnType: boolean + setEntities: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.DeleteEntities$Builder + params: + value: + annotation: [] + type: java.util.List +net.corda.data.persistence.DeleteEntitiesById: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.persistence.DeleteEntitiesById + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getEntityClassName: + annotations: [] + default: false + type: public + returnType: String + getIds: + annotations: [] + default: false + type: public + returnType: java.util.List + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.persistence.DeleteEntitiesById$Builder + params: + other: + annotation: [] + type: net.corda.data.persistence.DeleteEntitiesById + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setEntityClassName: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setIds: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.persistence.DeleteEntitiesById$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.DeleteEntitiesById + clearEntityClassName: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.DeleteEntitiesById$Builder + clearIds: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.DeleteEntitiesById$Builder + getEntityClassName: + annotations: [] + default: false + type: public + returnType: String + getIds: + annotations: [] + default: false + type: public + returnType: java.util.List + hasEntityClassName: + annotations: [] + default: false + type: public + returnType: boolean + hasIds: + annotations: [] + default: false + type: public + returnType: boolean + setEntityClassName: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.DeleteEntitiesById$Builder + params: + value: + annotation: [] + type: String + setIds: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.DeleteEntitiesById$Builder + params: + value: + annotation: [] + type: java.util.List +net.corda.data.persistence.EntityRequest: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.persistence.EntityRequest + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getFlowExternalEventContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventContext + getHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getRequest: + annotations: [] + default: false + type: public + returnType: Object + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.persistence.EntityRequest$Builder + params: + other: + annotation: [] + type: net.corda.data.persistence.EntityRequest + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setFlowExternalEventContext: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.flow.event.external.ExternalEventContext + setHoldingIdentity: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setRequest: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Object + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.persistence.EntityRequest$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.EntityRequest + clearFlowExternalEventContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.EntityRequest$Builder + clearHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.EntityRequest$Builder + clearRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.EntityRequest$Builder + getFlowExternalEventContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventContext + getFlowExternalEventContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventContext$Builder + getHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getHoldingIdentityBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + getRequest: + annotations: [] + default: false + type: public + returnType: Object + hasFlowExternalEventContext: + annotations: [] + default: false + type: public + returnType: boolean + hasFlowExternalEventContextBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasHoldingIdentity: + annotations: [] + default: false + type: public + returnType: boolean + hasHoldingIdentityBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasRequest: + annotations: [] + default: false + type: public + returnType: boolean + setFlowExternalEventContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.EntityRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.event.external.ExternalEventContext + setFlowExternalEventContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.EntityRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.event.external.ExternalEventContext$Builder + setHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.EntityRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setHoldingIdentityBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.EntityRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder + setRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.EntityRequest$Builder + params: + value: + annotation: [] + type: Object +net.corda.data.persistence.EntityResponse: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.persistence.EntityResponse + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getMetadata: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getResults: + annotations: [] + default: false + type: public + returnType: java.util.List + getResumePoint: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.persistence.EntityResponse$Builder + params: + other: + annotation: [] + type: net.corda.data.persistence.EntityResponse + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setMetadata: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setResults: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + setResumePoint: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.persistence.EntityResponse$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.EntityResponse + clearMetadata: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.EntityResponse$Builder + clearResults: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.EntityResponse$Builder + clearResumePoint: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.EntityResponse$Builder + getMetadata: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList + getMetadataBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.KeyValuePairList$Builder + getResults: + annotations: [] + default: false + type: public + returnType: java.util.List + getResumePoint: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + hasMetadata: + annotations: [] + default: false + type: public + returnType: boolean + hasMetadataBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasResults: + annotations: [] + default: false + type: public + returnType: boolean + hasResumePoint: + annotations: [] + default: false + type: public + returnType: boolean + setMetadata: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.EntityResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList + setMetadataBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.EntityResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.KeyValuePairList$Builder + setResults: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.EntityResponse$Builder + params: + value: + annotation: [] + type: java.util.List + setResumePoint: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.EntityResponse$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer +net.corda.data.persistence.FindAll: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.persistence.FindAll + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getEntityClassName: + annotations: [] + default: false + type: public + returnType: String + getLimit: + annotations: [] + default: false + type: public + returnType: int + getOffset: + annotations: [] + default: false + type: public + returnType: int + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.persistence.FindAll$Builder + params: + other: + annotation: [] + type: net.corda.data.persistence.FindAll + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setEntityClassName: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setLimit: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + setOffset: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.persistence.FindAll$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.FindAll + clearEntityClassName: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.FindAll$Builder + clearLimit: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.FindAll$Builder + clearOffset: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.FindAll$Builder + getEntityClassName: + annotations: [] + default: false + type: public + returnType: String + getLimit: + annotations: [] + default: false + type: public + returnType: int + getOffset: + annotations: [] + default: false + type: public + returnType: int + hasEntityClassName: + annotations: [] + default: false + type: public + returnType: boolean + hasLimit: + annotations: [] + default: false + type: public + returnType: boolean + hasOffset: + annotations: [] + default: false + type: public + returnType: boolean + setEntityClassName: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.FindAll$Builder + params: + value: + annotation: [] + type: String + setLimit: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.FindAll$Builder + params: + value: + annotation: [] + type: int + setOffset: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.FindAll$Builder + params: + value: + annotation: [] + type: int +net.corda.data.persistence.FindEntities: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.persistence.FindEntities + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getEntityClassName: + annotations: [] + default: false + type: public + returnType: String + getIds: + annotations: [] + default: false + type: public + returnType: java.util.List + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.persistence.FindEntities$Builder + params: + other: + annotation: [] + type: net.corda.data.persistence.FindEntities + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setEntityClassName: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setIds: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.persistence.FindEntities$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.FindEntities + clearEntityClassName: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.FindEntities$Builder + clearIds: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.FindEntities$Builder + getEntityClassName: + annotations: [] + default: false + type: public + returnType: String + getIds: + annotations: [] + default: false + type: public + returnType: java.util.List + hasEntityClassName: + annotations: [] + default: false + type: public + returnType: boolean + hasIds: + annotations: [] + default: false + type: public + returnType: boolean + setEntityClassName: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.FindEntities$Builder + params: + value: + annotation: [] + type: String + setIds: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.FindEntities$Builder + params: + value: + annotation: [] + type: java.util.List +net.corda.data.persistence.FindWithNamedQuery: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.persistence.FindWithNamedQuery + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getLimit: + annotations: [] + default: false + type: public + returnType: int + getOffset: + annotations: [] + default: false + type: public + returnType: int + getParameters: + annotations: [] + default: false + type: public + returnType: "java.util.Map" + getQueryName: + annotations: [] + default: false + type: public + returnType: String + getResumePoint: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.persistence.FindWithNamedQuery$Builder + params: + other: + annotation: [] + type: net.corda.data.persistence.FindWithNamedQuery + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setLimit: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + setOffset: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + setParameters: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: "java.util.Map" + setQueryName: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setResumePoint: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.persistence.FindWithNamedQuery$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.FindWithNamedQuery + clearLimit: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.FindWithNamedQuery$Builder + clearOffset: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.FindWithNamedQuery$Builder + clearParameters: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.FindWithNamedQuery$Builder + clearQueryName: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.FindWithNamedQuery$Builder + clearResumePoint: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.FindWithNamedQuery$Builder + getLimit: + annotations: [] + default: false + type: public + returnType: int + getOffset: + annotations: [] + default: false + type: public + returnType: int + getParameters: + annotations: [] + default: false + type: public + returnType: "java.util.Map" + getQueryName: + annotations: [] + default: false + type: public + returnType: String + getResumePoint: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + hasLimit: + annotations: [] + default: false + type: public + returnType: boolean + hasOffset: + annotations: [] + default: false + type: public + returnType: boolean + hasParameters: + annotations: [] + default: false + type: public + returnType: boolean + hasQueryName: + annotations: [] + default: false + type: public + returnType: boolean + hasResumePoint: + annotations: [] + default: false + type: public + returnType: boolean + setLimit: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.FindWithNamedQuery$Builder + params: + value: + annotation: [] + type: int + setOffset: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.FindWithNamedQuery$Builder + params: + value: + annotation: [] + type: int + setParameters: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.FindWithNamedQuery$Builder + params: + value: + annotation: [] + type: "java.util.Map" + setQueryName: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.FindWithNamedQuery$Builder + params: + value: + annotation: [] + type: String + setResumePoint: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.FindWithNamedQuery$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer +net.corda.data.persistence.MergeEntities: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.persistence.MergeEntities + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getEntities: + annotations: [] + default: false + type: public + returnType: java.util.List + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.persistence.MergeEntities$Builder + params: + other: + annotation: [] + type: net.corda.data.persistence.MergeEntities + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setEntities: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.persistence.MergeEntities$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.MergeEntities + clearEntities: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.MergeEntities$Builder + getEntities: + annotations: [] + default: false + type: public + returnType: java.util.List + hasEntities: + annotations: [] + default: false + type: public + returnType: boolean + setEntities: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.MergeEntities$Builder + params: + value: + annotation: [] + type: java.util.List +net.corda.data.persistence.PersistEntities: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.persistence.PersistEntities + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getEntities: + annotations: [] + default: false + type: public + returnType: java.util.List + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.persistence.PersistEntities$Builder + params: + other: + annotation: [] + type: net.corda.data.persistence.PersistEntities + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setEntities: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.persistence.PersistEntities$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.PersistEntities + clearEntities: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.PersistEntities$Builder + getEntities: + annotations: [] + default: false + type: public + returnType: java.util.List + hasEntities: + annotations: [] + default: false + type: public + returnType: boolean + setEntities: + annotations: [] + default: false + type: public + returnType: net.corda.data.persistence.PersistEntities$Builder + params: + value: + annotation: [] + type: java.util.List +net.corda.data.scheduler.ScheduledTaskTrigger: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.scheduler.ScheduledTaskTrigger + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getName: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.scheduler.ScheduledTaskTrigger$Builder + params: + other: + annotation: [] + type: net.corda.data.scheduler.ScheduledTaskTrigger + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setName: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setTimestamp: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.scheduler.ScheduledTaskTrigger$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.scheduler.ScheduledTaskTrigger + clearName: + annotations: [] + default: false + type: public + returnType: net.corda.data.scheduler.ScheduledTaskTrigger$Builder + clearTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.scheduler.ScheduledTaskTrigger$Builder + getName: + annotations: [] + default: false + type: public + returnType: String + getTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + hasName: + annotations: [] + default: false + type: public + returnType: boolean + hasTimestamp: + annotations: [] + default: false + type: public + returnType: boolean + setName: + annotations: [] + default: false + type: public + returnType: net.corda.data.scheduler.ScheduledTaskTrigger$Builder + params: + value: + annotation: [] + type: String + setTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.scheduler.ScheduledTaskTrigger$Builder + params: + value: + annotation: [] + type: java.time.Instant +net.corda.data.sync.BloomFilter: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.sync.BloomFilter + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getFilterBits: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getFilterLength: + annotations: [] + default: false + type: public + returnType: int + getHashSeed: + annotations: [] + default: false + type: public + returnType: int + getNumberOfHashFunctions: + annotations: [] + default: false + type: public + returnType: int + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.sync.BloomFilter$Builder + params: + other: + annotation: [] + type: net.corda.data.sync.BloomFilter + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setFilterBits: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setFilterLength: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + setHashSeed: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + setNumberOfHashFunctions: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.sync.BloomFilter$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.sync.BloomFilter + clearFilterBits: + annotations: [] + default: false + type: public + returnType: net.corda.data.sync.BloomFilter$Builder + clearFilterLength: + annotations: [] + default: false + type: public + returnType: net.corda.data.sync.BloomFilter$Builder + clearHashSeed: + annotations: [] + default: false + type: public + returnType: net.corda.data.sync.BloomFilter$Builder + clearNumberOfHashFunctions: + annotations: [] + default: false + type: public + returnType: net.corda.data.sync.BloomFilter$Builder + getFilterBits: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + getFilterLength: + annotations: [] + default: false + type: public + returnType: int + getHashSeed: + annotations: [] + default: false + type: public + returnType: int + getNumberOfHashFunctions: + annotations: [] + default: false + type: public + returnType: int + hasFilterBits: + annotations: [] + default: false + type: public + returnType: boolean + hasFilterLength: + annotations: [] + default: false + type: public + returnType: boolean + hasHashSeed: + annotations: [] + default: false + type: public + returnType: boolean + hasNumberOfHashFunctions: + annotations: [] + default: false + type: public + returnType: boolean + setFilterBits: + annotations: [] + default: false + type: public + returnType: net.corda.data.sync.BloomFilter$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer + setFilterLength: + annotations: [] + default: false + type: public + returnType: net.corda.data.sync.BloomFilter$Builder + params: + value: + annotation: [] + type: int + setHashSeed: + annotations: [] + default: false + type: public + returnType: net.corda.data.sync.BloomFilter$Builder + params: + value: + annotation: [] + type: int + setNumberOfHashFunctions: + annotations: [] + default: false + type: public + returnType: net.corda.data.sync.BloomFilter$Builder + params: + value: + annotation: [] + type: int +net.corda.data.test.EvolvedMessage: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.test.EvolvedMessage + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getExtraField: + annotations: [] + default: false + type: public + returnType: String + getFlags: + annotations: [] + default: false + type: public + returnType: int + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.test.EvolvedMessage$Builder + params: + other: + annotation: [] + type: net.corda.data.test.EvolvedMessage + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setExtraField: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setFlags: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.test.EvolvedMessage$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.test.EvolvedMessage + clearExtraField: + annotations: [] + default: false + type: public + returnType: net.corda.data.test.EvolvedMessage$Builder + clearFlags: + annotations: [] + default: false + type: public + returnType: net.corda.data.test.EvolvedMessage$Builder + getExtraField: + annotations: [] + default: false + type: public + returnType: String + getFlags: + annotations: [] + default: false + type: public + returnType: int + hasExtraField: + annotations: [] + default: false + type: public + returnType: boolean + hasFlags: + annotations: [] + default: false + type: public + returnType: boolean + setExtraField: + annotations: [] + default: false + type: public + returnType: net.corda.data.test.EvolvedMessage$Builder + params: + value: + annotation: [] + type: String + setFlags: + annotations: [] + default: false + type: public + returnType: net.corda.data.test.EvolvedMessage$Builder + params: + value: + annotation: [] + type: int +net.corda.data.uniqueness.UniquenessCheckRequestAvro: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.uniqueness.UniquenessCheckRequestAvro + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getFlowExternalEventContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventContext + getHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getInputStates: + annotations: [] + default: false + type: public + returnType: java.util.List + getNumOutputStates: + annotations: [] + default: false + type: public + returnType: int + getOriginatorX500Name: + annotations: [] + default: false + type: public + returnType: String + getReferenceStates: + annotations: [] + default: false + type: public + returnType: java.util.List + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getTimeWindowLowerBound: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getTimeWindowUpperBound: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getTxId: + annotations: [] + default: false + type: public + returnType: String + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.uniqueness.UniquenessCheckRequestAvro$Builder + params: + other: + annotation: [] + type: net.corda.data.uniqueness.UniquenessCheckRequestAvro + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setFlowExternalEventContext: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.flow.event.external.ExternalEventContext + setHoldingIdentity: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setInputStates: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + setNumOutputStates: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + setOriginatorX500Name: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setReferenceStates: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + setTimeWindowLowerBound: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + setTimeWindowUpperBound: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + setTxId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.uniqueness.UniquenessCheckRequestAvro$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckRequestAvro + clearFlowExternalEventContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckRequestAvro$Builder + clearHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckRequestAvro$Builder + clearInputStates: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckRequestAvro$Builder + clearNumOutputStates: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckRequestAvro$Builder + clearOriginatorX500Name: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckRequestAvro$Builder + clearReferenceStates: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckRequestAvro$Builder + clearTimeWindowLowerBound: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckRequestAvro$Builder + clearTimeWindowUpperBound: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckRequestAvro$Builder + clearTxId: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckRequestAvro$Builder + getFlowExternalEventContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventContext + getFlowExternalEventContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventContext$Builder + getHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getHoldingIdentityBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + getInputStates: + annotations: [] + default: false + type: public + returnType: java.util.List + getNumOutputStates: + annotations: [] + default: false + type: public + returnType: int + getOriginatorX500Name: + annotations: [] + default: false + type: public + returnType: String + getReferenceStates: + annotations: [] + default: false + type: public + returnType: java.util.List + getTimeWindowLowerBound: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getTimeWindowUpperBound: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getTxId: + annotations: [] + default: false + type: public + returnType: String + hasFlowExternalEventContext: + annotations: [] + default: false + type: public + returnType: boolean + hasFlowExternalEventContextBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasHoldingIdentity: + annotations: [] + default: false + type: public + returnType: boolean + hasHoldingIdentityBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasInputStates: + annotations: [] + default: false + type: public + returnType: boolean + hasNumOutputStates: + annotations: [] + default: false + type: public + returnType: boolean + hasOriginatorX500Name: + annotations: [] + default: false + type: public + returnType: boolean + hasReferenceStates: + annotations: [] + default: false + type: public + returnType: boolean + hasTimeWindowLowerBound: + annotations: [] + default: false + type: public + returnType: boolean + hasTimeWindowUpperBound: + annotations: [] + default: false + type: public + returnType: boolean + hasTxId: + annotations: [] + default: false + type: public + returnType: boolean + setFlowExternalEventContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckRequestAvro$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.event.external.ExternalEventContext + setFlowExternalEventContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckRequestAvro$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.event.external.ExternalEventContext$Builder + setHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckRequestAvro$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setHoldingIdentityBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckRequestAvro$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder + setInputStates: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckRequestAvro$Builder + params: + value: + annotation: [] + type: java.util.List + setNumOutputStates: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckRequestAvro$Builder + params: + value: + annotation: [] + type: int + setOriginatorX500Name: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckRequestAvro$Builder + params: + value: + annotation: [] + type: String + setReferenceStates: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckRequestAvro$Builder + params: + value: + annotation: [] + type: java.util.List + setTimeWindowLowerBound: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckRequestAvro$Builder + params: + value: + annotation: [] + type: java.time.Instant + setTimeWindowUpperBound: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckRequestAvro$Builder + params: + value: + annotation: [] + type: java.time.Instant + setTxId: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckRequestAvro$Builder + params: + value: + annotation: [] + type: String +net.corda.data.uniqueness.UniquenessCheckResponseAvro: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.uniqueness.UniquenessCheckResponseAvro + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getResult: + annotations: [] + default: false + type: public + returnType: Object + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getTxId: + annotations: [] + default: false + type: public + returnType: String + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.uniqueness.UniquenessCheckResponseAvro$Builder + params: + other: + annotation: [] + type: net.corda.data.uniqueness.UniquenessCheckResponseAvro + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setResult: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Object + setTxId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.uniqueness.UniquenessCheckResponseAvro$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckResponseAvro + clearResult: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckResponseAvro$Builder + clearTxId: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckResponseAvro$Builder + getResult: + annotations: [] + default: false + type: public + returnType: Object + getTxId: + annotations: [] + default: false + type: public + returnType: String + hasResult: + annotations: [] + default: false + type: public + returnType: boolean + hasTxId: + annotations: [] + default: false + type: public + returnType: boolean + setResult: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckResponseAvro$Builder + params: + value: + annotation: [] + type: Object + setTxId: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckResponseAvro$Builder + params: + value: + annotation: [] + type: String +net.corda.data.uniqueness.UniquenessCheckResultInputStateConflictAvro: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.uniqueness.UniquenessCheckResultInputStateConflictAvro + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConflictingStates: + annotations: [] + default: false + type: public + returnType: java.util.List + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.uniqueness.UniquenessCheckResultInputStateConflictAvro$Builder + params: + other: + annotation: [] + type: net.corda.data.uniqueness.UniquenessCheckResultInputStateConflictAvro + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setConflictingStates: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.uniqueness.UniquenessCheckResultInputStateConflictAvro$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckResultInputStateConflictAvro + clearConflictingStates: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckResultInputStateConflictAvro$Builder + getConflictingStates: + annotations: [] + default: false + type: public + returnType: java.util.List + hasConflictingStates: + annotations: [] + default: false + type: public + returnType: boolean + setConflictingStates: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckResultInputStateConflictAvro$Builder + params: + value: + annotation: [] + type: java.util.List +net.corda.data.uniqueness.UniquenessCheckResultInputStateUnknownAvro: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.uniqueness.UniquenessCheckResultInputStateUnknownAvro + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getUnknownStates: + annotations: [] + default: false + type: public + returnType: java.util.List + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.uniqueness.UniquenessCheckResultInputStateUnknownAvro$Builder + params: + other: + annotation: [] + type: net.corda.data.uniqueness.UniquenessCheckResultInputStateUnknownAvro + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setUnknownStates: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.uniqueness.UniquenessCheckResultInputStateUnknownAvro$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckResultInputStateUnknownAvro + clearUnknownStates: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckResultInputStateUnknownAvro$Builder + getUnknownStates: + annotations: [] + default: false + type: public + returnType: java.util.List + hasUnknownStates: + annotations: [] + default: false + type: public + returnType: boolean + setUnknownStates: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckResultInputStateUnknownAvro$Builder + params: + value: + annotation: [] + type: java.util.List +net.corda.data.uniqueness.UniquenessCheckResultMalformedRequestAvro: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.uniqueness.UniquenessCheckResultMalformedRequestAvro + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getErrorText: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.uniqueness.UniquenessCheckResultMalformedRequestAvro$Builder + params: + other: + annotation: [] + type: net.corda.data.uniqueness.UniquenessCheckResultMalformedRequestAvro + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setErrorText: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.uniqueness.UniquenessCheckResultMalformedRequestAvro$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckResultMalformedRequestAvro + clearErrorText: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckResultMalformedRequestAvro$Builder + getErrorText: + annotations: [] + default: false + type: public + returnType: String + hasErrorText: + annotations: [] + default: false + type: public + returnType: boolean + setErrorText: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckResultMalformedRequestAvro$Builder + params: + value: + annotation: [] + type: String +net.corda.data.uniqueness.UniquenessCheckResultReferenceStateConflictAvro: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.uniqueness.UniquenessCheckResultReferenceStateConflictAvro + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConflictingStates: + annotations: [] + default: false + type: public + returnType: java.util.List + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.uniqueness.UniquenessCheckResultReferenceStateConflictAvro$Builder + params: + other: + annotation: [] + type: net.corda.data.uniqueness.UniquenessCheckResultReferenceStateConflictAvro + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setConflictingStates: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.uniqueness.UniquenessCheckResultReferenceStateConflictAvro$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckResultReferenceStateConflictAvro + clearConflictingStates: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckResultReferenceStateConflictAvro$Builder + getConflictingStates: + annotations: [] + default: false + type: public + returnType: java.util.List + hasConflictingStates: + annotations: [] + default: false + type: public + returnType: boolean + setConflictingStates: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckResultReferenceStateConflictAvro$Builder + params: + value: + annotation: [] + type: java.util.List +net.corda.data.uniqueness.UniquenessCheckResultReferenceStateUnknownAvro: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.uniqueness.UniquenessCheckResultReferenceStateUnknownAvro + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getUnknownStates: + annotations: [] + default: false + type: public + returnType: java.util.List + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.uniqueness.UniquenessCheckResultReferenceStateUnknownAvro$Builder + params: + other: + annotation: [] + type: net.corda.data.uniqueness.UniquenessCheckResultReferenceStateUnknownAvro + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setUnknownStates: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.uniqueness.UniquenessCheckResultReferenceStateUnknownAvro$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckResultReferenceStateUnknownAvro + clearUnknownStates: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckResultReferenceStateUnknownAvro$Builder + getUnknownStates: + annotations: [] + default: false + type: public + returnType: java.util.List + hasUnknownStates: + annotations: [] + default: false + type: public + returnType: boolean + setUnknownStates: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckResultReferenceStateUnknownAvro$Builder + params: + value: + annotation: [] + type: java.util.List +net.corda.data.uniqueness.UniquenessCheckResultSuccessAvro: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.uniqueness.UniquenessCheckResultSuccessAvro + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getCommitTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.uniqueness.UniquenessCheckResultSuccessAvro$Builder + params: + other: + annotation: [] + type: net.corda.data.uniqueness.UniquenessCheckResultSuccessAvro + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setCommitTimestamp: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.uniqueness.UniquenessCheckResultSuccessAvro$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckResultSuccessAvro + clearCommitTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckResultSuccessAvro$Builder + getCommitTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + hasCommitTimestamp: + annotations: [] + default: false + type: public + returnType: boolean + setCommitTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckResultSuccessAvro$Builder + params: + value: + annotation: [] + type: java.time.Instant +net.corda.data.uniqueness.UniquenessCheckResultTimeWindowOutOfBoundsAvro: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.uniqueness.UniquenessCheckResultTimeWindowOutOfBoundsAvro + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getEvaluationTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getTimeWindowLowerBound: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getTimeWindowUpperBound: + annotations: [] + default: false + type: public + returnType: java.time.Instant + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.uniqueness.UniquenessCheckResultTimeWindowOutOfBoundsAvro$Builder + params: + other: + annotation: [] + type: net.corda.data.uniqueness.UniquenessCheckResultTimeWindowOutOfBoundsAvro + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setEvaluationTimestamp: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + setTimeWindowLowerBound: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + setTimeWindowUpperBound: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.uniqueness.UniquenessCheckResultTimeWindowOutOfBoundsAvro$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckResultTimeWindowOutOfBoundsAvro + clearEvaluationTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckResultTimeWindowOutOfBoundsAvro$Builder + clearTimeWindowLowerBound: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckResultTimeWindowOutOfBoundsAvro$Builder + clearTimeWindowUpperBound: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckResultTimeWindowOutOfBoundsAvro$Builder + getEvaluationTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getTimeWindowLowerBound: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getTimeWindowUpperBound: + annotations: [] + default: false + type: public + returnType: java.time.Instant + hasEvaluationTimestamp: + annotations: [] + default: false + type: public + returnType: boolean + hasTimeWindowLowerBound: + annotations: [] + default: false + type: public + returnType: boolean + hasTimeWindowUpperBound: + annotations: [] + default: false + type: public + returnType: boolean + setEvaluationTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckResultTimeWindowOutOfBoundsAvro$Builder + params: + value: + annotation: [] + type: java.time.Instant + setTimeWindowLowerBound: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckResultTimeWindowOutOfBoundsAvro$Builder + params: + value: + annotation: [] + type: java.time.Instant + setTimeWindowUpperBound: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckResultTimeWindowOutOfBoundsAvro$Builder + params: + value: + annotation: [] + type: java.time.Instant +net.corda.data.uniqueness.UniquenessCheckResultUnhandledExceptionAvro: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.uniqueness.UniquenessCheckResultUnhandledExceptionAvro + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getException: + annotations: [] + default: false + type: public + returnType: net.corda.data.ExceptionEnvelope + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.uniqueness.UniquenessCheckResultUnhandledExceptionAvro$Builder + params: + other: + annotation: [] + type: net.corda.data.uniqueness.UniquenessCheckResultUnhandledExceptionAvro + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setException: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.ExceptionEnvelope + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.uniqueness.UniquenessCheckResultUnhandledExceptionAvro$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckResultUnhandledExceptionAvro + clearException: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckResultUnhandledExceptionAvro$Builder + getException: + annotations: [] + default: false + type: public + returnType: net.corda.data.ExceptionEnvelope + getExceptionBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ExceptionEnvelope$Builder + hasException: + annotations: [] + default: false + type: public + returnType: boolean + hasExceptionBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setException: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckResultUnhandledExceptionAvro$Builder + params: + value: + annotation: [] + type: net.corda.data.ExceptionEnvelope + setExceptionBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.uniqueness.UniquenessCheckResultUnhandledExceptionAvro$Builder + params: + value: + annotation: [] + type: net.corda.data.ExceptionEnvelope$Builder +net.corda.data.virtualnode.VirtualNodeAsynchronousRequest: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.virtualnode.VirtualNodeAsynchronousRequest + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getRequest: + annotations: [] + default: false + type: public + returnType: Object + getRequestId: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.virtualnode.VirtualNodeAsynchronousRequest$Builder + params: + other: + annotation: [] + type: net.corda.data.virtualnode.VirtualNodeAsynchronousRequest + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setRequest: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Object + setRequestId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setTimestamp: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.virtualnode.VirtualNodeAsynchronousRequest$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeAsynchronousRequest + clearRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeAsynchronousRequest$Builder + clearRequestId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeAsynchronousRequest$Builder + clearTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeAsynchronousRequest$Builder + getRequest: + annotations: [] + default: false + type: public + returnType: Object + getRequestId: + annotations: [] + default: false + type: public + returnType: String + getTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + hasRequest: + annotations: [] + default: false + type: public + returnType: boolean + hasRequestId: + annotations: [] + default: false + type: public + returnType: boolean + hasTimestamp: + annotations: [] + default: false + type: public + returnType: boolean + setRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeAsynchronousRequest$Builder + params: + value: + annotation: [] + type: Object + setRequestId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeAsynchronousRequest$Builder + params: + value: + annotation: [] + type: String + setTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeAsynchronousRequest$Builder + params: + value: + annotation: [] + type: java.time.Instant +net.corda.data.virtualnode.VirtualNodeCreateRequest: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.virtualnode.VirtualNodeCreateRequest + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getCpiFileChecksum: + annotations: [] + default: false + type: public + returnType: String + getCryptoDdlConnection: + annotations: [] + default: false + type: public + returnType: String + getCryptoDmlConnection: + annotations: [] + default: false + type: public + returnType: String + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getHoldingId: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getUniquenessDdlConnection: + annotations: [] + default: false + type: public + returnType: String + getUniquenessDmlConnection: + annotations: [] + default: false + type: public + returnType: String + getUpdateActor: + annotations: [] + default: false + type: public + returnType: String + getVaultDdlConnection: + annotations: [] + default: false + type: public + returnType: String + getVaultDmlConnection: + annotations: [] + default: false + type: public + returnType: String + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.virtualnode.VirtualNodeCreateRequest$Builder + params: + other: + annotation: [] + type: net.corda.data.virtualnode.VirtualNodeCreateRequest + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setCpiFileChecksum: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setCryptoDdlConnection: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setCryptoDmlConnection: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setHoldingId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setUniquenessDdlConnection: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setUniquenessDmlConnection: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setUpdateActor: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setVaultDdlConnection: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setVaultDmlConnection: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.virtualnode.VirtualNodeCreateRequest$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateRequest + clearCpiFileChecksum: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateRequest$Builder + clearCryptoDdlConnection: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateRequest$Builder + clearCryptoDmlConnection: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateRequest$Builder + clearHoldingId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateRequest$Builder + clearUniquenessDdlConnection: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateRequest$Builder + clearUniquenessDmlConnection: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateRequest$Builder + clearUpdateActor: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateRequest$Builder + clearVaultDdlConnection: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateRequest$Builder + clearVaultDmlConnection: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateRequest$Builder + getCpiFileChecksum: + annotations: [] + default: false + type: public + returnType: String + getCryptoDdlConnection: + annotations: [] + default: false + type: public + returnType: String + getCryptoDmlConnection: + annotations: [] + default: false + type: public + returnType: String + getHoldingId: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getHoldingIdBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + getUniquenessDdlConnection: + annotations: [] + default: false + type: public + returnType: String + getUniquenessDmlConnection: + annotations: [] + default: false + type: public + returnType: String + getUpdateActor: + annotations: [] + default: false + type: public + returnType: String + getVaultDdlConnection: + annotations: [] + default: false + type: public + returnType: String + getVaultDmlConnection: + annotations: [] + default: false + type: public + returnType: String + hasCpiFileChecksum: + annotations: [] + default: false + type: public + returnType: boolean + hasCryptoDdlConnection: + annotations: [] + default: false + type: public + returnType: boolean + hasCryptoDmlConnection: + annotations: [] + default: false + type: public + returnType: boolean + hasHoldingId: + annotations: [] + default: false + type: public + returnType: boolean + hasHoldingIdBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasUniquenessDdlConnection: + annotations: [] + default: false + type: public + returnType: boolean + hasUniquenessDmlConnection: + annotations: [] + default: false + type: public + returnType: boolean + hasUpdateActor: + annotations: [] + default: false + type: public + returnType: boolean + hasVaultDdlConnection: + annotations: [] + default: false + type: public + returnType: boolean + hasVaultDmlConnection: + annotations: [] + default: false + type: public + returnType: boolean + setCpiFileChecksum: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateRequest$Builder + params: + value: + annotation: [] + type: String + setCryptoDdlConnection: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateRequest$Builder + params: + value: + annotation: [] + type: String + setCryptoDmlConnection: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateRequest$Builder + params: + value: + annotation: [] + type: String + setHoldingId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setHoldingIdBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder + setUniquenessDdlConnection: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateRequest$Builder + params: + value: + annotation: [] + type: String + setUniquenessDmlConnection: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateRequest$Builder + params: + value: + annotation: [] + type: String + setUpdateActor: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateRequest$Builder + params: + value: + annotation: [] + type: String + setVaultDdlConnection: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateRequest$Builder + params: + value: + annotation: [] + type: String + setVaultDmlConnection: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateRequest$Builder + params: + value: + annotation: [] + type: String +net.corda.data.virtualnode.VirtualNodeCreateResponse: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getCpiFileChecksum: + annotations: [] + default: false + type: public + returnType: String + getCpiIdentifier: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpiIdentifier + getCryptoDdlConnectionId: + annotations: [] + default: false + type: public + returnType: String + getCryptoDmlConnectionId: + annotations: [] + default: false + type: public + returnType: String + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getFlowOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationalState + getFlowP2pOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationalState + getFlowStartOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationalState + getHoldingIdentifierHash: + annotations: [] + default: false + type: public + returnType: String + getHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getHsmConnectionId: + annotations: [] + default: false + type: public + returnType: String + getMgmGroupId: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getUniquenessDdlConnectionId: + annotations: [] + default: false + type: public + returnType: String + getUniquenessDmlConnectionId: + annotations: [] + default: false + type: public + returnType: String + getVaultDbOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationalState + getVaultDdlConnectionId: + annotations: [] + default: false + type: public + returnType: String + getVaultDmlConnectionId: + annotations: [] + default: false + type: public + returnType: String + getX500Name: + annotations: [] + default: false + type: public + returnType: String + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder + params: + other: + annotation: [] + type: net.corda.data.virtualnode.VirtualNodeCreateResponse + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setCpiFileChecksum: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setCpiIdentifier: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.packaging.CpiIdentifier + setCryptoDdlConnectionId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setCryptoDmlConnectionId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setFlowOperationalStatus: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.virtualnode.VirtualNodeOperationalState + setFlowP2pOperationalStatus: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.virtualnode.VirtualNodeOperationalState + setFlowStartOperationalStatus: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.virtualnode.VirtualNodeOperationalState + setHoldingIdentifierHash: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setHoldingIdentity: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setHsmConnectionId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setMgmGroupId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setUniquenessDdlConnectionId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setUniquenessDmlConnectionId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setVaultDbOperationalStatus: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.virtualnode.VirtualNodeOperationalState + setVaultDdlConnectionId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setVaultDmlConnectionId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setX500Name: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse + clearCpiFileChecksum: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder + clearCpiIdentifier: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder + clearCryptoDdlConnectionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder + clearCryptoDmlConnectionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder + clearFlowOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder + clearFlowP2pOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder + clearFlowStartOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder + clearHoldingIdentifierHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder + clearHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder + clearHsmConnectionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder + clearMgmGroupId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder + clearUniquenessDdlConnectionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder + clearUniquenessDmlConnectionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder + clearVaultDbOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder + clearVaultDdlConnectionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder + clearVaultDmlConnectionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder + clearX500Name: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder + getCpiFileChecksum: + annotations: [] + default: false + type: public + returnType: String + getCpiIdentifier: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpiIdentifier + getCpiIdentifierBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpiIdentifier$Builder + getCryptoDdlConnectionId: + annotations: [] + default: false + type: public + returnType: String + getCryptoDmlConnectionId: + annotations: [] + default: false + type: public + returnType: String + getFlowOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationalState + getFlowP2pOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationalState + getFlowStartOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationalState + getHoldingIdentifierHash: + annotations: [] + default: false + type: public + returnType: String + getHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getHoldingIdentityBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + getHsmConnectionId: + annotations: [] + default: false + type: public + returnType: String + getMgmGroupId: + annotations: [] + default: false + type: public + returnType: String + getUniquenessDdlConnectionId: + annotations: [] + default: false + type: public + returnType: String + getUniquenessDmlConnectionId: + annotations: [] + default: false + type: public + returnType: String + getVaultDbOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationalState + getVaultDdlConnectionId: + annotations: [] + default: false + type: public + returnType: String + getVaultDmlConnectionId: + annotations: [] + default: false + type: public + returnType: String + getX500Name: + annotations: [] + default: false + type: public + returnType: String + hasCpiFileChecksum: + annotations: [] + default: false + type: public + returnType: boolean + hasCpiIdentifier: + annotations: [] + default: false + type: public + returnType: boolean + hasCpiIdentifierBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasCryptoDdlConnectionId: + annotations: [] + default: false + type: public + returnType: boolean + hasCryptoDmlConnectionId: + annotations: [] + default: false + type: public + returnType: boolean + hasFlowOperationalStatus: + annotations: [] + default: false + type: public + returnType: boolean + hasFlowP2pOperationalStatus: + annotations: [] + default: false + type: public + returnType: boolean + hasFlowStartOperationalStatus: + annotations: [] + default: false + type: public + returnType: boolean + hasHoldingIdentifierHash: + annotations: [] + default: false + type: public + returnType: boolean + hasHoldingIdentity: + annotations: [] + default: false + type: public + returnType: boolean + hasHoldingIdentityBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasHsmConnectionId: + annotations: [] + default: false + type: public + returnType: boolean + hasMgmGroupId: + annotations: [] + default: false + type: public + returnType: boolean + hasUniquenessDdlConnectionId: + annotations: [] + default: false + type: public + returnType: boolean + hasUniquenessDmlConnectionId: + annotations: [] + default: false + type: public + returnType: boolean + hasVaultDbOperationalStatus: + annotations: [] + default: false + type: public + returnType: boolean + hasVaultDdlConnectionId: + annotations: [] + default: false + type: public + returnType: boolean + hasVaultDmlConnectionId: + annotations: [] + default: false + type: public + returnType: boolean + hasX500Name: + annotations: [] + default: false + type: public + returnType: boolean + setCpiFileChecksum: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder + params: + value: + annotation: [] + type: String + setCpiIdentifier: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.packaging.CpiIdentifier + setCpiIdentifierBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.packaging.CpiIdentifier$Builder + setCryptoDdlConnectionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder + params: + value: + annotation: [] + type: String + setCryptoDmlConnectionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder + params: + value: + annotation: [] + type: String + setFlowOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.virtualnode.VirtualNodeOperationalState + setFlowP2pOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.virtualnode.VirtualNodeOperationalState + setFlowStartOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.virtualnode.VirtualNodeOperationalState + setHoldingIdentifierHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder + params: + value: + annotation: [] + type: String + setHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setHoldingIdentityBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder + setHsmConnectionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder + params: + value: + annotation: [] + type: String + setMgmGroupId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder + params: + value: + annotation: [] + type: String + setUniquenessDdlConnectionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder + params: + value: + annotation: [] + type: String + setUniquenessDmlConnectionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder + params: + value: + annotation: [] + type: String + setVaultDbOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.virtualnode.VirtualNodeOperationalState + setVaultDdlConnectionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder + params: + value: + annotation: [] + type: String + setVaultDmlConnectionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder + params: + value: + annotation: [] + type: String + setX500Name: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder + params: + value: + annotation: [] + type: String +net.corda.data.virtualnode.VirtualNodeDBResetRequest: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.virtualnode.VirtualNodeDBResetRequest + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getHoldingIdentityShortHashes: + annotations: [] + default: false + type: public + returnType: java.util.List + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getUpdateActor: + annotations: [] + default: false + type: public + returnType: String + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.virtualnode.VirtualNodeDBResetRequest$Builder + params: + other: + annotation: [] + type: net.corda.data.virtualnode.VirtualNodeDBResetRequest + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setHoldingIdentityShortHashes: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + setUpdateActor: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.virtualnode.VirtualNodeDBResetRequest$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeDBResetRequest + clearHoldingIdentityShortHashes: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeDBResetRequest$Builder + clearUpdateActor: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeDBResetRequest$Builder + getHoldingIdentityShortHashes: + annotations: [] + default: false + type: public + returnType: java.util.List + getUpdateActor: + annotations: [] + default: false + type: public + returnType: String + hasHoldingIdentityShortHashes: + annotations: [] + default: false + type: public + returnType: boolean + hasUpdateActor: + annotations: [] + default: false + type: public + returnType: boolean + setHoldingIdentityShortHashes: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeDBResetRequest$Builder + params: + value: + annotation: [] + type: java.util.List + setUpdateActor: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeDBResetRequest$Builder + params: + value: + annotation: [] + type: String +net.corda.data.virtualnode.VirtualNodeDBResetResponse: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.virtualnode.VirtualNodeDBResetResponse + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getHoldingIdentityShortHashes: + annotations: [] + default: false + type: public + returnType: java.util.List + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.virtualnode.VirtualNodeDBResetResponse$Builder + params: + other: + annotation: [] + type: net.corda.data.virtualnode.VirtualNodeDBResetResponse + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setHoldingIdentityShortHashes: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.virtualnode.VirtualNodeDBResetResponse$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeDBResetResponse + clearHoldingIdentityShortHashes: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeDBResetResponse$Builder + getHoldingIdentityShortHashes: + annotations: [] + default: false + type: public + returnType: java.util.List + hasHoldingIdentityShortHashes: + annotations: [] + default: false + type: public + returnType: boolean + setHoldingIdentityShortHashes: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeDBResetResponse$Builder + params: + value: + annotation: [] + type: java.util.List +net.corda.data.virtualnode.VirtualNodeInfo: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.virtualnode.VirtualNodeInfo + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getCpiIdentifier: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpiIdentifier + getCryptoDdlConnectionId: + annotations: [] + default: false + type: public + returnType: String + getCryptoDmlConnectionId: + annotations: [] + default: false + type: public + returnType: String + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getExternalMessagingRouteConfig: + annotations: [] + default: false + type: public + returnType: String + getFlowOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationalState + getFlowP2pOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationalState + getFlowStartOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationalState + getHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getHsmConnectionId: + annotations: [] + default: false + type: public + returnType: String + getOperationInProgress: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getUniquenessDdlConnectionId: + annotations: [] + default: false + type: public + returnType: String + getUniquenessDmlConnectionId: + annotations: [] + default: false + type: public + returnType: String + getVaultDbOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationalState + getVaultDdlConnectionId: + annotations: [] + default: false + type: public + returnType: String + getVaultDmlConnectionId: + annotations: [] + default: false + type: public + returnType: String + getVersion: + annotations: [] + default: false + type: public + returnType: int + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder + params: + other: + annotation: [] + type: net.corda.data.virtualnode.VirtualNodeInfo + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setCpiIdentifier: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.packaging.CpiIdentifier + setCryptoDdlConnectionId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setCryptoDmlConnectionId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setExternalMessagingRouteConfig: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setFlowOperationalStatus: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.virtualnode.VirtualNodeOperationalState + setFlowP2pOperationalStatus: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.virtualnode.VirtualNodeOperationalState + setFlowStartOperationalStatus: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.virtualnode.VirtualNodeOperationalState + setHoldingIdentity: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setHsmConnectionId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setOperationInProgress: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setTimestamp: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + setUniquenessDdlConnectionId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setUniquenessDmlConnectionId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setVaultDbOperationalStatus: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.virtualnode.VirtualNodeOperationalState + setVaultDdlConnectionId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setVaultDmlConnectionId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setVersion: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.virtualnode.VirtualNodeInfo$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeInfo + clearCpiIdentifier: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder + clearCryptoDdlConnectionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder + clearCryptoDmlConnectionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder + clearExternalMessagingRouteConfig: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder + clearFlowOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder + clearFlowP2pOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder + clearFlowStartOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder + clearHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder + clearHsmConnectionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder + clearOperationInProgress: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder + clearTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder + clearUniquenessDdlConnectionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder + clearUniquenessDmlConnectionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder + clearVaultDbOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder + clearVaultDdlConnectionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder + clearVaultDmlConnectionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder + clearVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder + getCpiIdentifier: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpiIdentifier + getCpiIdentifierBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpiIdentifier$Builder + getCryptoDdlConnectionId: + annotations: [] + default: false + type: public + returnType: String + getCryptoDmlConnectionId: + annotations: [] + default: false + type: public + returnType: String + getExternalMessagingRouteConfig: + annotations: [] + default: false + type: public + returnType: String + getFlowOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationalState + getFlowP2pOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationalState + getFlowStartOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationalState + getHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getHoldingIdentityBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + getHsmConnectionId: + annotations: [] + default: false + type: public + returnType: String + getOperationInProgress: + annotations: [] + default: false + type: public + returnType: String + getTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getUniquenessDdlConnectionId: + annotations: [] + default: false + type: public + returnType: String + getUniquenessDmlConnectionId: + annotations: [] + default: false + type: public + returnType: String + getVaultDbOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationalState + getVaultDdlConnectionId: + annotations: [] + default: false + type: public + returnType: String + getVaultDmlConnectionId: + annotations: [] + default: false + type: public + returnType: String + getVersion: + annotations: [] + default: false + type: public + returnType: int + hasCpiIdentifier: + annotations: [] + default: false + type: public + returnType: boolean + hasCpiIdentifierBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasCryptoDdlConnectionId: + annotations: [] + default: false + type: public + returnType: boolean + hasCryptoDmlConnectionId: + annotations: [] + default: false + type: public + returnType: boolean + hasExternalMessagingRouteConfig: + annotations: [] + default: false + type: public + returnType: boolean + hasFlowOperationalStatus: + annotations: [] + default: false + type: public + returnType: boolean + hasFlowP2pOperationalStatus: + annotations: [] + default: false + type: public + returnType: boolean + hasFlowStartOperationalStatus: + annotations: [] + default: false + type: public + returnType: boolean + hasHoldingIdentity: + annotations: [] + default: false + type: public + returnType: boolean + hasHoldingIdentityBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasHsmConnectionId: + annotations: [] + default: false + type: public + returnType: boolean + hasOperationInProgress: + annotations: [] + default: false + type: public + returnType: boolean + hasTimestamp: + annotations: [] + default: false + type: public + returnType: boolean + hasUniquenessDdlConnectionId: + annotations: [] + default: false + type: public + returnType: boolean + hasUniquenessDmlConnectionId: + annotations: [] + default: false + type: public + returnType: boolean + hasVaultDbOperationalStatus: + annotations: [] + default: false + type: public + returnType: boolean + hasVaultDdlConnectionId: + annotations: [] + default: false + type: public + returnType: boolean + hasVaultDmlConnectionId: + annotations: [] + default: false + type: public + returnType: boolean + hasVersion: + annotations: [] + default: false + type: public + returnType: boolean + setCpiIdentifier: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder + params: + value: + annotation: [] + type: net.corda.data.packaging.CpiIdentifier + setCpiIdentifierBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder + params: + value: + annotation: [] + type: net.corda.data.packaging.CpiIdentifier$Builder + setCryptoDdlConnectionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder + params: + value: + annotation: [] + type: String + setCryptoDmlConnectionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder + params: + value: + annotation: [] + type: String + setExternalMessagingRouteConfig: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder + params: + value: + annotation: [] + type: String + setFlowOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder + params: + value: + annotation: [] + type: net.corda.data.virtualnode.VirtualNodeOperationalState + setFlowP2pOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder + params: + value: + annotation: [] + type: net.corda.data.virtualnode.VirtualNodeOperationalState + setFlowStartOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder + params: + value: + annotation: [] + type: net.corda.data.virtualnode.VirtualNodeOperationalState + setHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setHoldingIdentityBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder + setHsmConnectionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder + params: + value: + annotation: [] + type: String + setOperationInProgress: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder + params: + value: + annotation: [] + type: String + setTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder + params: + value: + annotation: [] + type: java.time.Instant + setUniquenessDdlConnectionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder + params: + value: + annotation: [] + type: String + setUniquenessDmlConnectionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder + params: + value: + annotation: [] + type: String + setVaultDbOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder + params: + value: + annotation: [] + type: net.corda.data.virtualnode.VirtualNodeOperationalState + setVaultDdlConnectionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder + params: + value: + annotation: [] + type: String + setVaultDmlConnectionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder + params: + value: + annotation: [] + type: String + setVersion: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder + params: + value: + annotation: [] + type: int +net.corda.data.virtualnode.VirtualNodeManagementRequest: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.virtualnode.VirtualNodeManagementRequest + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getRequest: + annotations: [] + default: false + type: public + returnType: Object + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.virtualnode.VirtualNodeManagementRequest$Builder + params: + other: + annotation: [] + type: net.corda.data.virtualnode.VirtualNodeManagementRequest + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setRequest: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Object + setTimestamp: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.virtualnode.VirtualNodeManagementRequest$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeManagementRequest + clearRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeManagementRequest$Builder + clearTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeManagementRequest$Builder + getRequest: + annotations: [] + default: false + type: public + returnType: Object + getTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + hasRequest: + annotations: [] + default: false + type: public + returnType: boolean + hasTimestamp: + annotations: [] + default: false + type: public + returnType: boolean + setRequest: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeManagementRequest$Builder + params: + value: + annotation: [] + type: Object + setTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeManagementRequest$Builder + params: + value: + annotation: [] + type: java.time.Instant +net.corda.data.virtualnode.VirtualNodeManagementResponse: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.virtualnode.VirtualNodeManagementResponse + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getResponseType: + annotations: [] + default: false + type: public + returnType: Object + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.virtualnode.VirtualNodeManagementResponse$Builder + params: + other: + annotation: [] + type: net.corda.data.virtualnode.VirtualNodeManagementResponse + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setResponseType: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: Object + setTimestamp: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.virtualnode.VirtualNodeManagementResponse$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeManagementResponse + clearResponseType: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeManagementResponse$Builder + clearTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeManagementResponse$Builder + getResponseType: + annotations: [] + default: false + type: public + returnType: Object + getTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + hasResponseType: + annotations: [] + default: false + type: public + returnType: boolean + hasTimestamp: + annotations: [] + default: false + type: public + returnType: boolean + setResponseType: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeManagementResponse$Builder + params: + value: + annotation: [] + type: Object + setTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeManagementResponse$Builder + params: + value: + annotation: [] + type: java.time.Instant +net.corda.data.virtualnode.VirtualNodeManagementResponseFailure: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.virtualnode.VirtualNodeManagementResponseFailure + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getException: + annotations: [] + default: false + type: public + returnType: net.corda.data.ExceptionEnvelope + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.virtualnode.VirtualNodeManagementResponseFailure$Builder + params: + other: + annotation: [] + type: net.corda.data.virtualnode.VirtualNodeManagementResponseFailure + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setException: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.ExceptionEnvelope + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.virtualnode.VirtualNodeManagementResponseFailure$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeManagementResponseFailure + clearException: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeManagementResponseFailure$Builder + getException: + annotations: [] + default: false + type: public + returnType: net.corda.data.ExceptionEnvelope + getExceptionBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ExceptionEnvelope$Builder + hasException: + annotations: [] + default: false + type: public + returnType: boolean + hasExceptionBuilder: + annotations: [] + default: false + type: public + returnType: boolean + setException: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeManagementResponseFailure$Builder + params: + value: + annotation: [] + type: net.corda.data.ExceptionEnvelope + setExceptionBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeManagementResponseFailure$Builder + params: + value: + annotation: [] + type: net.corda.data.ExceptionEnvelope$Builder +net.corda.data.virtualnode.VirtualNodeOperationStatus: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.virtualnode.VirtualNodeOperationStatus + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getErrors: + annotations: [] + default: false + type: public + returnType: String + getHeartbeatTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getLatestUpdateTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getRequestData: + annotations: [] + default: false + type: public + returnType: String + getRequestId: + annotations: [] + default: false + type: public + returnType: String + getRequestTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getState: + annotations: [] + default: false + type: public + returnType: String + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.virtualnode.VirtualNodeOperationStatus$Builder + params: + other: + annotation: [] + type: net.corda.data.virtualnode.VirtualNodeOperationStatus + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setErrors: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setHeartbeatTimestamp: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + setLatestUpdateTimestamp: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + setRequestData: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setRequestId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setRequestTimestamp: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + setState: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.virtualnode.VirtualNodeOperationStatus$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationStatus + clearErrors: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationStatus$Builder + clearHeartbeatTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationStatus$Builder + clearLatestUpdateTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationStatus$Builder + clearRequestData: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationStatus$Builder + clearRequestId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationStatus$Builder + clearRequestTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationStatus$Builder + clearState: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationStatus$Builder + getErrors: + annotations: [] + default: false + type: public + returnType: String + getHeartbeatTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getLatestUpdateTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getRequestData: + annotations: [] + default: false + type: public + returnType: String + getRequestId: + annotations: [] + default: false + type: public + returnType: String + getRequestTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getState: + annotations: [] + default: false + type: public + returnType: String + hasErrors: + annotations: [] + default: false + type: public + returnType: boolean + hasHeartbeatTimestamp: + annotations: [] + default: false + type: public + returnType: boolean + hasLatestUpdateTimestamp: + annotations: [] + default: false + type: public + returnType: boolean + hasRequestData: + annotations: [] + default: false + type: public + returnType: boolean + hasRequestId: + annotations: [] + default: false + type: public + returnType: boolean + hasRequestTimestamp: + annotations: [] + default: false + type: public + returnType: boolean + hasState: + annotations: [] + default: false + type: public + returnType: boolean + setErrors: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationStatus$Builder + params: + value: + annotation: [] + type: String + setHeartbeatTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationStatus$Builder + params: + value: + annotation: [] + type: java.time.Instant + setLatestUpdateTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationStatus$Builder + params: + value: + annotation: [] + type: java.time.Instant + setRequestData: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationStatus$Builder + params: + value: + annotation: [] + type: String + setRequestId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationStatus$Builder + params: + value: + annotation: [] + type: String + setRequestTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationStatus$Builder + params: + value: + annotation: [] + type: java.time.Instant + setState: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationStatus$Builder + params: + value: + annotation: [] + type: String +net.corda.data.virtualnode.VirtualNodeOperationStatusRequest: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.virtualnode.VirtualNodeOperationStatusRequest + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getRequestId: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.virtualnode.VirtualNodeOperationStatusRequest$Builder + params: + other: + annotation: [] + type: net.corda.data.virtualnode.VirtualNodeOperationStatusRequest + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setRequestId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.virtualnode.VirtualNodeOperationStatusRequest$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationStatusRequest + clearRequestId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationStatusRequest$Builder + getRequestId: + annotations: [] + default: false + type: public + returnType: String + hasRequestId: + annotations: [] + default: false + type: public + returnType: boolean + setRequestId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationStatusRequest$Builder + params: + value: + annotation: [] + type: String +net.corda.data.virtualnode.VirtualNodeOperationStatusResponse: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.virtualnode.VirtualNodeOperationStatusResponse + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getOperationHistory: + annotations: [] + default: false + type: public + returnType: java.util.List + getRequestId: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.virtualnode.VirtualNodeOperationStatusResponse$Builder + params: + other: + annotation: [] + type: net.corda.data.virtualnode.VirtualNodeOperationStatusResponse + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setOperationHistory: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + setRequestId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.virtualnode.VirtualNodeOperationStatusResponse$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationStatusResponse + clearOperationHistory: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationStatusResponse$Builder + clearRequestId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationStatusResponse$Builder + getOperationHistory: + annotations: [] + default: false + type: public + returnType: java.util.List + getRequestId: + annotations: [] + default: false + type: public + returnType: String + hasOperationHistory: + annotations: [] + default: false + type: public + returnType: boolean + hasRequestId: + annotations: [] + default: false + type: public + returnType: boolean + setOperationHistory: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationStatusResponse$Builder + params: + value: + annotation: [] + type: java.util.List + setRequestId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationStatusResponse$Builder + params: + value: + annotation: [] + type: String +net.corda.data.virtualnode.VirtualNodeOperationalState: + annotations: + - AvroGenerated + type: public final class + extends: java.lang.Enum + implements: + - org.apache.avro.generic.GenericEnumSymbol + interface: false + methods: + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + valueOf: + annotations: [] + default: false + type: public static + returnType: net.corda.data.virtualnode.VirtualNodeOperationalState + params: {} + values: + annotations: [] + default: false + type: public static + returnType: "net.corda.data.virtualnode.VirtualNodeOperationalState[]" + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.virtualnode.VirtualNodeStateChangeRequest: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.virtualnode.VirtualNodeStateChangeRequest + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getHoldingIdentityShortHash: + annotations: [] + default: false + type: public + returnType: String + getNewState: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationalState + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getUpdateActor: + annotations: [] + default: false + type: public + returnType: String + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.virtualnode.VirtualNodeStateChangeRequest$Builder + params: + other: + annotation: [] + type: net.corda.data.virtualnode.VirtualNodeStateChangeRequest + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setHoldingIdentityShortHash: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setNewState: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.virtualnode.VirtualNodeOperationalState + setUpdateActor: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.virtualnode.VirtualNodeStateChangeRequest$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeStateChangeRequest + clearHoldingIdentityShortHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeStateChangeRequest$Builder + clearNewState: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeStateChangeRequest$Builder + clearUpdateActor: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeStateChangeRequest$Builder + getHoldingIdentityShortHash: + annotations: [] + default: false + type: public + returnType: String + getNewState: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationalState + getUpdateActor: + annotations: [] + default: false + type: public + returnType: String + hasHoldingIdentityShortHash: + annotations: [] + default: false + type: public + returnType: boolean + hasNewState: + annotations: [] + default: false + type: public + returnType: boolean + hasUpdateActor: + annotations: [] + default: false + type: public + returnType: boolean + setHoldingIdentityShortHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeStateChangeRequest$Builder + params: + value: + annotation: [] + type: String + setNewState: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeStateChangeRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.virtualnode.VirtualNodeOperationalState + setUpdateActor: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeStateChangeRequest$Builder + params: + value: + annotation: [] + type: String +net.corda.data.virtualnode.VirtualNodeStateChangeResponse: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.virtualnode.VirtualNodeStateChangeResponse + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getFlowOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationalState + getFlowP2pOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationalState + getFlowStartOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationalState + getHoldingIdentityShortHash: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getVaultDbOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationalState + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.virtualnode.VirtualNodeStateChangeResponse$Builder + params: + other: + annotation: [] + type: net.corda.data.virtualnode.VirtualNodeStateChangeResponse + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setFlowOperationalStatus: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.virtualnode.VirtualNodeOperationalState + setFlowP2pOperationalStatus: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.virtualnode.VirtualNodeOperationalState + setFlowStartOperationalStatus: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.virtualnode.VirtualNodeOperationalState + setHoldingIdentityShortHash: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setVaultDbOperationalStatus: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.virtualnode.VirtualNodeOperationalState + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.virtualnode.VirtualNodeStateChangeResponse$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeStateChangeResponse + clearFlowOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeStateChangeResponse$Builder + clearFlowP2pOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeStateChangeResponse$Builder + clearFlowStartOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeStateChangeResponse$Builder + clearHoldingIdentityShortHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeStateChangeResponse$Builder + clearVaultDbOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeStateChangeResponse$Builder + getFlowOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationalState + getFlowP2pOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationalState + getFlowStartOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationalState + getHoldingIdentityShortHash: + annotations: [] + default: false + type: public + returnType: String + getVaultDbOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationalState + hasFlowOperationalStatus: + annotations: [] + default: false + type: public + returnType: boolean + hasFlowP2pOperationalStatus: + annotations: [] + default: false + type: public + returnType: boolean + hasFlowStartOperationalStatus: + annotations: [] + default: false + type: public + returnType: boolean + hasHoldingIdentityShortHash: + annotations: [] + default: false + type: public + returnType: boolean + hasVaultDbOperationalStatus: + annotations: [] + default: false + type: public + returnType: boolean + setFlowOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeStateChangeResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.virtualnode.VirtualNodeOperationalState + setFlowP2pOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeStateChangeResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.virtualnode.VirtualNodeOperationalState + setFlowStartOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeStateChangeResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.virtualnode.VirtualNodeOperationalState + setHoldingIdentityShortHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeStateChangeResponse$Builder + params: + value: + annotation: [] + type: String + setVaultDbOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeStateChangeResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.virtualnode.VirtualNodeOperationalState +net.corda.data.virtualnode.VirtualNodeUpgradeRequest: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.virtualnode.VirtualNodeUpgradeRequest + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getActor: + annotations: [] + default: false + type: public + returnType: String + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getCpiFileChecksum: + annotations: [] + default: false + type: public + returnType: String + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getVirtualNodeShortHash: + annotations: [] + default: false + type: public + returnType: String + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.virtualnode.VirtualNodeUpgradeRequest$Builder + params: + other: + annotation: [] + type: net.corda.data.virtualnode.VirtualNodeUpgradeRequest + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setActor: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setCpiFileChecksum: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setVirtualNodeShortHash: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.virtualnode.VirtualNodeUpgradeRequest$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeUpgradeRequest + clearActor: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeUpgradeRequest$Builder + clearCpiFileChecksum: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeUpgradeRequest$Builder + clearVirtualNodeShortHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeUpgradeRequest$Builder + getActor: + annotations: [] + default: false + type: public + returnType: String + getCpiFileChecksum: + annotations: [] + default: false + type: public + returnType: String + getVirtualNodeShortHash: + annotations: [] + default: false + type: public + returnType: String + hasActor: + annotations: [] + default: false + type: public + returnType: boolean + hasCpiFileChecksum: + annotations: [] + default: false + type: public + returnType: boolean + hasVirtualNodeShortHash: + annotations: [] + default: false + type: public + returnType: boolean + setActor: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeUpgradeRequest$Builder + params: + value: + annotation: [] + type: String + setCpiFileChecksum: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeUpgradeRequest$Builder + params: + value: + annotation: [] + type: String + setVirtualNodeShortHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeUpgradeRequest$Builder + params: + value: + annotation: [] + type: String +net.corda.data.virtualnode.VirtualNodeUpgradeResponse: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getCpiFileChecksum: + annotations: [] + default: false + type: public + returnType: String + getCpiIdentifier: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpiIdentifier + getCryptoDdlConnectionId: + annotations: [] + default: false + type: public + returnType: String + getCryptoDmlConnectionId: + annotations: [] + default: false + type: public + returnType: String + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getFlowOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationalState + getFlowP2pOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationalState + getFlowStartOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationalState + getHoldingIdentifierHash: + annotations: [] + default: false + type: public + returnType: String + getHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getHsmConnectionId: + annotations: [] + default: false + type: public + returnType: String + getMgmGroupId: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getUniquenessDdlConnectionId: + annotations: [] + default: false + type: public + returnType: String + getUniquenessDmlConnectionId: + annotations: [] + default: false + type: public + returnType: String + getVaultDbOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationalState + getVaultDdlConnectionId: + annotations: [] + default: false + type: public + returnType: String + getVaultDmlConnectionId: + annotations: [] + default: false + type: public + returnType: String + getX500Name: + annotations: [] + default: false + type: public + returnType: String + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder + params: + other: + annotation: [] + type: net.corda.data.virtualnode.VirtualNodeUpgradeResponse + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setCpiFileChecksum: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setCpiIdentifier: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.packaging.CpiIdentifier + setCryptoDdlConnectionId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setCryptoDmlConnectionId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setFlowOperationalStatus: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.virtualnode.VirtualNodeOperationalState + setFlowP2pOperationalStatus: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.virtualnode.VirtualNodeOperationalState + setFlowStartOperationalStatus: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.virtualnode.VirtualNodeOperationalState + setHoldingIdentifierHash: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setHoldingIdentity: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setHsmConnectionId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setMgmGroupId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setUniquenessDdlConnectionId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setUniquenessDmlConnectionId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setVaultDbOperationalStatus: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.virtualnode.VirtualNodeOperationalState + setVaultDdlConnectionId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setVaultDmlConnectionId: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setX500Name: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse + clearCpiFileChecksum: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder + clearCpiIdentifier: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder + clearCryptoDdlConnectionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder + clearCryptoDmlConnectionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder + clearFlowOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder + clearFlowP2pOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder + clearFlowStartOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder + clearHoldingIdentifierHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder + clearHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder + clearHsmConnectionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder + clearMgmGroupId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder + clearUniquenessDdlConnectionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder + clearUniquenessDmlConnectionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder + clearVaultDbOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder + clearVaultDdlConnectionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder + clearVaultDmlConnectionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder + clearX500Name: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder + getCpiFileChecksum: + annotations: [] + default: false + type: public + returnType: String + getCpiIdentifier: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpiIdentifier + getCpiIdentifierBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.packaging.CpiIdentifier$Builder + getCryptoDdlConnectionId: + annotations: [] + default: false + type: public + returnType: String + getCryptoDmlConnectionId: + annotations: [] + default: false + type: public + returnType: String + getFlowOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationalState + getFlowP2pOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationalState + getFlowStartOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationalState + getHoldingIdentifierHash: + annotations: [] + default: false + type: public + returnType: String + getHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getHoldingIdentityBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + getHsmConnectionId: + annotations: [] + default: false + type: public + returnType: String + getMgmGroupId: + annotations: [] + default: false + type: public + returnType: String + getUniquenessDdlConnectionId: + annotations: [] + default: false + type: public + returnType: String + getUniquenessDmlConnectionId: + annotations: [] + default: false + type: public + returnType: String + getVaultDbOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeOperationalState + getVaultDdlConnectionId: + annotations: [] + default: false + type: public + returnType: String + getVaultDmlConnectionId: + annotations: [] + default: false + type: public + returnType: String + getX500Name: + annotations: [] + default: false + type: public + returnType: String + hasCpiFileChecksum: + annotations: [] + default: false + type: public + returnType: boolean + hasCpiIdentifier: + annotations: [] + default: false + type: public + returnType: boolean + hasCpiIdentifierBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasCryptoDdlConnectionId: + annotations: [] + default: false + type: public + returnType: boolean + hasCryptoDmlConnectionId: + annotations: [] + default: false + type: public + returnType: boolean + hasFlowOperationalStatus: + annotations: [] + default: false + type: public + returnType: boolean + hasFlowP2pOperationalStatus: + annotations: [] + default: false + type: public + returnType: boolean + hasFlowStartOperationalStatus: + annotations: [] + default: false + type: public + returnType: boolean + hasHoldingIdentifierHash: + annotations: [] + default: false + type: public + returnType: boolean + hasHoldingIdentity: + annotations: [] + default: false + type: public + returnType: boolean + hasHoldingIdentityBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasHsmConnectionId: + annotations: [] + default: false + type: public + returnType: boolean + hasMgmGroupId: + annotations: [] + default: false + type: public + returnType: boolean + hasUniquenessDdlConnectionId: + annotations: [] + default: false + type: public + returnType: boolean + hasUniquenessDmlConnectionId: + annotations: [] + default: false + type: public + returnType: boolean + hasVaultDbOperationalStatus: + annotations: [] + default: false + type: public + returnType: boolean + hasVaultDdlConnectionId: + annotations: [] + default: false + type: public + returnType: boolean + hasVaultDmlConnectionId: + annotations: [] + default: false + type: public + returnType: boolean + hasX500Name: + annotations: [] + default: false + type: public + returnType: boolean + setCpiFileChecksum: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder + params: + value: + annotation: [] + type: String + setCpiIdentifier: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.packaging.CpiIdentifier + setCpiIdentifierBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.packaging.CpiIdentifier$Builder + setCryptoDdlConnectionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder + params: + value: + annotation: [] + type: String + setCryptoDmlConnectionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder + params: + value: + annotation: [] + type: String + setFlowOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.virtualnode.VirtualNodeOperationalState + setFlowP2pOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.virtualnode.VirtualNodeOperationalState + setFlowStartOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.virtualnode.VirtualNodeOperationalState + setHoldingIdentifierHash: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder + params: + value: + annotation: [] + type: String + setHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setHoldingIdentityBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder + setHsmConnectionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder + params: + value: + annotation: [] + type: String + setMgmGroupId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder + params: + value: + annotation: [] + type: String + setUniquenessDdlConnectionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder + params: + value: + annotation: [] + type: String + setUniquenessDmlConnectionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder + params: + value: + annotation: [] + type: String + setVaultDbOperationalStatus: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.virtualnode.VirtualNodeOperationalState + setVaultDdlConnectionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder + params: + value: + annotation: [] + type: String + setVaultDmlConnectionId: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder + params: + value: + annotation: [] + type: String + setX500Name: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder + params: + value: + annotation: [] + type: String +net.corda.ledger.utxo.verification.CordaPackageSummary: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.ledger.utxo.verification.CordaPackageSummary + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getFileChecksum: + annotations: [] + default: false + type: public + returnType: String + getName: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSignerSummaryHash: + annotations: [] + default: false + type: public + returnType: String + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getVersion: + annotations: [] + default: false + type: public + returnType: String + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.ledger.utxo.verification.CordaPackageSummary$Builder + params: + other: + annotation: [] + type: net.corda.ledger.utxo.verification.CordaPackageSummary + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setFileChecksum: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setName: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setSignerSummaryHash: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setVersion: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.ledger.utxo.verification.CordaPackageSummary$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.ledger.utxo.verification.CordaPackageSummary + clearFileChecksum: + annotations: [] + default: false + type: public + returnType: net.corda.ledger.utxo.verification.CordaPackageSummary$Builder + clearName: + annotations: [] + default: false + type: public + returnType: net.corda.ledger.utxo.verification.CordaPackageSummary$Builder + clearSignerSummaryHash: + annotations: [] + default: false + type: public + returnType: net.corda.ledger.utxo.verification.CordaPackageSummary$Builder + clearVersion: + annotations: [] + default: false + type: public + returnType: net.corda.ledger.utxo.verification.CordaPackageSummary$Builder + getFileChecksum: + annotations: [] + default: false + type: public + returnType: String + getName: + annotations: [] + default: false + type: public + returnType: String + getSignerSummaryHash: + annotations: [] + default: false + type: public + returnType: String + getVersion: + annotations: [] + default: false + type: public + returnType: String + hasFileChecksum: + annotations: [] + default: false + type: public + returnType: boolean + hasName: + annotations: [] + default: false + type: public + returnType: boolean + hasSignerSummaryHash: + annotations: [] + default: false + type: public + returnType: boolean + hasVersion: + annotations: [] + default: false + type: public + returnType: boolean + setFileChecksum: + annotations: [] + default: false + type: public + returnType: net.corda.ledger.utxo.verification.CordaPackageSummary$Builder + params: + value: + annotation: [] + type: String + setName: + annotations: [] + default: false + type: public + returnType: net.corda.ledger.utxo.verification.CordaPackageSummary$Builder + params: + value: + annotation: [] + type: String + setSignerSummaryHash: + annotations: [] + default: false + type: public + returnType: net.corda.ledger.utxo.verification.CordaPackageSummary$Builder + params: + value: + annotation: [] + type: String + setVersion: + annotations: [] + default: false + type: public + returnType: net.corda.ledger.utxo.verification.CordaPackageSummary$Builder + params: + value: + annotation: [] + type: String +net.corda.ledger.utxo.verification.TransactionVerificationRequest: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.ledger.utxo.verification.TransactionVerificationRequest + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getCpkMetadata: + annotations: [] + default: false + type: public + returnType: java.util.List + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getFlowExternalEventContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventContext + getHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getTransaction: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.ledger.utxo.verification.TransactionVerificationRequest$Builder + params: + other: + annotation: [] + type: net.corda.ledger.utxo.verification.TransactionVerificationRequest + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setCpkMetadata: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + setFlowExternalEventContext: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.flow.event.external.ExternalEventContext + setHoldingIdentity: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setTimestamp: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + setTransaction: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.nio.ByteBuffer + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.ledger.utxo.verification.TransactionVerificationRequest$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.ledger.utxo.verification.TransactionVerificationRequest + clearCpkMetadata: + annotations: [] + default: false + type: public + returnType: net.corda.ledger.utxo.verification.TransactionVerificationRequest$Builder + clearFlowExternalEventContext: + annotations: [] + default: false + type: public + returnType: net.corda.ledger.utxo.verification.TransactionVerificationRequest$Builder + clearHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.ledger.utxo.verification.TransactionVerificationRequest$Builder + clearTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.ledger.utxo.verification.TransactionVerificationRequest$Builder + clearTransaction: + annotations: [] + default: false + type: public + returnType: net.corda.ledger.utxo.verification.TransactionVerificationRequest$Builder + getCpkMetadata: + annotations: [] + default: false + type: public + returnType: java.util.List + getFlowExternalEventContext: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventContext + getFlowExternalEventContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.external.ExternalEventContext$Builder + getHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity + getHoldingIdentityBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.identity.HoldingIdentity$Builder + getTimestamp: + annotations: [] + default: false + type: public + returnType: java.time.Instant + getTransaction: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + hasCpkMetadata: + annotations: [] + default: false + type: public + returnType: boolean + hasFlowExternalEventContext: + annotations: [] + default: false + type: public + returnType: boolean + hasFlowExternalEventContextBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasHoldingIdentity: + annotations: [] + default: false + type: public + returnType: boolean + hasHoldingIdentityBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasTimestamp: + annotations: [] + default: false + type: public + returnType: boolean + hasTransaction: + annotations: [] + default: false + type: public + returnType: boolean + setCpkMetadata: + annotations: [] + default: false + type: public + returnType: net.corda.ledger.utxo.verification.TransactionVerificationRequest$Builder + params: + value: + annotation: [] + type: java.util.List + setFlowExternalEventContext: + annotations: [] + default: false + type: public + returnType: net.corda.ledger.utxo.verification.TransactionVerificationRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.event.external.ExternalEventContext + setFlowExternalEventContextBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.ledger.utxo.verification.TransactionVerificationRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.flow.event.external.ExternalEventContext$Builder + setHoldingIdentity: + annotations: [] + default: false + type: public + returnType: net.corda.ledger.utxo.verification.TransactionVerificationRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity + setHoldingIdentityBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.ledger.utxo.verification.TransactionVerificationRequest$Builder + params: + value: + annotation: [] + type: net.corda.data.identity.HoldingIdentity$Builder + setTimestamp: + annotations: [] + default: false + type: public + returnType: net.corda.ledger.utxo.verification.TransactionVerificationRequest$Builder + params: + value: + annotation: [] + type: java.time.Instant + setTransaction: + annotations: [] + default: false + type: public + returnType: net.corda.ledger.utxo.verification.TransactionVerificationRequest$Builder + params: + value: + annotation: [] + type: java.nio.ByteBuffer +net.corda.ledger.utxo.verification.TransactionVerificationResponse: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.ledger.utxo.verification.TransactionVerificationResponse + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getVerificationFailure: + annotations: [] + default: false + type: public + returnType: net.corda.data.ExceptionEnvelope + getVerificationStatus: + annotations: [] + default: false + type: public + returnType: net.corda.ledger.utxo.verification.TransactionVerificationStatus + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.ledger.utxo.verification.TransactionVerificationResponse$Builder + params: + other: + annotation: [] + type: net.corda.ledger.utxo.verification.TransactionVerificationResponse + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setVerificationFailure: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.data.ExceptionEnvelope + setVerificationStatus: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: net.corda.ledger.utxo.verification.TransactionVerificationStatus + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.ledger.utxo.verification.TransactionVerificationResponse$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.ledger.utxo.verification.TransactionVerificationResponse + clearVerificationFailure: + annotations: [] + default: false + type: public + returnType: net.corda.ledger.utxo.verification.TransactionVerificationResponse$Builder + clearVerificationStatus: + annotations: [] + default: false + type: public + returnType: net.corda.ledger.utxo.verification.TransactionVerificationResponse$Builder + getVerificationFailure: + annotations: [] + default: false + type: public + returnType: net.corda.data.ExceptionEnvelope + getVerificationFailureBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.data.ExceptionEnvelope$Builder + getVerificationStatus: + annotations: [] + default: false + type: public + returnType: net.corda.ledger.utxo.verification.TransactionVerificationStatus + hasVerificationFailure: + annotations: [] + default: false + type: public + returnType: boolean + hasVerificationFailureBuilder: + annotations: [] + default: false + type: public + returnType: boolean + hasVerificationStatus: + annotations: [] + default: false + type: public + returnType: boolean + setVerificationFailure: + annotations: [] + default: false + type: public + returnType: net.corda.ledger.utxo.verification.TransactionVerificationResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.ExceptionEnvelope + setVerificationFailureBuilder: + annotations: [] + default: false + type: public + returnType: net.corda.ledger.utxo.verification.TransactionVerificationResponse$Builder + params: + value: + annotation: [] + type: net.corda.data.ExceptionEnvelope$Builder + setVerificationStatus: + annotations: [] + default: false + type: public + returnType: net.corda.ledger.utxo.verification.TransactionVerificationResponse$Builder + params: + value: + annotation: [] + type: net.corda.ledger.utxo.verification.TransactionVerificationStatus +net.corda.ledger.utxo.verification.TransactionVerificationStatus: + annotations: + - AvroGenerated + type: public final class + extends: java.lang.Enum + implements: + - org.apache.avro.generic.GenericEnumSymbol + interface: false + methods: + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + valueOf: + annotations: [] + default: false + type: public static + returnType: net.corda.ledger.utxo.verification.TransactionVerificationStatus + params: {} + values: + annotations: [] + default: false + type: public static + returnType: "net.corda.ledger.utxo.verification.TransactionVerificationStatus[]" + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema diff --git a/data/config-schema/build.gradle b/data/config-schema/build.gradle index a6daaed59c..397ea8cfed 100644 --- a/data/config-schema/build.gradle +++ b/data/config-schema/build.gradle @@ -2,6 +2,7 @@ plugins { id 'corda-api.common-library' id 'corda.common-publishing' id 'corda.java-only' + id 'corda.api-scanner' } description 'Schema Definition for Configuration' diff --git a/data/config-schema/src/api/corda-config-schema-5.1.0.yaml b/data/config-schema/src/api/corda-config-schema-5.1.0.yaml new file mode 100644 index 0000000000..098a9a4fb5 --- /dev/null +++ b/data/config-schema/src/api/corda-config-schema-5.1.0.yaml @@ -0,0 +1,1062 @@ +net.corda.schema.common.provider.SchemaProvider: + annotations: [] + type: public interface + extends: [] + interface: true + methods: + getSchema: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.io.InputStream + params: + key: + annotation: + - NotNull + type: String + version: + annotation: + - NotNull + type: net.corda.v5.base.versioning.Version + getSchemaFile: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.io.InputStream + params: + fileName: + annotation: + - NotNull + type: String +net.corda.schema.common.provider.impl.AbstractSchemaProvider: + annotations: [] + type: public abstract class + extends: null + implements: + - net.corda.schema.common.provider.SchemaProvider + interface: false + methods: + getResourceInputStream: + annotations: + - NotNull + default: false + type: protected abstract + returnType: java.io.InputStream + params: + resource: + annotation: + - NotNull + type: String + getResourceRoot: + annotations: [] + default: false + type: public abstract + returnType: String + getSchema: + annotations: + - NotNull + default: false + type: public + returnType: java.io.InputStream + params: + key: + annotation: + - NotNull + type: String + version: + annotation: + - NotNull + type: net.corda.v5.base.versioning.Version + getSchemaFile: + annotations: + - NotNull + default: false + type: public + returnType: java.io.InputStream + params: + fileName: + annotation: + - NotNull + type: String + fields: + logger: + annotation: [] + type: protected final org.slf4j.Logger +net.corda.schema.configuration.BootConfig: + annotations: [] + type: public final class + extends: null + implements: [] + interface: false + methods: {} + fields: + INSTANCE_ID: + annotation: [] + type: public static final String + initialised value: instanceId + TOPIC_PREFIX: + annotation: [] + type: public static final String + initialised value: topicPrefix + BOOT_MAX_ALLOWED_MSG_SIZE: + annotation: [] + type: public static final String + initialised value: maxAllowedMessageSize + BOOT_KAFKA: + annotation: [] + type: public static final String + initialised value: kafka + BOOT_KAFKA_COMMON: + annotation: [] + type: public static final String + initialised value: kafka.common + BOOT_CRYPTO: + annotation: [] + type: public static final String + initialised value: crypto + BOOT_DB: + annotation: [] + type: public static final String + initialised value: db + BOOT_JDBC_URL: + annotation: [] + type: public static final String + initialised value: db.database.jdbc.url + BOOT_JDBC_USER: + annotation: [] + type: public static final String + initialised value: db.database.user + BOOT_JDBC_PASS: + annotation: [] + type: public static final String + initialised value: db.database.pass + BOOT_DIR: + annotation: [] + type: public static final String + initialised value: dir + BOOT_WORKSPACE_DIR: + annotation: [] + type: public static final String + initialised value: dir.workspace + BOOT_TMP_DIR: + annotation: [] + type: public static final String + initialised value: dir.tmp + BOOT_REST: + annotation: [] + type: public static final String + initialised value: rest + BOOT_REST_TLS_KEYSTORE_FILE_PATH: + annotation: [] + type: public static final String + initialised value: rest.tls.keystore.path + BOOT_REST_TLS_KEYSTORE_PASSWORD: + annotation: [] + type: public static final String + initialised value: rest.tls.keystore.password + BOOT_REST_TLS_CRT_PATH: + annotation: [] + type: public static final String + initialised value: rest.tls.crt.path + BOOT_REST_TLS_KEY_PATH: + annotation: [] + type: public static final String + initialised value: rest.tls.key.path + BOOT_REST_TLS_CA_CRT_PATH: + annotation: [] + type: public static final String + initialised value: rest.tls.ca.crt.path + BOOT_SECRETS: + annotation: [] + type: public static final String + initialised value: secrets + BOOT_STATE_MANAGER: + annotation: [] + type: public static final String + initialised value: stateManager + BOOT_STATE_MANAGER_TYPE: + annotation: [] + type: public static final String + initialised value: stateManager.type + BOOT_STATE_MANAGER_DB_USER: + annotation: [] + type: public static final String + initialised value: stateManager.database.user + BOOT_STATE_MANAGER_DB_PASS: + annotation: [] + type: public static final String + initialised value: stateManager.database.pass + BOOT_STATE_MANAGER_JDBC_URL: + annotation: [] + type: public static final String + initialised value: stateManager.database.jdbc.url +net.corda.schema.configuration.ConfigDefaults: + annotations: [] + type: public final class + extends: null + implements: [] + interface: false + methods: {} + fields: + WORKSPACE_DIR: + annotation: [] + type: public static final String + TEMP_DIR: + annotation: [] + type: public static final String +net.corda.schema.configuration.ConfigKeys: + annotations: [] + type: public final class + extends: null + implements: [] + interface: false + methods: {} + fields: + BOOT_CONFIG: + annotation: [] + type: public static final String + initialised value: corda.boot + CRYPTO_CONFIG: + annotation: [] + type: public static final String + initialised value: corda.crypto + DB_CONFIG: + annotation: [] + type: public static final String + initialised value: corda.db + FLOW_CONFIG: + annotation: [] + type: public static final String + initialised value: corda.flow + MESSAGING_CONFIG: + annotation: [] + type: public static final String + initialised value: corda.messaging + EXTERNAL_MESSAGING_CONFIG: + annotation: [] + type: public static final String + initialised value: corda.externalMessaging + UTXO_LEDGER_CONFIG: + annotation: [] + type: public static final String + initialised value: corda.ledger.utxo + P2P_LINK_MANAGER_CONFIG: + annotation: [] + type: public static final String + initialised value: corda.p2p.linkManager + P2P_GATEWAY_CONFIG: + annotation: [] + type: public static final String + initialised value: corda.p2p.gateway + REST_CONFIG: + annotation: [] + type: public static final String + initialised value: corda.rest + SECRETS_CONFIG: + annotation: [] + type: public static final String + initialised value: corda.secrets + SANDBOX_CONFIG: + annotation: [] + type: public static final String + initialised value: corda.sandbox + RECONCILIATION_CONFIG: + annotation: [] + type: public static final String + initialised value: corda.reconciliation + MEMBERSHIP_CONFIG: + annotation: [] + type: public static final String + initialised value: corda.membership + SECURITY_CONFIG: + annotation: [] + type: public static final String + initialised value: corda.security + VNODE_DATASOURCE_CONFIG: + annotation: [] + type: public static final String + initialised value: corda.vnode.datasource + REST_ADDRESS: + annotation: [] + type: public static final String + initialised value: address + REST_CONTEXT_DESCRIPTION: + annotation: [] + type: public static final String + initialised value: context.description + REST_CONTEXT_TITLE: + annotation: [] + type: public static final String + initialised value: context.title + REST_ENDPOINT_TIMEOUT_MILLIS: + annotation: [] + type: public static final String + initialised value: endpoint.timeoutMs + REST_MAX_CONTENT_LENGTH: + annotation: [] + type: public static final String + initialised value: maxContentLength + REST_AZUREAD_CLIENT_ID: + annotation: [] + type: public static final String + initialised value: sso.azureAd.clientId + REST_AZUREAD_CLIENT_SECRET: + annotation: [] + type: public static final String + initialised value: sso.azureAd.clientSecret + REST_AZUREAD_TENANT_ID: + annotation: [] + type: public static final String + initialised value: sso.azureAd.tenantId + REST_WEBSOCKET_CONNECTION_IDLE_TIMEOUT_MS: + annotation: [] + type: public static final String + initialised value: websocket.idleTimeoutMs + SECRETS_TYPE: + annotation: [] + type: public static final String + initialised value: type + SECRETS_PASSPHRASE: + annotation: [] + type: public static final String + initialised value: passphrase + SECRETS_SALT: + annotation: [] + type: public static final String + initialised value: salt + SECRETS_SERVER_ADDRESS: + annotation: [] + type: public static final String + initialised value: serverAddress + SECRETS_SERVER_CREDENTIALS: + annotation: [] + type: public static final String + initialised value: serverCredentials + SECRETS_CREATED_SECRET_PATH: + annotation: [] + type: public static final String + initialised value: createdSecretPath + WORKSPACE_DIR: + annotation: [] + type: public static final String + initialised value: dir.workspace + TEMP_DIR: + annotation: [] + type: public static final String + initialised value: dir.tmp + SECRET_REFRESH_PERIOD: + annotation: [] + type: public static final String + initialised value: refreshPeriod + SECRET_RETRY_BACKOFF: + annotation: [] + type: public static final String + initialised value: retryBackoff + SECRET_KEY: + annotation: [] + type: public static final String + initialised value: configSecret + SECRET_KEY_VAULT_PATH: + annotation: [] + type: public static final String + initialised value: vaultPath + SECRET_KEY_VAULT_KEY: + annotation: [] + type: public static final String + initialised value: vaultKey + SANDBOX_CACHE_SIZE: + annotation: [] + type: public static final String + initialised value: cache.size + SECURITY_POLICY: + annotation: [] + type: public static final String + initialised value: policy +net.corda.schema.configuration.DatabaseConfig: + annotations: [] + type: public final class + extends: null + implements: [] + interface: false + methods: {} + fields: + DB_USER: + annotation: [] + type: public static final String + initialised value: database.user + DB_PASS: + annotation: [] + type: public static final String + initialised value: database.pass + JDBC_DRIVER: + annotation: [] + type: public static final String + initialised value: database.jdbc.driver + JDBC_DRIVER_DIRECTORY: + annotation: [] + type: public static final String + initialised value: database.jdbc.directory + JDBC_URL: + annotation: [] + type: public static final String + initialised value: database.jdbc.url + DB_POOL_MAX_SIZE: + annotation: [] + type: public static final String + initialised value: database.pool.max_size + DB_POOL_MIN_SIZE: + annotation: [] + type: public static final String + initialised value: database.pool.min_size + DB_POOL_IDLE_TIMEOUT_SECONDS: + annotation: [] + type: public static final String + initialised value: database.pool.idleTimeoutSeconds + DB_POOL_MAX_LIFETIME_SECONDS: + annotation: [] + type: public static final String + initialised value: database.pool.maxLifetimeSeconds + DB_POOL_KEEPALIVE_TIME_SECONDS: + annotation: [] + type: public static final String + initialised value: database.pool.keepaliveTimeSeconds + DB_POOL_VALIDATION_TIMEOUT_SECONDS: + annotation: [] + type: public static final String + initialised value: database.pool.validationTimeoutSeconds +net.corda.schema.configuration.ExternalMessagingConfig: + annotations: [] + type: public final class + extends: null + implements: [] + interface: false + methods: {} + fields: + ROUTE_DEFAULTS: + annotation: [] + type: public static final String + initialised value: routeDefaults + EXTERNAL_MESSAGING_RECEIVE_TOPIC_PATTERN: + annotation: [] + type: public static final String + initialised value: routeDefaults.receiveTopicPattern + EXTERNAL_MESSAGING_ACTIVE: + annotation: [] + type: public static final String + initialised value: routeDefaults.active + EXTERNAL_MESSAGING_INTERACTIVE_RESPONSE_TYPE: + annotation: [] + type: public static final String + initialised value: routeDefaults.inactiveResponseType +net.corda.schema.configuration.FlowConfig: + annotations: [] + type: public final class + extends: null + implements: [] + interface: false + methods: {} + fields: + EXTERNAL_EVENT_MESSAGE_RESEND_WINDOW: + annotation: [] + type: public static final String + initialised value: event.messageResendWindow + EXTERNAL_EVENT_MAX_RETRIES: + annotation: [] + type: public static final String + initialised value: event.maxRetries + SESSION_TIMEOUT_WINDOW: + annotation: [] + type: public static final String + initialised value: session.timeout + SESSION_P2P_TTL: + annotation: [] + type: public static final String + initialised value: session.p2pTTL + SESSION_FLOW_CLEANUP_TIME: + annotation: [] + type: public static final String + initialised value: session.cleanupTime + PROCESSING_MAX_RETRY_ATTEMPTS: + annotation: [] + type: public static final String + initialised value: processing.maxRetryAttempts + PROCESSING_MAX_RETRY_WINDOW_DURATION: + annotation: [] + type: public static final String + initialised value: processing.maxRetryWindowDuration + PROCESSING_MAX_RETRY_DELAY: + annotation: [] + type: public static final String + initialised value: processing.maxRetryDelay + PROCESSING_MAX_FLOW_SLEEP_DURATION: + annotation: [] + type: public static final String + initialised value: processing.maxFlowSleepDuration + PROCESSING_FLOW_CLEANUP_TIME: + annotation: [] + type: public static final String + initialised value: processing.cleanupTime +net.corda.schema.configuration.LedgerConfig: + annotations: [] + type: public final class + extends: null + implements: [] + interface: false + methods: {} + fields: + UTXO_TOKEN_MIN_DELAY_BEFORE_NEXT_FULL_SYNC: + annotation: [] + type: public static final String + initialised value: tokens.minDelayBeforeNextFullSync + UTXO_TOKEN_MIN_DELAY_BEFORE_NEXT_PERIODIC_SYNC: + annotation: [] + type: public static final String + initialised value: tokens.minDelayBeforeNextPeriodicSync + UTXO_TOKEN_FULL_SYNC_BLOCK_SIZE: + annotation: [] + type: public static final String + initialised value: tokens.fullSyncBlockSize + UTXO_TOKEN_PERIODIC_CHECK_BLOCK_SIZE: + annotation: [] + type: public static final String + initialised value: tokens.periodCheckBlockSize + UTXO_TOKEN_SEND_WAKEUP_MAX_RETRY_ATTEMPTS: + annotation: [] + type: public static final String + initialised value: tokens.sendWakeUpMaxRetryAttempts + UTXO_TOKEN_SEND_WAKEUP_MAX_RETRY_DELAY: + annotation: [] + type: public static final String + initialised value: tokens.sendWakeUpMaxRetryDelay + UTXO_TOKEN_CACHED_TOKEN_PAGE_SIZE: + annotation: [] + type: public static final String + initialised value: tokens.cachedTokenPageSize + UTXO_TOKEN_CLAIM_TIMEOUT_SECONDS: + annotation: [] + type: public static final String + initialised value: tokens.claimTimeoutSeconds + UTXO_BACKCHAIN_BATCH_SIZE: + annotation: [] + type: public static final String + initialised value: backchain.batchSize +net.corda.schema.configuration.MembershipConfig: + annotations: [] + type: public final class + extends: null + implements: [] + interface: false + methods: {} + fields: + MAX_DURATION_BETWEEN_SYNC_REQUESTS_MINUTES: + annotation: [] + type: public static final String + initialised value: maxDurationBetweenSyncRequestsMinutes + MAX_DURATION_BETWEEN_EXPIRED_REGISTRATION_REQUESTS_POLLS: + annotation: [] + type: public static final String + initialised value: frequencyOfExpirationPoll + EXPIRATION_DATE_FOR_REGISTRATION_REQUESTS: + annotation: [] + type: public static final String + initialised value: expirationTimeFrame +net.corda.schema.configuration.MembershipConfig$TtlsConfig: + annotations: [] + type: public static final class + extends: null + implements: [] + interface: false + methods: {} + fields: + TTLS: + annotation: [] + type: public static final String + initialised value: TTLs + MEMBERS_PACKAGE_UPDATE: + annotation: [] + type: public static final String + initialised value: membersPackageUpdate + DECLINE_REGISTRATION: + annotation: [] + type: public static final String + initialised value: declineRegistration + UPDATE_TO_PENDING_AUTO_APPROVAL: + annotation: [] + type: public static final String + initialised value: updateToPendingAutoApproval + VERIFY_MEMBER_REQUEST: + annotation: [] + type: public static final String + initialised value: verifyMemberRequest + WAIT_FOR_MGM_SESSION: + annotation: [] + type: public static final String + initialised value: waitForMgmSession +net.corda.schema.configuration.MessagingConfig: + annotations: [] + type: public final class + extends: null + implements: [] + interface: false + methods: {} + fields: + MAX_ALLOWED_MSG_SIZE: + annotation: [] + type: public static final String + initialised value: maxAllowedMessageSize +net.corda.schema.configuration.MessagingConfig$Bus: + annotations: [] + type: public static final class + extends: null + implements: [] + interface: false + methods: {} + fields: + BUS: + annotation: [] + type: public static final String + initialised value: bus + BUS_TYPE: + annotation: [] + type: public static final String + initialised value: bus.busType + AUTO_OFFSET_RESET: + annotation: [] + type: public static final String + initialised value: auto.offset.reset + KAFKA_PROPERTIES: + annotation: [] + type: public static final String + initialised value: bus.kafkaProperties + KAFKA_PROPERTIES_COMMON: + annotation: [] + type: public static final String + initialised value: bus.kafkaProperties.common + KAFKA_BOOTSTRAP_SERVERS: + annotation: [] + type: public static final String + initialised value: bus.kafkaProperties.common.bootstrap.servers + KAFKA_PROPERTIES_CONSUMER: + annotation: [] + type: public static final String + initialised value: bus.kafkaProperties.consumer + KAFKA_CONSUMER_MAX_POLL_INTERVAL: + annotation: [] + type: public static final String + initialised value: bus.kafkaProperties.consumer.max.poll.interval.ms + KAFKA_PROPERTIES_PRODUCER: + annotation: [] + type: public static final String + initialised value: bus.kafkaProperties.producer + KAFKA_PRODUCER_CLIENT_ID: + annotation: [] + type: public static final String + initialised value: bus.kafkaProperties.producer.client.id + JDBC_URL: + annotation: [] + type: public static final String + initialised value: jdbcUrl + JDBC_USER: + annotation: [] + type: public static final String + initialised value: user + JDBC_PASS: + annotation: [] + type: public static final String + initialised value: pass + DB_MAX_POLL_RECORDS: + annotation: [] + type: public static final String + initialised value: maxPollRecords + DB_PROPERTIES: + annotation: [] + type: public static final String + initialised value: bus.dbProperties + DB_JDBC_URL: + annotation: [] + type: public static final String + initialised value: bus.dbProperties.jdbcUrl + DB_USER: + annotation: [] + type: public static final String + initialised value: bus.dbProperties.user + DB_PASS: + annotation: [] + type: public static final String + initialised value: bus.dbProperties.pass + DB_PROPERTIES_CONSUMER: + annotation: [] + type: public static final String + initialised value: bus.dbProperties.consumer + DB_CONSUMER_MAX_POLL_RECORDS: + annotation: [] + type: public static final String + initialised value: bus.dbProperties.consumer.maxPollRecords + DB_CONSUMER_AUTO_OFFSET_RESET: + annotation: [] + type: public static final String + initialised value: bus.dbProperties.consumer.auto.offset.reset +net.corda.schema.configuration.MessagingConfig$Publisher: + annotations: [] + type: public static final class + extends: null + implements: [] + interface: false + methods: {} + fields: + PUBLISHER: + annotation: [] + type: public static final String + initialised value: publisher + CLOSE_TIMEOUT: + annotation: [] + type: public static final String + initialised value: publisher.closeTimeout + TRANSACTIONAL: + annotation: [] + type: public static final String + initialised value: publisher.transactional +net.corda.schema.configuration.MessagingConfig$StateManager: + annotations: [] + type: public static final class + extends: null + implements: [] + interface: false + methods: {} + fields: + STATE_MANAGER: + annotation: [] + type: public static final String + initialised value: stateManager + TYPE: + annotation: [] + type: public static final String + initialised value: stateManager.type + DB_PROPERTIES: + annotation: [] + type: public static final String + initialised value: stateManager.database + JDBC_USER: + annotation: [] + type: public static final String + initialised value: stateManager.database.user + JDBC_PASS: + annotation: [] + type: public static final String + initialised value: stateManager.database.pass + JDBC_URL: + annotation: [] + type: public static final String + initialised value: stateManager.database.jdbc.url + JDBC_DRIVER: + annotation: [] + type: public static final String + initialised value: stateManager.database.jdbc.driver + JDBC_DRIVER_DIRECTORY: + annotation: [] + type: public static final String + initialised value: stateManager.database.jdbc.directory + JDBC_PERSISTENCE_UNIT_NAME: + annotation: [] + type: public static final String + initialised value: stateManager.database.jdbc.persistenceUnitName + JDBC_POOL_MAX_SIZE: + annotation: [] + type: public static final String + initialised value: stateManager.database.pool.maxSize + JDBC_POOL_MIN_SIZE: + annotation: [] + type: public static final String + initialised value: stateManager.database.pool.minSize + JDBC_POOL_IDLE_TIMEOUT_SECONDS: + annotation: [] + type: public static final String + initialised value: stateManager.database.pool.idleTimeoutSeconds + JDBC_POOL_MAX_LIFETIME_SECONDS: + annotation: [] + type: public static final String + initialised value: stateManager.database.pool.maxLifetimeSeconds + JDBC_POOL_KEEP_ALIVE_TIME_SECONDS: + annotation: [] + type: public static final String + initialised value: stateManager.database.pool.keepAliveTimeSeconds + JDBC_POOL_VALIDATION_TIMEOUT_SECONDS: + annotation: [] + type: public static final String + initialised value: stateManager.database.pool.validationTimeoutSeconds +net.corda.schema.configuration.MessagingConfig$Subscription: + annotations: [] + type: public static final class + extends: null + implements: [] + interface: false + methods: {} + fields: + SUBSCRIPTION: + annotation: [] + type: public static final String + initialised value: subscription + POLL_TIMEOUT: + annotation: [] + type: public static final String + initialised value: subscription.pollTimeout + THREAD_STOP_TIMEOUT: + annotation: [] + type: public static final String + initialised value: subscription.threadStopTimeout + PROCESSOR_RETRIES: + annotation: [] + type: public static final String + initialised value: subscription.processorRetries + SUBSCRIBE_RETRIES: + annotation: [] + type: public static final String + initialised value: subscription.subscribeRetries + COMMIT_RETRIES: + annotation: [] + type: public static final String + initialised value: subscription.commitRetries + PROCESSOR_TIMEOUT: + annotation: [] + type: public static final String + initialised value: subscription.processorTimeout +net.corda.schema.configuration.ReconciliationConfig: + annotations: [] + type: public final class + extends: null + implements: [] + interface: false + methods: {} + fields: + RECONCILIATION_PERMISSION_SUMMARY_INTERVAL_MS: + annotation: [] + type: public static final String + initialised value: permissionSummaryIntervalMs + RECONCILIATION_CPK_WRITE_INTERVAL_MS: + annotation: [] + type: public static final String + initialised value: cpkWriteIntervalMs + RECONCILIATION_CPI_INFO_INTERVAL_MS: + annotation: [] + type: public static final String + initialised value: cpiInfoIntervalMs + RECONCILIATION_CONFIG_INTERVAL_MS: + annotation: [] + type: public static final String + initialised value: configIntervalMs + RECONCILIATION_VNODE_INFO_INTERVAL_MS: + annotation: [] + type: public static final String + initialised value: vnodeInfoIntervalMs + RECONCILIATION_GROUP_PARAMS_INTERVAL_MS: + annotation: [] + type: public static final String + initialised value: groupParamsIntervalMs + RECONCILIATION_MTLS_MGM_ALLOWED_LIST_INTERVAL_MS: + annotation: [] + type: public static final String + initialised value: mtlsMgmAllowedCertificateSubjectsIntervalMs + RECONCILIATION_MEMBER_INFO_INTERVAL_MS: + annotation: [] + type: public static final String + initialised value: memberInfoIntervalMs +net.corda.schema.configuration.VirtualNodeDatasourceConfig: + annotations: [] + type: public class + extends: null + implements: [] + interface: false + methods: {} + fields: + VNODE_DDL_POOL_CONFIG: + annotation: [] + type: public static final String + initialised value: pool.ddl + VNODE_DML_POOL_CONFIG: + annotation: [] + type: public static final String + initialised value: pool.dml + VNODE_POOL_MAX_SIZE: + annotation: [] + type: public static final String + initialised value: max_size + VNODE_POOL_MIN_SIZE: + annotation: [] + type: public static final String + initialised value: min_size + VNODE_POOL_IDLE_TIMEOUT_SECONDS: + annotation: [] + type: public static final String + initialised value: idleTimeoutSeconds + VNODE_POOL_MAX_LIFETIME_SECONDS: + annotation: [] + type: public static final String + initialised value: maxLifetimeSeconds + VNODE_POOL_KEEPALIVE_TIME_SECONDS: + annotation: [] + type: public static final String + initialised value: keepaliveTimeSeconds + VNODE_VALIDATION_TIMEOUT_SECONDS: + annotation: [] + type: public static final String + initialised value: validationTimeoutSeconds +net.corda.schema.configuration.provider.ConfigSchemaException: + annotations: [] + type: public final class + extends: net.corda.v5.base.exceptions.CordaRuntimeException + implements: [] + interface: false + methods: {} +net.corda.schema.configuration.provider.SchemaProviderConfigFactory: + annotations: [] + type: public final class + extends: null + implements: [] + interface: false + methods: + getSchemaProvider: + annotations: + - NotNull + default: false + type: public static + returnType: net.corda.schema.common.provider.SchemaProvider +net.corda.schema.configuration.provider.impl.SchemaProviderConfigImpl: + annotations: [] + type: public final class + extends: net.corda.schema.common.provider.SchemaProvider + implements: [] + interface: false + methods: + getResourceInputStream: + annotations: + - NotNull + default: false + type: protected + returnType: java.io.InputStream + params: + resource: + annotation: + - NotNull + type: String + getResourceRoot: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: + - NotNull + default: false + type: public + returnType: java.io.InputStream + params: + key: + annotation: + - NotNull + type: String + version: + annotation: + - NotNull + type: net.corda.v5.base.versioning.Version + getSchemaFile: + annotations: + - NotNull + default: false + type: public + returnType: java.io.InputStream + params: + fileName: + annotation: + - NotNull + type: String + fields: + logger: + annotation: [] + type: protected final org.slf4j.Logger +net.corda.schema.cordapp.configuration.ConfigKeys: + annotations: [] + type: public final class + extends: null + implements: [] + interface: false + methods: {} + fields: + EXTERNAL_MESSAGING_CONFIG: + annotation: [] + type: public static final String + initialised value: corda.external.messaging +net.corda.schema.cordapp.configuration.provider.CordappConfigSchemaException: + annotations: [] + type: public final class + extends: net.corda.v5.base.exceptions.CordaRuntimeException + implements: [] + interface: false + methods: {} +net.corda.schema.cordapp.configuration.provider.SchemaProviderCordappConfigFactory: + annotations: [] + type: public final class + extends: null + implements: [] + interface: false + methods: + getSchemaProvider: + annotations: + - NotNull + default: false + type: public static + returnType: net.corda.schema.common.provider.SchemaProvider +net.corda.schema.cordapp.configuration.provider.impl.SchemaProviderCordappConfigImpl: + annotations: [] + type: public final class + extends: net.corda.schema.common.provider.SchemaProvider + implements: [] + interface: false + methods: + getResourceInputStream: + annotations: + - NotNull + default: false + type: protected + returnType: java.io.InputStream + params: + resource: + annotation: + - NotNull + type: String + getResourceRoot: + annotations: [] + default: false + type: public + returnType: String + getSchema: + annotations: + - NotNull + default: false + type: public + returnType: java.io.InputStream + params: + key: + annotation: + - NotNull + type: String + version: + annotation: + - NotNull + type: net.corda.v5.base.versioning.Version + getSchemaFile: + annotations: + - NotNull + default: false + type: public + returnType: java.io.InputStream + params: + fileName: + annotation: + - NotNull + type: String + fields: + logger: + annotation: [] + type: protected final org.slf4j.Logger diff --git a/data/db-schema/build.gradle b/data/db-schema/build.gradle index 6efccc3dab..160ce349f6 100644 --- a/data/db-schema/build.gradle +++ b/data/db-schema/build.gradle @@ -2,6 +2,7 @@ plugins { id 'corda-api.common-library' id 'corda.common-publishing' id 'corda.java-only' + id 'corda.api-scanner' } description 'Definition of Database Schema' diff --git a/data/db-schema/src/api/corda-db-schema-5.1.0.yaml b/data/db-schema/src/api/corda-db-schema-5.1.0.yaml new file mode 100644 index 0000000000..01461795b7 --- /dev/null +++ b/data/db-schema/src/api/corda-db-schema-5.1.0.yaml @@ -0,0 +1,220 @@ +net.corda.db.schema.CordaDb: + annotations: [] + type: public final class + extends: java.lang.Enum + implements: [] + interface: false + methods: + getPersistenceUnitName: + annotations: + - NotNull + default: false + type: public + returnType: String + valueOf: + annotations: [] + default: false + type: public static + returnType: net.corda.db.schema.CordaDb + params: {} + values: + annotations: [] + default: false + type: public static + returnType: "net.corda.db.schema.CordaDb[]" +net.corda.db.schema.DbSchema: + annotations: [] + type: public final class + extends: null + implements: [] + interface: false + methods: {} + fields: + RBAC: + annotation: [] + type: public static final String + initialised value: RBAC + CONFIG: + annotation: [] + type: public static final String + initialised value: CONFIG + CONFIG_TABLE: + annotation: [] + type: public static final String + initialised value: config + CONFIG_AUDIT_TABLE: + annotation: [] + type: public static final String + initialised value: config_audit + CONFIG_AUDIT_ID_SEQUENCE: + annotation: [] + type: public static final String + initialised value: config_audit_id_seq + CLUSTER_CERTIFICATE_DB_TABLE: + annotation: [] + type: public static final String + initialised value: cluster_certificate + CLUSTER_STATIC_NETWORK_INFO_TABLE: + annotation: [] + type: public static final String + initialised value: static_network_info + CONFIG_AUDIT_ID_SEQUENCE_ALLOC_SIZE: + annotation: [] + type: public static final int + initialised value: 1 + DB_CONNECTION_TABLE: + annotation: [] + type: public static final String + initialised value: db_connection + DB_CONNECTION_AUDIT_TABLE: + annotation: [] + type: public static final String + initialised value: db_connection_audit + DB_CONNECTION_AUDIT_ID_SEQUENCE: + annotation: [] + type: public static final String + initialised value: db_connection_audit_id_seq + DB_CONNECTION_AUDIT_ID_SEQUENCE_ALLOC_SIZE: + annotation: [] + type: public static final int + initialised value: 1 + VNODE: + annotation: [] + type: public static final String + initialised value: VNODE + VIRTUAL_NODE_DB_TABLE: + annotation: [] + type: public static final String + initialised value: virtual_node + HOLDING_IDENTITY_DB_TABLE: + annotation: [] + type: public static final String + initialised value: holding_identity + VNODE_VAULT_DB_TABLE: + annotation: [] + type: public static final String + initialised value: vnode_vault + VNODE_KEY_DB_TABLE: + annotation: [] + type: public static final String + initialised value: vnode_key + VNODE_CERTIFICATE_DB_TABLE: + annotation: [] + type: public static final String + initialised value: vnode_certificate + VNODE_ALLOWED_CERTIFICATE_DB_TABLE: + annotation: [] + type: public static final String + initialised value: vnode_mtls_allowed_certificate + VNODE_GROUP_REGISTRATION_TABLE: + annotation: [] + type: public static final String + initialised value: vnode_registration_request + VNODE_MEMBER_INFO: + annotation: [] + type: public static final String + initialised value: vnode_member_info + VNODE_GROUP_POLICY: + annotation: [] + type: public static final String + initialised value: vnode_group_policy + VNODE_MEMBER_SIGNATURE: + annotation: [] + type: public static final String + initialised value: vnode_member_signature + VNODE_GROUP_PARAMETERS: + annotation: [] + type: public static final String + initialised value: vnode_group_parameters + VNODE_GROUP_APPROVAL_RULES: + annotation: [] + type: public static final String + initialised value: vnode_group_approval_rules + VNODE_PRE_AUTH_TOKENS: + annotation: [] + type: public static final String + initialised value: vnode_pre_auth_tokens + VNODE_PERSISTENCE_REQUEST_ID_TABLE: + annotation: [] + type: public static final String + initialised value: vnode_persistence_request_id + LEDGER_CONSENSUAL_TRANSACTION_TABLE: + annotation: [] + type: public static final String + initialised value: consensual_transaction + LEDGER_CONSENSUAL_TRANSACTION_STATUS_TABLE: + annotation: [] + type: public static final String + initialised value: consensual_transaction_status + LEDGER_CONSENSUAL_TRANSACTION_SIGNATURE_TABLE: + annotation: [] + type: public static final String + initialised value: consensual_transaction_signature + LEDGER_CONSENSUAL_TRANSACTION_COMPONENT_TABLE: + annotation: [] + type: public static final String + initialised value: consensual_transaction_component + LEDGER_CONSENSUAL_CPK_TABLE: + annotation: [] + type: public static final String + initialised value: consensual_cpk + LEDGER_CONSENSUAL_TRANSACTION_CPK_TABLE: + annotation: [] + type: public static final String + initialised value: consensual_transaction_cpk + DB_MESSAGE_BUS: + annotation: [] + type: public static final String + initialised value: DB_MESSAGE_BUS + CRYPTO: + annotation: [] + type: public static final String + initialised value: CRYPTO + CRYPTO_WRAPPING_KEY_TABLE: + annotation: [] + type: public static final String + initialised value: crypto_wrapping_key + CRYPTO_SIGNING_KEY_TABLE: + annotation: [] + type: public static final String + initialised value: crypto_signing_key + CRYPTO_SIGNING_KEY_MATERIAL_TABLE: + annotation: [] + type: public static final String + initialised value: crypto_signing_key_material + CRYPTO_HSM_CONFIG_TABLE: + annotation: [] + type: public static final String + initialised value: crypto_hsm_config + CRYPTO_HSM_CATEGORY_MAP_TABLE: + annotation: [] + type: public static final String + initialised value: crypto_hsm_category_map + CRYPTO_HSM_ASSOCIATION_TABLE: + annotation: [] + type: public static final String + initialised value: crypto_hsm_association + CRYPTO_HSM_CATEGORY_ASSOCIATION_TABLE: + annotation: [] + type: public static final String + initialised value: crypto_hsm_category_association + UNIQUENESS: + annotation: [] + type: public static final String + initialised value: UNIQUENESS + UNIQUENESS_STATE_DETAILS_TABLE: + annotation: [] + type: public static final String + initialised value: uniqueness_state_details + UNIQUENESS_TX_DETAILS_TABLE: + annotation: [] + type: public static final String + initialised value: uniqueness_tx_details + UNIQUENESS_REJECTED_TX_TABLE: + annotation: [] + type: public static final String + initialised value: uniqueness_rejected_txs + STATE_MANAGER_TABLE: + annotation: [] + type: public static final String + initialised value: state diff --git a/data/membership-schema/build.gradle b/data/membership-schema/build.gradle index 65aad20642..720a8388d7 100644 --- a/data/membership-schema/build.gradle +++ b/data/membership-schema/build.gradle @@ -2,6 +2,7 @@ plugins { id 'corda-api.common-library' id 'corda.common-publishing' id 'corda.java-only' + id 'corda.api-scanner' } description 'Schema definitions for membership operations' diff --git a/data/membership-schema/src/api/corda-membership-schema-5.1.0.yaml b/data/membership-schema/src/api/corda-membership-schema-5.1.0.yaml new file mode 100644 index 0000000000..03be794dbd --- /dev/null +++ b/data/membership-schema/src/api/corda-membership-schema-5.1.0.yaml @@ -0,0 +1,139 @@ +net.corda.schema.membership.MembershipSchema: + annotations: [] + type: public abstract class + extends: null + implements: [] + interface: false + methods: + getSchemaName: + annotations: + - NotNull + default: false + type: public final + returnType: String +net.corda.schema.membership.MembershipSchema$GroupPolicySchema: + annotations: [] + type: public static final class + extends: net.corda.schema.membership.MembershipSchema + implements: [] + interface: false + methods: + getSchemaName: + annotations: + - NotNull + default: false + type: public final + returnType: String + fields: + Default: + annotation: [] + type: public static final net.corda.schema.membership.MembershipSchema$GroupPolicySchema +net.corda.schema.membership.MembershipSchema$RegistrationContextSchema: + annotations: [] + type: public static final class + extends: net.corda.schema.membership.MembershipSchema + implements: [] + interface: false + methods: + getSchemaName: + annotations: + - NotNull + default: false + type: public final + returnType: String + fields: + StaticMember: + annotation: [] + type: public static final net.corda.schema.membership.MembershipSchema$RegistrationContextSchema + DynamicMember: + annotation: [] + type: public static final net.corda.schema.membership.MembershipSchema$RegistrationContextSchema + Mgm: + annotation: [] + type: public static final net.corda.schema.membership.MembershipSchema$RegistrationContextSchema +net.corda.schema.membership.provider.MembershipSchemaException: + annotations: [] + type: public final class + extends: net.corda.v5.base.exceptions.CordaRuntimeException + implements: [] + interface: false + methods: {} +net.corda.schema.membership.provider.MembershipSchemaProvider: + annotations: [] + type: public interface + extends: [] + interface: true + methods: + getSchema: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.io.InputStream + params: + schema: + annotation: + - NotNull + type: net.corda.schema.membership.MembershipSchema + version: + annotation: + - NotNull + type: net.corda.v5.base.versioning.Version + getSchemaFile: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.io.InputStream + params: + fileName: + annotation: + - NotNull + type: String +net.corda.schema.membership.provider.MembershipSchemaProviderFactory: + annotations: [] + type: public final class + extends: null + implements: [] + interface: false + methods: + getSchemaProvider: + annotations: + - NotNull + default: false + type: public static + returnType: net.corda.schema.membership.provider.MembershipSchemaProvider +net.corda.schema.membership.provider.impl.MembershipSchemaProviderImpl: + annotations: [] + type: public class + extends: null + implements: + - net.corda.schema.membership.provider.MembershipSchemaProvider + interface: false + methods: + getSchema: + annotations: + - NotNull + default: false + type: public + returnType: java.io.InputStream + params: + schema: + annotation: + - NotNull + type: net.corda.schema.membership.MembershipSchema + version: + annotation: + - NotNull + type: net.corda.v5.base.versioning.Version + getSchemaFile: + annotations: + - NotNull + default: false + type: public + returnType: java.io.InputStream + params: + fileName: + annotation: + - NotNull + type: String diff --git a/data/rbac-schema/build.gradle b/data/rbac-schema/build.gradle index 8f881137e3..d1d1029e0f 100644 --- a/data/rbac-schema/build.gradle +++ b/data/rbac-schema/build.gradle @@ -2,6 +2,7 @@ plugins { id 'corda-api.common-library' id 'corda.common-publishing' id 'corda.java-only' + id 'corda.api-scanner' } description 'Schema Definition for Role Based Access Control' diff --git a/data/rbac-schema/src/api/corda-rbac-schema-5.1.0.yaml b/data/rbac-schema/src/api/corda-rbac-schema-5.1.0.yaml new file mode 100644 index 0000000000..b79c74030b --- /dev/null +++ b/data/rbac-schema/src/api/corda-rbac-schema-5.1.0.yaml @@ -0,0 +1,44 @@ +net.corda.rbac.schema.RbacKeys: + annotations: [] + type: public final class + extends: null + implements: [] + interface: false + methods: {} + fields: + START_FLOW_PREFIX: + annotation: [] + type: public static final String + initialised value: StartFlow + PREFIX_SEPARATOR: + annotation: [] + type: public static final String + initialised value: ':' + UUID_REGEX: + annotation: [] + type: public static final String + initialised value: "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[1-5][a-fA-F0-9]{3}-[89aAbB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}" + VNODE_SHORT_HASH_REGEX: + annotation: [] + type: public static final String + initialised value: "[a-fA-F0-9]{12}" + VNODE_STATE_REGEX: + annotation: [] + type: public static final String + initialised value: "[_a-zA-Z0-9]{3,255}" + USER_REGEX: + annotation: [] + type: public static final String + initialised value: "[-._@a-zA-Z0-9]{3,255}" + USER_URL_REGEX: + annotation: [] + type: public static final String + initialised value: "[-._a-zA-Z0-9]{3,200}[%40]{0,3}[-._a-zA-Z0-9]{0,50}" + CLIENT_REQ_REGEX: + annotation: [] + type: public static final String + initialised value: "[-._A-Za-z0-9]{1,250}" + FLOW_NAME_REGEX: + annotation: [] + type: public static final String + initialised value: "[._$a-zA-Z0-9]{1,250}" diff --git a/data/topic-schema/build.gradle b/data/topic-schema/build.gradle index 0dce24b7b1..4092239b19 100644 --- a/data/topic-schema/build.gradle +++ b/data/topic-schema/build.gradle @@ -2,6 +2,7 @@ plugins { id 'corda-api.common-library' id 'corda.common-publishing' id 'corda.java-only' + id 'corda.api-scanner' } description 'Definition of Topics' diff --git a/data/topic-schema/src/api/corda-topic-schema-5.1.0.yaml b/data/topic-schema/src/api/corda-topic-schema-5.1.0.yaml new file mode 100644 index 0000000000..9a01c2156b --- /dev/null +++ b/data/topic-schema/src/api/corda-topic-schema-5.1.0.yaml @@ -0,0 +1,487 @@ +net.corda.schema.Schemas: + annotations: [] + type: public final class + extends: null + implements: [] + interface: false + methods: + getDLQTopic: + annotations: + - NotNull + default: false + type: public static + returnType: String + params: + topic: + annotation: + - NotNull + type: String + getRPCResponseTopic: + annotations: + - NotNull + default: false + type: public static + returnType: String + params: + topic: + annotation: + - NotNull + type: String + getStateAndEventStateTopic: + annotations: + - NotNull + default: false + type: public static + returnType: String + params: + topic: + annotation: + - NotNull + type: String + fields: + TOPIC_NAME: + annotation: [] + type: public static final String + initialised value: topicName + NUM_PARTITIONS: + annotation: [] + type: public static final String + initialised value: numPartitions + REPLICATION_FACTOR: + annotation: [] + type: public static final String + initialised value: replicationFactor + TOPIC_CONFIG: + annotation: [] + type: public static final String + initialised value: config +net.corda.schema.Schemas$AvroSchema: + annotations: [] + type: public static final class + extends: null + implements: [] + interface: false + methods: {} + fields: + AVRO_SCHEMA_TOPIC: + annotation: [] + type: public static final String + initialised value: avro.schema +net.corda.schema.Schemas$Certificates: + annotations: [] + type: public static final class + extends: null + implements: [] + interface: false + methods: {} + fields: + CERTIFICATES_RPC_TOPIC: + annotation: [] + type: public static final String + initialised value: certificates.rpc.ops + CERTIFICATES_RPC_RESPONSE_TOPIC: + annotation: [] + type: public static final String +net.corda.schema.Schemas$Config: + annotations: [] + type: public static final class + extends: null + implements: [] + interface: false + methods: {} + fields: + CONFIG_TOPIC: + annotation: [] + type: public static final String + initialised value: config.topic + CONFIG_MGMT_REQUEST_TOPIC: + annotation: [] + type: public static final String + initialised value: config.management.request + CONFIG_MGMT_REQUEST_RESP_TOPIC: + annotation: [] + type: public static final String +net.corda.schema.Schemas$Crypto: + annotations: [] + type: public static final class + extends: null + implements: [] + interface: false + methods: {} + fields: + RPC_HSM_REGISTRATION_MESSAGE_TOPIC: + annotation: [] + type: public static final String + initialised value: crypto.hsm.rpc.registration + RPC_HSM_REGISTRATION_MESSAGE_RESPONSE_TOPIC: + annotation: [] + type: public static final String + FLOW_OPS_MESSAGE_TOPIC: + annotation: [] + type: public static final String + initialised value: crypto.ops.flow + RPC_OPS_MESSAGE_TOPIC: + annotation: [] + type: public static final String + initialised value: crypto.ops.rpc + RPC_OPS_MESSAGE_RESPONSE_TOPIC: + annotation: [] + type: public static final String +net.corda.schema.Schemas$Flow: + annotations: [] + type: public static final class + extends: null + implements: [] + interface: false + methods: {} + fields: + FLOW_STATUS_TOPIC: + annotation: [] + type: public static final String + initialised value: flow.status + FLOW_EVENT_TOPIC: + annotation: [] + type: public static final String + initialised value: flow.event + FLOW_EVENT_STATE_TOPIC: + annotation: [] + type: public static final String + FLOW_EVENT_DLQ_TOPIC: + annotation: [] + type: public static final String + FLOW_MAPPER_EVENT_TOPIC: + annotation: [] + type: public static final String + initialised value: flow.mapper.event + FLOW_MAPPER_EVENT_STATE_TOPIC: + annotation: [] + type: public static final String + FLOW_MAPPER_EVENT_DLQ_TOPIC: + annotation: [] + type: public static final String +net.corda.schema.Schemas$Membership: + annotations: [] + type: public static final class + extends: null + implements: [] + interface: false + methods: {} + fields: + GROUP_PARAMETERS_TOPIC: + annotation: [] + type: public static final String + initialised value: membership.group.params + MEMBER_LIST_TOPIC: + annotation: [] + type: public static final String + initialised value: membership.members + MEMBERSHIP_RPC_TOPIC: + annotation: [] + type: public static final String + initialised value: membership.rpc.ops + MEMBERSHIP_RPC_RESPONSE_TOPIC: + annotation: [] + type: public static final String + MEMBERSHIP_DB_RPC_TOPIC: + annotation: [] + type: public static final String + initialised value: membership.db.rpc.ops + MEMBERSHIP_DB_RPC_RESPONSE_TOPIC: + annotation: [] + type: public static final String + MEMBERSHIP_DB_ASYNC_TOPIC: + annotation: [] + type: public static final String + initialised value: membership.db.async.ops + MEMBERSHIP_DB_ASYNC_STATE_TOPIC: + annotation: [] + type: public static final String + MEMBERSHIP_DB_ASYNC_DLQ_TOPIC: + annotation: [] + type: public static final String + MEMBERSHIP_ASYNC_REQUEST_TOPIC: + annotation: [] + type: public static final String + initialised value: membership.async.request + MEMBERSHIP_ASYNC_REQUEST_RETRIES_TOPIC: + annotation: [] + type: public static final String + initialised value: membership.async.request.retries + MEMBERSHIP_ASYNC_REQUEST_RETRIES_STATE_TOPIC: + annotation: [] + type: public static final String + MEMBERSHIP_ASYNC_REQUEST_RETRIES_DLQ_TOPIC: + annotation: [] + type: public static final String + MEMBERSHIP_ACTIONS_TOPIC: + annotation: [] + type: public static final String + initialised value: membership.actions + EVENT_TOPIC: + annotation: [] + type: public static final String + initialised value: membership.event + REGISTRATION_COMMAND_TOPIC: + annotation: [] + type: public static final String + initialised value: membership.registration + REGISTRATION_STATE_TOPIC: + annotation: [] + type: public static final String + REGISTRATION_DLQ_TOPIC: + annotation: [] + type: public static final String + SYNCHRONIZATION_TOPIC: + annotation: [] + type: public static final String + initialised value: membership.sync +net.corda.schema.Schemas$P2P: + annotations: [] + type: public static final class + extends: null + implements: [] + interface: false + methods: {} + fields: + P2P_OUT_TOPIC: + annotation: [] + type: public static final String + initialised value: p2p.out + P2P_OUT_TOPIC_DLQ: + annotation: [] + type: public static final String + P2P_OUT_MARKERS: + annotation: [] + type: public static final String + initialised value: p2p.out.markers + P2P_OUT_MARKERS_STATE: + annotation: [] + type: public static final String + P2P_OUT_MARKERS_DLQ: + annotation: [] + type: public static final String + P2P_IN_TOPIC: + annotation: [] + type: public static final String + initialised value: p2p.in + P2P_HOSTED_IDENTITIES_TOPIC: + annotation: [] + type: public static final String + initialised value: p2p.hosted.identities + P2P_MGM_ALLOWED_CLIENT_CERTIFICATE_SUBJECTS: + annotation: [] + type: public static final String + initialised value: p2p.mgm.allowed.client.certificate.subjects + LINK_OUT_TOPIC: + annotation: [] + type: public static final String + initialised value: link.out + LINK_IN_TOPIC: + annotation: [] + type: public static final String + initialised value: link.in + SESSION_OUT_PARTITIONS: + annotation: [] + type: public static final String + initialised value: session.out.partitions + GATEWAY_TLS_TRUSTSTORES: + annotation: [] + type: public static final String + initialised value: gateway.tls.truststores + GATEWAY_TLS_CERTIFICATES: + annotation: [] + type: public static final String + initialised value: gateway.tls.certs + GATEWAY_REVOCATION_CHECK_REQUEST_TOPIC: + annotation: [] + type: public static final String + initialised value: gateway.revocation.request + GATEWAY_REVOCATION_CHECK_RESPONSE_TOPIC: + annotation: [] + type: public static final String + P2P_MTLS_MEMBER_CLIENT_CERTIFICATE_SUBJECT_TOPIC: + annotation: [] + type: public static final String + initialised value: p2p.mtls.member.client.certificate.subject + GATEWAY_ALLOWED_CLIENT_CERTIFICATE_SUBJECTS: + annotation: [] + type: public static final String + initialised value: gateway.allowed.client.certificate.subjects +net.corda.schema.Schemas$Permissions: + annotations: [] + type: public static final class + extends: null + implements: [] + interface: false + methods: {} + fields: + PERMISSIONS_USER_SUMMARY_TOPIC: + annotation: [] + type: public static final String + initialised value: permissions.user.summary +net.corda.schema.Schemas$Persistence: + annotations: [] + type: public static final class + extends: null + implements: [] + interface: false + methods: {} + fields: + PERSISTENCE_ENTITY_PROCESSOR_TOPIC: + annotation: [] + type: public static final String + initialised value: persistence.entity.processor + PERSISTENCE_LEDGER_PROCESSOR_TOPIC: + annotation: [] + type: public static final String + initialised value: persistence.ledger.processor +net.corda.schema.Schemas$Rest: + annotations: [] + type: public static final class + extends: null + implements: [] + interface: false + methods: {} + fields: + REST_PERM_MGMT_REQ_TOPIC: + annotation: [] + type: public static final String + initialised value: rest.permissions.management + REST_PERM_MGMT_RESP_TOPIC: + annotation: [] + type: public static final String + REST_PERM_USER_TOPIC: + annotation: [] + type: public static final String + initialised value: rest.permissions.user + REST_PERM_GROUP_TOPIC: + annotation: [] + type: public static final String + initialised value: rest.permissions.group + REST_PERM_ROLE_TOPIC: + annotation: [] + type: public static final String + initialised value: rest.permissions.role + REST_PERM_ENTITY_TOPIC: + annotation: [] + type: public static final String + initialised value: rest.permissions.permission +net.corda.schema.Schemas$ScheduledTask: + annotations: [] + type: public static final class + extends: null + implements: [] + interface: false + methods: {} + fields: + SCHEDULED_TASK_DB_PROCESSOR: + annotation: [] + type: public static final String + initialised value: scheduled.task.db.processor +net.corda.schema.Schemas$Services: + annotations: [] + type: public static final class + extends: null + implements: [] + interface: false + methods: {} + fields: + TOKEN_CACHE_EVENT: + annotation: [] + type: public static final String + initialised value: services.token.event + TOKEN_CACHE_EVENT_STATE: + annotation: [] + type: public static final String + TOKEN_CACHE_EVENT_DLQ: + annotation: [] + type: public static final String + TOKEN_CACHE_SYNC_EVENT: + annotation: [] + type: public static final String + initialised value: services.token.sync.event + TOKEN_CACHE_SYNC_EVENT_STATE: + annotation: [] + type: public static final String + TOKEN_CACHE_SYNC_EVENT_DLQ: + annotation: [] + type: public static final String +net.corda.schema.Schemas$UniquenessChecker: + annotations: [] + type: public static final class + extends: null + implements: [] + interface: false + methods: {} + fields: + UNIQUENESS_CHECK_TOPIC: + annotation: [] + type: public static final String + initialised value: uniqueness.check +net.corda.schema.Schemas$Verification: + annotations: [] + type: public static final class + extends: null + implements: [] + interface: false + methods: {} + fields: + VERIFICATION_LEDGER_PROCESSOR_TOPIC: + annotation: [] + type: public static final String + initialised value: verification.ledger.processor +net.corda.schema.Schemas$VirtualNode: + annotations: [] + type: public static final class + extends: null + implements: [] + interface: false + methods: {} + fields: + VIRTUAL_NODE_INFO_TOPIC: + annotation: [] + type: public static final String + initialised value: virtual.node.info + VIRTUAL_NODE_ASYNC_REQUEST_TOPIC: + annotation: [] + type: public static final String + initialised value: virtual.node.async.request + VIRTUAL_NODE_OPERATION_STATUS_TOPIC: + annotation: [] + type: public static final String + initialised value: virtual.node.operation.status + VIRTUAL_NODE_CREATION_REQUEST_TOPIC: + annotation: [] + type: public static final String + initialised value: virtual.node.creation.request + VIRTUAL_NODE_CREATION_REQUEST_RESPONSE_TOPIC: + annotation: [] + type: public static final String + CPI_INFO_TOPIC: + annotation: [] + type: public static final String + initialised value: cpi.info + CPI_UPLOAD_TOPIC: + annotation: [] + type: public static final String + initialised value: cpi.upload + CPI_UPLOAD_STATUS_TOPIC: + annotation: [] + type: public static final String + initialised value: cpi.upload.status + CPK_FILE_TOPIC: + annotation: [] + type: public static final String + initialised value: cpk.file +net.corda.schema.TestSchema: + annotations: [] + type: public final class + extends: null + implements: [] + interface: false + methods: {} + fields: + APP_RECEIVED_MESSAGES_TOPIC: + annotation: [] + type: public static final String + initialised value: p2p.app.received_msg diff --git a/gradle.properties b/gradle.properties index 10fdad95d7..269a551a9a 100644 --- a/gradle.properties +++ b/gradle.properties @@ -29,7 +29,7 @@ publicArtifactURL = https://download.corda.net/maven # Gradle # dokka need more metaspace - https://github.com/Kotlin/dokka/issues/1405 org.gradle.jvmargs=-Dfile.encoding=UTF-8 -XX:MaxMetaspaceSize=2g -internalPublishVersion = 1.+ +internalPluginVersion = 1.+ dokkaVersion = 1.8.+ detektPluginVersion = 1.22.+ dependencyCheckVersion=0.46.+ diff --git a/ledger/ledger-common/build.gradle b/ledger/ledger-common/build.gradle index e662bf6101..96e26c32e0 100644 --- a/ledger/ledger-common/build.gradle +++ b/ledger/ledger-common/build.gradle @@ -2,6 +2,7 @@ plugins { id 'corda-api.common-library' id 'corda.common-publishing' id 'corda.java-only' + id 'corda.api-scanner' } description 'Corda Ledger Common' diff --git a/ledger/ledger-common/src/api/corda-ledger-common-5.1.0.yaml b/ledger/ledger-common/src/api/corda-ledger-common-5.1.0.yaml new file mode 100644 index 0000000000..b6c37c94e3 --- /dev/null +++ b/ledger/ledger-common/src/api/corda-ledger-common-5.1.0.yaml @@ -0,0 +1,238 @@ +net.corda.v5.ledger.common.NotaryLookup: + annotations: + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: + getNotaryServices: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: java.util.Collection + isNotaryVirtualNode: + annotations: + - Suspendable + default: false + type: public abstract + returnType: boolean + params: + virtualNodeName: + annotation: + - NotNull + type: net.corda.v5.base.types.MemberX500Name + lookup: + annotations: + - Suspendable + - Nullable + default: false + type: public abstract + returnType: net.corda.v5.membership.NotaryInfo + params: + notaryServiceName: + annotation: + - NotNull + type: net.corda.v5.base.types.MemberX500Name +net.corda.v5.ledger.common.transaction.CordaPackageSummary: + annotations: + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: + getFileChecksum: + annotations: + - NotNull + default: false + type: public abstract + returnType: String + getName: + annotations: + - NotNull + default: false + type: public abstract + returnType: String + getSignerSummaryHash: + annotations: + - Nullable + default: false + type: public abstract + returnType: String + getVersion: + annotations: + - NotNull + default: false + type: public abstract + returnType: String +net.corda.v5.ledger.common.transaction.TransactionMetadata: + annotations: + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: + getDigestSettings: + annotations: + - NotNull + default: false + type: public abstract + returnType: "java.util.Map" + getLedgerModel: + annotations: + - NotNull + default: false + type: public abstract + returnType: String + getLedgerVersion: + annotations: [] + default: false + type: public abstract + returnType: int + getPlatformVersion: + annotations: [] + default: false + type: public abstract + returnType: int + getTransactionSubtype: + annotations: + - Nullable + default: false + type: public abstract + returnType: String +net.corda.v5.ledger.common.transaction.TransactionNoAvailableKeysException: + annotations: [] + type: public final class + extends: net.corda.v5.base.exceptions.CordaRuntimeException + implements: [] + interface: false + methods: {} +net.corda.v5.ledger.common.transaction.TransactionSignatureException: + annotations: [] + type: public class + extends: net.corda.v5.base.exceptions.CordaRuntimeException + implements: [] + interface: false + methods: + getTransactionId: + annotations: + - NotNull + default: false + type: public + returnType: net.corda.v5.crypto.SecureHash +net.corda.v5.ledger.common.transaction.TransactionSignatureService: + annotations: + - DoNotImplement + type: public interface + extends: + - net.corda.v5.ledger.common.transaction.TransactionSignatureVerificationService + interface: true + methods: + sign: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: java.util.List + params: + transaction: + annotation: + - NotNull + type: net.corda.v5.ledger.common.transaction.TransactionWithMetadata + publicKeys: + annotation: + - NotNull + type: Iterable + signBatch: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: java.util.List> + params: + transactions: + annotation: + - NotNull + type: java.util.List + publicKeys: + annotation: + - NotNull + type: Iterable + verifySignature: + annotations: [] + default: false + type: public abstract + returnType: void + params: + secureHash: + annotation: + - NotNull + type: net.corda.v5.crypto.SecureHash + signatureWithMetadata: + annotation: + - NotNull + type: net.corda.v5.application.crypto.DigitalSignatureAndMetadata + publicKey: + annotation: + - NotNull + type: java.security.PublicKey +net.corda.v5.ledger.common.transaction.TransactionSignatureVerificationService: + annotations: + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: + verifySignature: + annotations: [] + default: false + type: public abstract + returnType: void + params: + secureHash: + annotation: + - NotNull + type: net.corda.v5.crypto.SecureHash + signatureWithMetadata: + annotation: + - NotNull + type: net.corda.v5.application.crypto.DigitalSignatureAndMetadata + publicKey: + annotation: + - NotNull + type: java.security.PublicKey +net.corda.v5.ledger.common.transaction.TransactionVerificationException: + annotations: [] + type: public final class + extends: net.corda.v5.base.exceptions.CordaRuntimeException + implements: [] + interface: false + methods: + getTransactionId: + annotations: + - NotNull + default: false + type: public + returnType: net.corda.v5.crypto.SecureHash +net.corda.v5.ledger.common.transaction.TransactionWithMetadata: + annotations: + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: + getId: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.crypto.SecureHash + getMetadata: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.common.transaction.TransactionMetadata diff --git a/ledger/ledger-consensual/build.gradle b/ledger/ledger-consensual/build.gradle index f7ce41033b..0517c33436 100644 --- a/ledger/ledger-consensual/build.gradle +++ b/ledger/ledger-consensual/build.gradle @@ -2,6 +2,7 @@ plugins { id 'corda-api.common-library' id 'corda.common-publishing' id 'corda.java-only' + id 'corda.api-scanner' } description 'Corda Consensual Ledger' diff --git a/ledger/ledger-consensual/src/api/corda-ledger-consensual-5.1.0.yaml b/ledger/ledger-consensual/src/api/corda-ledger-consensual-5.1.0.yaml new file mode 100644 index 0000000000..90e65b5068 --- /dev/null +++ b/ledger/ledger-consensual/src/api/corda-ledger-consensual-5.1.0.yaml @@ -0,0 +1,193 @@ +net.corda.v5.ledger.consensual.ConsensualLedgerService: + annotations: + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: + createTransactionBuilder: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.consensual.transaction.ConsensualTransactionBuilder + finalize: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.consensual.transaction.ConsensualSignedTransaction + params: + transaction: + annotation: + - NotNull + type: net.corda.v5.ledger.consensual.transaction.ConsensualSignedTransaction + sessions: + annotation: + - NotNull + type: java.util.List + findLedgerTransaction: + annotations: + - Suspendable + - Nullable + default: false + type: public abstract + returnType: net.corda.v5.ledger.consensual.transaction.ConsensualLedgerTransaction + params: + id: + annotation: + - NotNull + type: net.corda.v5.crypto.SecureHash + findSignedTransaction: + annotations: + - Suspendable + - Nullable + default: false + type: public abstract + returnType: net.corda.v5.ledger.consensual.transaction.ConsensualSignedTransaction + params: + id: + annotation: + - NotNull + type: net.corda.v5.crypto.SecureHash + receiveFinality: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.consensual.transaction.ConsensualSignedTransaction + params: + session: + annotation: + - NotNull + type: net.corda.v5.application.messaging.FlowSession + validator: + annotation: + - NotNull + type: net.corda.v5.ledger.consensual.transaction.ConsensualTransactionValidator +net.corda.v5.ledger.consensual.ConsensualState: + annotations: + - CordaSerializable + type: public interface + extends: [] + interface: true + methods: + getParticipants: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.util.List + verify: + annotations: [] + default: false + type: public abstract + returnType: void + params: + transaction: + annotation: + - NotNull + type: net.corda.v5.ledger.consensual.transaction.ConsensualLedgerTransaction +net.corda.v5.ledger.consensual.transaction.ConsensualLedgerTransaction: + annotations: + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: + getId: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.crypto.SecureHash + getRequiredSignatories: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.util.Set + getStates: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.util.List + getTimestamp: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.time.Instant +net.corda.v5.ledger.consensual.transaction.ConsensualSignedTransaction: + annotations: + - CordaSerializable + - DoNotImplement + type: public interface + extends: + - net.corda.v5.ledger.common.transaction.TransactionWithMetadata + interface: true + methods: + getSignatures: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.util.List + toLedgerTransaction: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.consensual.transaction.ConsensualLedgerTransaction +net.corda.v5.ledger.consensual.transaction.ConsensualTransactionBuilder: + annotations: + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: + getStates: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.util.List + toSignedTransaction: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.consensual.transaction.ConsensualSignedTransaction + withStates: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.consensual.transaction.ConsensualTransactionBuilder + params: + states: + annotation: [] + type: "net.corda.v5.ledger.consensual.ConsensualState[]" +net.corda.v5.ledger.consensual.transaction.ConsensualTransactionValidator: + annotations: [] + type: public interface + extends: + - java.io.Serializable + interface: true + methods: + checkTransaction: + annotations: + - Suspendable + default: false + type: public abstract + returnType: void + params: + transaction: + annotation: + - NotNull + type: net.corda.v5.ledger.consensual.transaction.ConsensualLedgerTransaction diff --git a/ledger/ledger-utxo/build.gradle b/ledger/ledger-utxo/build.gradle index 0b383a664c..1bb4115d44 100644 --- a/ledger/ledger-utxo/build.gradle +++ b/ledger/ledger-utxo/build.gradle @@ -2,6 +2,7 @@ plugins { id 'corda-api.common-library' id 'corda.common-publishing' id 'corda.java-only' + id 'corda.api-scanner' } description 'Corda UTXO Ledger' diff --git a/ledger/ledger-utxo/src/api/corda-ledger-utxo-5.1.0.yaml b/ledger/ledger-utxo/src/api/corda-ledger-utxo-5.1.0.yaml new file mode 100644 index 0000000000..09f8a3fe0a --- /dev/null +++ b/ledger/ledger-utxo/src/api/corda-ledger-utxo-5.1.0.yaml @@ -0,0 +1,2135 @@ +net.corda.v5.ledger.utxo.Attachment: + annotations: + - CordaSerializable + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: + extractFile: + annotations: [] + default: false + type: public abstract + returnType: void + params: + path: + annotation: + - NotNull + type: String + output: + annotation: + - NotNull + type: java.io.OutputStream + getId: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.crypto.SecureHash + getSignatories: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.util.List + getSize: + annotations: [] + default: false + type: public abstract + returnType: int + open: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.io.InputStream + openAsZip: + annotations: + - NotNull + default: true + type: public + returnType: java.util.zip.ZipInputStream +net.corda.v5.ledger.utxo.BelongsToContract: + annotations: [] + type: public @interface + interface: false + methods: + value: + annotations: + - NotNull + default: false + type: public abstract + returnType: Class +net.corda.v5.ledger.utxo.Command: + annotations: + - CordaSerializable + type: public interface + extends: [] + interface: true + methods: {} +net.corda.v5.ledger.utxo.Contract: + annotations: [] + type: public interface + extends: [] + interface: true + methods: + isVisible: + annotations: + - Suspendable + default: true + type: public + returnType: boolean + params: + state: + annotation: + - NotNull + type: net.corda.v5.ledger.utxo.ContractState + checker: + annotation: + - NotNull + type: net.corda.v5.ledger.utxo.VisibilityChecker + verify: + annotations: [] + default: false + type: public abstract + returnType: void + params: + transaction: + annotation: + - NotNull + type: net.corda.v5.ledger.utxo.transaction.UtxoLedgerTransaction +net.corda.v5.ledger.utxo.ContractState: + annotations: + - CordaSerializable + type: public interface + extends: [] + interface: true + methods: + getParticipants: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.util.List +net.corda.v5.ledger.utxo.ContractVerificationException: + annotations: [] + type: public final class + extends: net.corda.v5.base.exceptions.CordaRuntimeException + implements: [] + interface: false + methods: + getFailureReasons: + annotations: + - NotNull + default: false + type: public + returnType: java.util.List + getTransactionId: + annotations: + - NotNull + default: false + type: public + returnType: net.corda.v5.crypto.SecureHash +net.corda.v5.ledger.utxo.ContractVerificationFailure: + annotations: + - CordaSerializable + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: + getContractClassName: + annotations: + - NotNull + default: false + type: public abstract + returnType: String + getContractStateClassNames: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.util.List + getExceptionClassName: + annotations: + - NotNull + default: false + type: public abstract + returnType: String + getExceptionMessage: + annotations: + - NotNull + default: false + type: public abstract + returnType: String +net.corda.v5.ledger.utxo.EncumbranceGroup: + annotations: + - CordaSerializable + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: + getSize: + annotations: [] + default: false + type: public abstract + returnType: int + getTag: + annotations: + - NotNull + default: false + type: public abstract + returnType: String +net.corda.v5.ledger.utxo.FinalizationResult: + annotations: + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: + getTransaction: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.transaction.UtxoSignedTransaction +net.corda.v5.ledger.utxo.StateAndRef: + annotations: + - CordaSerializable + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: + getRef: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.StateRef + getState: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.TransactionState +net.corda.v5.ledger.utxo.StateRef: + annotations: + - CordaSerializable + type: public final class + extends: null + implements: [] + interface: false + methods: + equals: + annotations: [] + default: false + type: public + returnType: boolean + params: + o: + annotation: + - Nullable + type: Object + getIndex: + annotations: [] + default: false + type: public + returnType: int + getTransactionId: + annotations: + - NotNull + default: false + type: public + returnType: net.corda.v5.crypto.SecureHash + hashCode: + annotations: [] + default: false + type: public + returnType: int + parse: + annotations: [] + default: false + type: public static + returnType: net.corda.v5.ledger.utxo.StateRef + params: + value: + annotation: + - NotNull + type: String + digestService: + annotation: [] + type: net.corda.v5.application.crypto.DigestService + toString: + annotations: [] + default: false + type: public + returnType: String +net.corda.v5.ledger.utxo.TimeWindow: + annotations: + - CordaSerializable + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: + contains: + annotations: [] + default: false + type: public abstract + returnType: boolean + params: + instant: + annotation: + - NotNull + type: java.time.Instant + getFrom: + annotations: + - Nullable + default: false + type: public abstract + returnType: java.time.Instant + getUntil: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.time.Instant +net.corda.v5.ledger.utxo.TransactionState: + annotations: + - CordaSerializable + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: + getContractState: + annotations: + - NotNull + default: false + type: public abstract + returnType: T + getContractStateType: + annotations: + - NotNull + default: false + type: public abstract + returnType: Class + getContractType: + annotations: + - NotNull + default: false + type: public abstract + returnType: Class + getEncumbranceGroup: + annotations: + - Nullable + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.EncumbranceGroup + getNotaryKey: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.security.PublicKey + getNotaryName: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.base.types.MemberX500Name +net.corda.v5.ledger.utxo.UtxoLedgerService: + annotations: + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: + createTransactionBuilder: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.transaction.UtxoTransactionBuilder + filterSignedTransaction: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.transaction.filtered.UtxoFilteredTransactionBuilder + params: + transaction: + annotation: + - NotNull + type: net.corda.v5.ledger.utxo.transaction.UtxoSignedTransaction + finalize: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.FinalizationResult + params: + transaction: + annotation: + - NotNull + type: net.corda.v5.ledger.utxo.transaction.UtxoSignedTransaction + sessions: + annotation: + - NotNull + type: java.util.List + findLedgerTransaction: + annotations: + - Suspendable + - Nullable + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.transaction.UtxoLedgerTransaction + params: + id: + annotation: + - NotNull + type: net.corda.v5.crypto.SecureHash + findSignedTransaction: + annotations: + - Suspendable + - Nullable + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.transaction.UtxoSignedTransaction + params: + id: + annotation: + - NotNull + type: net.corda.v5.crypto.SecureHash + findUnconsumedStatesByExactType: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: java.util.List> + params: + type: + annotation: + - NotNull + type: Class + findUnconsumedStatesByType: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: java.util.List> + params: + type: + annotation: + - NotNull + type: Class + query: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.query.VaultNamedParameterizedQuery + params: + queryName: + annotation: + - NotNull + type: String + resultClass: + annotation: + - NotNull + type: Class + receiveFinality: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.FinalizationResult + params: + session: + annotation: + - NotNull + type: net.corda.v5.application.messaging.FlowSession + validator: + annotation: + - NotNull + type: net.corda.v5.ledger.utxo.transaction.UtxoTransactionValidator + receiveTransactionBuilder: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.transaction.UtxoTransactionBuilder + params: + session: + annotation: + - NotNull + type: net.corda.v5.application.messaging.FlowSession + resolve: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.StateAndRef + params: + stateRef: + annotation: + - NotNull + type: net.corda.v5.ledger.utxo.StateRef + sendAndReceiveTransactionBuilder: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.transaction.UtxoTransactionBuilder + params: + transactionBuilder: + annotation: + - NotNull + type: net.corda.v5.ledger.utxo.transaction.UtxoTransactionBuilder + session: + annotation: + - NotNull + type: net.corda.v5.application.messaging.FlowSession + sendUpdatedTransactionBuilder: + annotations: + - Suspendable + default: false + type: public abstract + returnType: void + params: + transactionBuilder: + annotation: + - NotNull + type: net.corda.v5.ledger.utxo.transaction.UtxoTransactionBuilder + session: + annotation: + - NotNull + type: net.corda.v5.application.messaging.FlowSession +net.corda.v5.ledger.utxo.VisibilityChecker: + annotations: + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: + containsMySigningKeys: + annotations: + - Suspendable + default: false + type: public abstract + returnType: boolean + params: + keys: + annotation: + - NotNull + type: Iterable +net.corda.v5.ledger.utxo.observer.TokenStateObserverContext: + annotations: [] + type: public interface + extends: [] + interface: true + methods: + getDigestService: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.application.crypto.DigestService + getStateAndRef: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.StateAndRef +net.corda.v5.ledger.utxo.observer.UtxoLedgerTokenStateObserver: + annotations: [] + type: public interface + extends: [] + interface: true + methods: + getStateType: + annotations: + - NotNull + default: false + type: public abstract + returnType: Class + onCommit: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.observer.UtxoToken + params: + state: + annotation: + - NotNull + type: T + digestService: + annotation: + - NotNull + type: net.corda.v5.application.crypto.DigestService +net.corda.v5.ledger.utxo.observer.UtxoToken: + annotations: [] + type: public final class + extends: null + implements: [] + interface: false + methods: + equals: + annotations: [] + default: false + type: public + returnType: boolean + params: + other: + annotation: + - NotNull + type: net.corda.v5.ledger.utxo.observer.UtxoToken + getAmount: + annotations: + - NotNull + default: false + type: public + returnType: java.math.BigDecimal + getFilterFields: + annotations: + - Nullable + default: false + type: public + returnType: net.corda.v5.ledger.utxo.observer.UtxoTokenFilterFields + getPoolKey: + annotations: + - NotNull + default: false + type: public + returnType: net.corda.v5.ledger.utxo.observer.UtxoTokenPoolKey + hashCode: + annotations: [] + default: false + type: public + returnType: int + toString: + annotations: [] + default: false + type: public + returnType: String +net.corda.v5.ledger.utxo.observer.UtxoTokenFilterFields: + annotations: [] + type: public final class + extends: null + implements: [] + interface: false + methods: + equals: + annotations: [] + default: false + type: public + returnType: boolean + params: + other: + annotation: + - NotNull + type: net.corda.v5.ledger.utxo.observer.UtxoTokenFilterFields + getOwnerHash: + annotations: + - Nullable + default: false + type: public + returnType: net.corda.v5.crypto.SecureHash + getTag: + annotations: + - Nullable + default: false + type: public + returnType: String + hashCode: + annotations: [] + default: false + type: public + returnType: int + toString: + annotations: [] + default: false + type: public + returnType: String +net.corda.v5.ledger.utxo.observer.UtxoTokenPoolKey: + annotations: [] + type: public final class + extends: null + implements: [] + interface: false + methods: + equals: + annotations: [] + default: false + type: public + returnType: boolean + params: + other: + annotation: + - NotNull + type: net.corda.v5.ledger.utxo.observer.UtxoTokenPoolKey + getIssuerHash: + annotations: + - NotNull + default: false + type: public + returnType: net.corda.v5.crypto.SecureHash + getSymbol: + annotations: + - NotNull + default: false + type: public + returnType: String + getTokenType: + annotations: + - Nullable + default: false + type: public + returnType: String + hashCode: + annotations: [] + default: false + type: public + returnType: int + toString: + annotations: [] + default: false + type: public + returnType: String +net.corda.v5.ledger.utxo.observer.UtxoTokenTransactionStateObserver: + annotations: [] + type: public interface + extends: [] + interface: true + methods: + getStateType: + annotations: + - NotNull + default: false + type: public abstract + returnType: Class + onCommit: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.observer.UtxoToken + params: + context: + annotation: + - NotNull + type: net.corda.v5.ledger.utxo.observer.TokenStateObserverContext +net.corda.v5.ledger.utxo.query.VaultNamedParameterizedQuery: + annotations: [] + type: public interface + extends: + - net.corda.v5.application.persistence.ParameterizedQuery + interface: true + methods: + execute: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.application.persistence.PagedQuery$ResultSet + setCreatedTimestampLimit: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.query.VaultNamedParameterizedQuery + params: + timestampLimit: + annotation: + - NotNull + type: java.time.Instant + setLimit: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.query.VaultNamedParameterizedQuery + params: + limit: + annotation: [] + type: int + setOffset: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.query.VaultNamedParameterizedQuery + params: + offset: + annotation: [] + type: int + setParameter: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.query.VaultNamedParameterizedQuery + params: + name: + annotation: + - NotNull + type: String + value: + annotation: + - NotNull + type: Object + setParameters: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.query.VaultNamedParameterizedQuery + params: + parameters: + annotation: + - NotNull + type: "java.util.Map" +net.corda.v5.ledger.utxo.query.VaultNamedQueryCollector: + annotations: [] + type: public interface + extends: [] + interface: true + methods: + collect: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.query.VaultNamedQueryCollector$Result + params: + resultSet: + annotation: + - NotNull + type: java.util.List + parameters: + annotation: + - NotNull + type: "java.util.Map" +net.corda.v5.ledger.utxo.query.VaultNamedQueryCollector$Result: + annotations: [] + type: public static class + extends: null + implements: [] + interface: false + methods: + getDone: + annotations: + - NotNull + default: false + type: public + returnType: Boolean + getResults: + annotations: + - NotNull + default: false + type: public + returnType: java.util.List +net.corda.v5.ledger.utxo.query.VaultNamedQueryFactory: + annotations: [] + type: public interface + extends: [] + interface: true + methods: + create: + annotations: [] + default: false + type: public abstract + returnType: void + params: + vaultNamedQueryBuilderFactory: + annotation: + - NotNull + type: net.corda.v5.ledger.utxo.query.registration.VaultNamedQueryBuilderFactory +net.corda.v5.ledger.utxo.query.VaultNamedQueryFilter: + annotations: [] + type: public interface + extends: [] + interface: true + methods: + filter: + annotations: + - NotNull + default: false + type: public abstract + returnType: Boolean + params: + data: + annotation: + - NotNull + type: T + parameters: + annotation: + - NotNull + type: "java.util.Map" +net.corda.v5.ledger.utxo.query.VaultNamedQueryStateAndRefFilter: + annotations: [] + type: public interface + extends: + - net.corda.v5.ledger.utxo.query.VaultNamedQueryFilter + interface: true + methods: + filter: + annotations: + - NotNull + default: false + type: public abstract + returnType: Boolean + params: + data: + annotation: + - NotNull + type: T + parameters: + annotation: + - NotNull + type: "java.util.Map" +net.corda.v5.ledger.utxo.query.VaultNamedQueryStateAndRefTransformer: + annotations: [] + type: public interface + extends: + - net.corda.v5.ledger.utxo.query.VaultNamedQueryTransformer + interface: true + methods: + transform: + annotations: + - NotNull + default: false + type: public abstract + returnType: R + params: + data: + annotation: + - NotNull + type: T + parameters: + annotation: + - NotNull + type: "java.util.Map" +net.corda.v5.ledger.utxo.query.VaultNamedQueryTransformer: + annotations: [] + type: public interface + extends: [] + interface: true + methods: + transform: + annotations: + - NotNull + default: false + type: public abstract + returnType: R + params: + data: + annotation: + - NotNull + type: T + parameters: + annotation: + - NotNull + type: "java.util.Map" +net.corda.v5.ledger.utxo.query.json.ContractStateVaultJsonFactory: + annotations: [] + type: public interface + extends: [] + interface: true + methods: + create: + annotations: + - NotNull + default: false + type: public abstract + returnType: String + params: + state: + annotation: + - NotNull + type: T + jsonMarshallingService: + annotation: + - NotNull + type: net.corda.v5.application.marshalling.JsonMarshallingService + getStateType: + annotations: + - NotNull + default: false + type: public abstract + returnType: Class +net.corda.v5.ledger.utxo.query.registration.VaultNamedQueryBuilder: + annotations: [] + type: public interface + extends: + - net.corda.v5.ledger.utxo.query.registration.VaultNamedQueryBuilderBase + interface: true + methods: + collect: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.query.registration.VaultNamedQueryBuilderCollected + params: + collector: + annotation: + - NotNull + type: "net.corda.v5.ledger.utxo.query.VaultNamedQueryCollector" + filter: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.query.registration.VaultNamedQueryBuilder + params: + filter: + annotation: + - NotNull + type: net.corda.v5.ledger.utxo.query.VaultNamedQueryFilter + map: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.query.registration.VaultNamedQueryBuilder + params: + transformer: + annotation: + - NotNull + type: "net.corda.v5.ledger.utxo.query.VaultNamedQueryTransformer" + register: + annotations: [] + default: false + type: public abstract + returnType: void + whereJson: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.query.registration.VaultNamedQueryBuilder + params: + query: + annotation: + - NotNull + type: String +net.corda.v5.ledger.utxo.query.registration.VaultNamedQueryBuilderBase: + annotations: [] + type: public interface + extends: [] + interface: true + methods: + register: + annotations: [] + default: false + type: public abstract + returnType: void +net.corda.v5.ledger.utxo.query.registration.VaultNamedQueryBuilderCollected: + annotations: [] + type: public interface + extends: + - net.corda.v5.ledger.utxo.query.registration.VaultNamedQueryBuilderBase + interface: true + methods: + register: + annotations: [] + default: false + type: public abstract + returnType: void +net.corda.v5.ledger.utxo.query.registration.VaultNamedQueryBuilderFactory: + annotations: + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: + create: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.query.registration.VaultNamedQueryBuilder + params: + queryName: + annotation: + - NotNull + type: String +net.corda.v5.ledger.utxo.token.selection.ClaimedToken: + annotations: + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: + getAmount: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.math.BigDecimal + getIssuerHash: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.crypto.SecureHash + getNotaryX500Name: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.base.types.MemberX500Name + getOwnerHash: + annotations: + - Nullable + default: false + type: public abstract + returnType: net.corda.v5.crypto.SecureHash + getStateRef: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.StateRef + getSymbol: + annotations: + - NotNull + default: false + type: public abstract + returnType: String + getTag: + annotations: + - Nullable + default: false + type: public abstract + returnType: String + getTokenType: + annotations: + - NotNull + default: false + type: public abstract + returnType: String +net.corda.v5.ledger.utxo.token.selection.TokenBalance: + annotations: + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: + getAvailableBalance: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.math.BigDecimal + getTotalBalance: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.math.BigDecimal +net.corda.v5.ledger.utxo.token.selection.TokenBalanceCriteria: + annotations: [] + type: public final class + extends: null + implements: [] + interface: false + methods: + equals: + annotations: [] + default: false + type: public + returnType: boolean + params: + other: + annotation: + - NotNull + type: net.corda.v5.ledger.utxo.token.selection.TokenBalanceCriteria + getIssuerHash: + annotations: + - NotNull + default: false + type: public + returnType: net.corda.v5.crypto.SecureHash + getNotaryX500Name: + annotations: + - NotNull + default: false + type: public + returnType: net.corda.v5.base.types.MemberX500Name + getOwnerHash: + annotations: + - Nullable + default: false + type: public + returnType: net.corda.v5.crypto.SecureHash + getSymbol: + annotations: + - NotNull + default: false + type: public + returnType: String + getTagRegex: + annotations: + - Nullable + default: false + type: public + returnType: String + getTokenType: + annotations: + - NotNull + default: false + type: public + returnType: String + hashCode: + annotations: [] + default: false + type: public + returnType: int + setOwnerHash: + annotations: [] + default: false + type: public + returnType: void + params: + ownerHash: + annotation: + - Nullable + type: net.corda.v5.crypto.SecureHash + setTagRegex: + annotations: [] + default: false + type: public + returnType: void + params: + tagRegex: + annotation: + - Nullable + type: String + toString: + annotations: [] + default: false + type: public + returnType: String +net.corda.v5.ledger.utxo.token.selection.TokenClaim: + annotations: + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: + getClaimedTokens: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.util.List + useAndRelease: + annotations: + - Suspendable + default: false + type: public abstract + returnType: void + params: + usedTokensRefs: + annotation: + - NotNull + type: java.util.List +net.corda.v5.ledger.utxo.token.selection.TokenClaimCriteria: + annotations: [] + type: public final class + extends: null + implements: [] + interface: false + methods: + equals: + annotations: [] + default: false + type: public + returnType: boolean + params: + other: + annotation: + - NotNull + type: net.corda.v5.ledger.utxo.token.selection.TokenClaimCriteria + getIssuerHash: + annotations: + - NotNull + default: false + type: public + returnType: net.corda.v5.crypto.SecureHash + getNotaryX500Name: + annotations: + - NotNull + default: false + type: public + returnType: net.corda.v5.base.types.MemberX500Name + getOwnerHash: + annotations: + - Nullable + default: false + type: public + returnType: net.corda.v5.crypto.SecureHash + getSymbol: + annotations: + - NotNull + default: false + type: public + returnType: String + getTagRegex: + annotations: + - Nullable + default: false + type: public + returnType: String + getTargetAmount: + annotations: + - NotNull + default: false + type: public + returnType: java.math.BigDecimal + getTokenType: + annotations: + - NotNull + default: false + type: public + returnType: String + hashCode: + annotations: [] + default: false + type: public + returnType: int + setOwnerHash: + annotations: [] + default: false + type: public + returnType: void + params: + ownerHash: + annotation: + - Nullable + type: net.corda.v5.crypto.SecureHash + setTagRegex: + annotations: [] + default: false + type: public + returnType: void + params: + tagRegex: + annotation: + - Nullable + type: String + toString: + annotations: [] + default: false + type: public + returnType: String +net.corda.v5.ledger.utxo.token.selection.TokenSelection: + annotations: + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: + queryBalance: + annotations: + - Suspendable + - Nullable + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.token.selection.TokenBalance + params: + criteria: + annotation: + - NotNull + type: net.corda.v5.ledger.utxo.token.selection.TokenBalanceCriteria + tryClaim: + annotations: + - Suspendable + - Nullable + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.token.selection.TokenClaim + params: + criteria: + annotation: + - NotNull + type: net.corda.v5.ledger.utxo.token.selection.TokenClaimCriteria +net.corda.v5.ledger.utxo.transaction.UtxoLedgerTransaction: + annotations: + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: + getAttachment: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.Attachment + params: + id: + annotation: + - NotNull + type: net.corda.v5.crypto.SecureHash + getAttachments: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.util.List + getCommands: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.util.List + params: + type: + annotation: + - NotNull + type: Class + getGroupParameters: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.membership.GroupParameters + getId: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.crypto.SecureHash + getInputContractStates: + annotations: + - NotNull + default: true + type: public + returnType: java.util.List + getInputStateAndRefs: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.util.List> + params: + type: + annotation: + - NotNull + type: Class + getInputStateRefs: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.util.List + getInputStates: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.util.List + params: + type: + annotation: + - NotNull + type: Class + getInputTransactionStates: + annotations: + - NotNull + default: true + type: public + returnType: java.util.List> + getMetadata: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.common.transaction.TransactionMetadata + getNotaryKey: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.security.PublicKey + getNotaryName: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.base.types.MemberX500Name + getOutputContractStates: + annotations: + - NotNull + default: true + type: public + returnType: java.util.List + getOutputStateAndRefs: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.util.List> + params: + type: + annotation: + - NotNull + type: Class + getOutputStates: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.util.List + params: + type: + annotation: + - NotNull + type: Class + getOutputTransactionStates: + annotations: + - NotNull + default: true + type: public + returnType: java.util.List> + getReferenceContractStates: + annotations: + - NotNull + default: true + type: public + returnType: java.util.List + getReferenceStateAndRefs: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.util.List> + params: + type: + annotation: + - NotNull + type: Class + getReferenceStateRefs: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.util.List + getReferenceStates: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.util.List + params: + type: + annotation: + - NotNull + type: Class + getReferenceTransactionStates: + annotations: + - NotNull + default: true + type: public + returnType: java.util.List> + getSignatories: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.util.List + getTimeWindow: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.TimeWindow +net.corda.v5.ledger.utxo.transaction.UtxoSignedTransaction: + annotations: + - CordaSerializable + - DoNotImplement + type: public interface + extends: + - net.corda.v5.ledger.common.transaction.TransactionWithMetadata + interface: true + methods: + getCommands: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.util.List + getInputStateRefs: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.util.List + getNotaryKey: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.security.PublicKey + getNotaryName: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.base.types.MemberX500Name + getOutputStateAndRefs: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.util.List> + getReferenceStateRefs: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.util.List + getSignatories: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.util.List + getSignatures: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.util.List + getTimeWindow: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.TimeWindow + toLedgerTransaction: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.transaction.UtxoLedgerTransaction +net.corda.v5.ledger.utxo.transaction.UtxoTransactionBuilder: + annotations: + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: + addAttachment: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.transaction.UtxoTransactionBuilder + params: + attachmentId: + annotation: + - NotNull + type: net.corda.v5.crypto.SecureHash + addCommand: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.transaction.UtxoTransactionBuilder + params: + command: + annotation: + - NotNull + type: net.corda.v5.ledger.utxo.Command + addEncumberedOutputStates: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.transaction.UtxoTransactionBuilder + params: + tag: + annotation: + - NotNull + type: String + contractStates: + annotation: + - NotNull + type: "net.corda.v5.ledger.utxo.ContractState[]" + addInputState: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.transaction.UtxoTransactionBuilder + params: + stateRef: + annotation: + - NotNull + type: net.corda.v5.ledger.utxo.StateRef + addInputStates: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.transaction.UtxoTransactionBuilder + params: + stateRefs: + annotation: + - NotNull + type: "net.corda.v5.ledger.utxo.StateRef[]" + addOutputState: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.transaction.UtxoTransactionBuilder + params: + contractState: + annotation: + - NotNull + type: net.corda.v5.ledger.utxo.ContractState + addOutputStates: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.transaction.UtxoTransactionBuilder + params: + contractStates: + annotation: + - NotNull + type: "net.corda.v5.ledger.utxo.ContractState[]" + addReferenceState: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.transaction.UtxoTransactionBuilder + params: + stateRef: + annotation: + - NotNull + type: net.corda.v5.ledger.utxo.StateRef + addReferenceStates: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.transaction.UtxoTransactionBuilder + params: + stateRefs: + annotation: + - NotNull + type: "net.corda.v5.ledger.utxo.StateRef[]" + addSignatories: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.transaction.UtxoTransactionBuilder + params: + signatories: + annotation: + - NotNull + type: "java.security.PublicKey[]" + getEncumbranceGroup: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.util.List + params: + tag: + annotation: + - NotNull + type: String + getEncumbranceGroups: + annotations: + - NotNull + default: false + type: public abstract + returnType: "java.util.Map>" + getNotaryKey: + annotations: + - Nullable + default: false + type: public abstract + returnType: java.security.PublicKey + getNotaryName: + annotations: + - Nullable + default: false + type: public abstract + returnType: net.corda.v5.base.types.MemberX500Name + setNotary: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.transaction.UtxoTransactionBuilder + params: + notary: + annotation: + - NotNull + type: net.corda.v5.base.types.MemberX500Name + setTimeWindowBetween: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.transaction.UtxoTransactionBuilder + params: + from: + annotation: + - NotNull + type: java.time.Instant + until: + annotation: + - NotNull + type: java.time.Instant + setTimeWindowUntil: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.transaction.UtxoTransactionBuilder + params: + until: + annotation: + - NotNull + type: java.time.Instant + toSignedTransaction: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.transaction.UtxoSignedTransaction +net.corda.v5.ledger.utxo.transaction.UtxoTransactionValidator: + annotations: [] + type: public interface + extends: + - java.io.Serializable + interface: true + methods: + checkTransaction: + annotations: + - Suspendable + default: false + type: public abstract + returnType: void + params: + transaction: + annotation: + - NotNull + type: net.corda.v5.ledger.utxo.transaction.UtxoLedgerTransaction +net.corda.v5.ledger.utxo.transaction.filtered.FilteredDataInconsistencyException: + annotations: [] + type: public final class + extends: net.corda.v5.base.exceptions.CordaRuntimeException + implements: [] + interface: false + methods: {} +net.corda.v5.ledger.utxo.transaction.filtered.UtxoFilteredData: + annotations: + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: {} +net.corda.v5.ledger.utxo.transaction.filtered.UtxoFilteredData$Audit: + annotations: + - DoNotImplement + type: public static interface + extends: + - net.corda.v5.ledger.utxo.transaction.filtered.UtxoFilteredData + interface: true + methods: + getSize: + annotations: [] + default: false + type: public abstract + returnType: int + getValues: + annotations: + - NotNull + default: false + type: public abstract + returnType: "java.util.Map" +net.corda.v5.ledger.utxo.transaction.filtered.UtxoFilteredData$Removed: + annotations: + - DoNotImplement + type: public static interface + extends: + - net.corda.v5.ledger.utxo.transaction.filtered.UtxoFilteredData + interface: true + methods: {} +net.corda.v5.ledger.utxo.transaction.filtered.UtxoFilteredData$SizeOnly: + annotations: + - DoNotImplement + type: public static interface + extends: + - net.corda.v5.ledger.utxo.transaction.filtered.UtxoFilteredData + interface: true + methods: + getSize: + annotations: [] + default: false + type: public abstract + returnType: int +net.corda.v5.ledger.utxo.transaction.filtered.UtxoFilteredTransaction: + annotations: + - CordaSerializable + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: + getCommands: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.transaction.filtered.UtxoFilteredData + getId: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.crypto.SecureHash + getInputStateRefs: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.transaction.filtered.UtxoFilteredData + getMetadata: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.common.transaction.TransactionMetadata + getNotaryKey: + annotations: [] + default: false + type: public abstract + returnType: java.security.PublicKey + getNotaryName: + annotations: + - Nullable + default: false + type: public abstract + returnType: net.corda.v5.base.types.MemberX500Name + getOutputStateAndRefs: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.transaction.filtered.UtxoFilteredData> + getReferenceStateRefs: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.transaction.filtered.UtxoFilteredData + getSignatories: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.transaction.filtered.UtxoFilteredData + getTimeWindow: + annotations: + - Nullable + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.TimeWindow + verify: + annotations: [] + default: false + type: public abstract + returnType: void +net.corda.v5.ledger.utxo.transaction.filtered.UtxoFilteredTransactionBuilder: + annotations: + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: + build: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.transaction.filtered.UtxoFilteredTransaction + withCommands: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.transaction.filtered.UtxoFilteredTransactionBuilder + params: + predicate: + annotation: + - NotNull + type: java.util.function.Predicate + withCommandsSize: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.transaction.filtered.UtxoFilteredTransactionBuilder + withInputStates: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.transaction.filtered.UtxoFilteredTransactionBuilder + params: + predicate: + annotation: + - NotNull + type: java.util.function.Predicate + withInputStatesSize: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.transaction.filtered.UtxoFilteredTransactionBuilder + withNotary: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.transaction.filtered.UtxoFilteredTransactionBuilder + withOutputStates: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.transaction.filtered.UtxoFilteredTransactionBuilder + params: + predicate: + annotation: + - NotNull + type: java.util.function.Predicate + withOutputStatesSize: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.transaction.filtered.UtxoFilteredTransactionBuilder + withReferenceStates: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.transaction.filtered.UtxoFilteredTransactionBuilder + params: + predicate: + annotation: + - NotNull + type: java.util.function.Predicate + withReferenceStatesSize: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.transaction.filtered.UtxoFilteredTransactionBuilder + withSignatories: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.transaction.filtered.UtxoFilteredTransactionBuilder + params: + predicate: + annotation: + - NotNull + type: java.util.function.Predicate + withSignatoriesSize: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.transaction.filtered.UtxoFilteredTransactionBuilder + withTimeWindow: + annotations: + - Suspendable + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.ledger.utxo.transaction.filtered.UtxoFilteredTransactionBuilder +net.corda.v5.ledger.utxo.uniqueness.client.LedgerUniquenessCheckerClientService: + annotations: + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: + requestUniquenessCheck: + annotations: + - Suspendable + default: false + type: public abstract + returnType: net.corda.v5.application.uniqueness.model.UniquenessCheckResult + params: + transactionId: + annotation: + - NotNull + type: String + originatorX500Name: + annotation: + - NotNull + type: String + inputStates: + annotation: + - NotNull + type: java.util.List + referenceStates: + annotation: + - NotNull + type: java.util.List + numOutputStates: + annotation: [] + type: int + timeWindowLowerBound: + annotation: + - Nullable + type: java.time.Instant + timeWindowUpperBound: + annotation: + - NotNull + type: java.time.Instant diff --git a/ledger/notary-plugin/build.gradle b/ledger/notary-plugin/build.gradle index 3b7acbc572..1a038abb00 100644 --- a/ledger/notary-plugin/build.gradle +++ b/ledger/notary-plugin/build.gradle @@ -2,6 +2,7 @@ plugins { id 'corda-api.common-library' id 'corda.common-publishing' id 'corda.java-only' + id 'corda.api-scanner' } description 'Corda Notary Plugin API and Core' diff --git a/ledger/notary-plugin/src/api/corda-notary-plugin-5.1.0.yaml b/ledger/notary-plugin/src/api/corda-notary-plugin-5.1.0.yaml new file mode 100644 index 0000000000..aab366207f --- /dev/null +++ b/ledger/notary-plugin/src/api/corda-notary-plugin-5.1.0.yaml @@ -0,0 +1,67 @@ +net.corda.v5.ledger.notary.plugin.api.PluggableNotaryClientFlow: + annotations: [] + type: public interface + extends: + - net.corda.v5.application.flows.SubFlow + interface: true + methods: {} +net.corda.v5.ledger.notary.plugin.core.NotaryException: + annotations: + - CordaSerializable + type: public abstract class + extends: net.corda.v5.base.exceptions.CordaRuntimeException + implements: [] + interface: false + methods: + getNotaryErrorMessage: + annotations: + - NotNull + default: false + type: public final + returnType: String + getTxId: + annotations: + - Nullable + default: false + type: public final + returnType: net.corda.v5.crypto.SecureHash +net.corda.v5.ledger.notary.plugin.core.NotaryExceptionFatal: + annotations: + - CordaSerializable + type: public abstract class + extends: net.corda.v5.base.exceptions.CordaRuntimeException + implements: [] + interface: false + methods: + getNotaryErrorMessage: + annotations: + - NotNull + default: false + type: public final + returnType: String + getTxId: + annotations: + - Nullable + default: false + type: public final + returnType: net.corda.v5.crypto.SecureHash +net.corda.v5.ledger.notary.plugin.core.NotaryExceptionUnknown: + annotations: + - CordaSerializable + type: public abstract class + extends: net.corda.v5.base.exceptions.CordaRuntimeException + implements: [] + interface: false + methods: + getNotaryErrorMessage: + annotations: + - NotNull + default: false + type: public final + returnType: String + getTxId: + annotations: + - Nullable + default: false + type: public final + returnType: net.corda.v5.crypto.SecureHash diff --git a/membership/build.gradle b/membership/build.gradle index 8bc9f3b250..efb96604dd 100644 --- a/membership/build.gradle +++ b/membership/build.gradle @@ -2,6 +2,7 @@ plugins { id 'corda-api.common-library' id 'corda.common-publishing' id 'corda.java-only' + id 'corda.api-scanner' } description 'Corda Membership' diff --git a/membership/src/api/corda-membership-5.1.0.yaml b/membership/src/api/corda-membership-5.1.0.yaml new file mode 100644 index 0000000000..5bb89acf6a --- /dev/null +++ b/membership/src/api/corda-membership-5.1.0.yaml @@ -0,0 +1,147 @@ +net.corda.v5.membership.EndpointInfo: + annotations: + - CordaSerializable + type: public interface + extends: [] + interface: true + methods: + getProtocolVersion: + annotations: [] + default: false + type: public abstract + returnType: int + getUrl: + annotations: + - NotNull + default: false + type: public abstract + returnType: String +net.corda.v5.membership.GroupParameters: + annotations: + - CordaSerializable + type: public interface + extends: + - net.corda.v5.base.types.LayeredPropertyMap + interface: true + methods: + getEpoch: + annotations: [] + default: false + type: public abstract + returnType: int + getModifiedTime: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.time.Instant + getNotaries: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.util.Collection +net.corda.v5.membership.GroupParametersLookup: + annotations: + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: + getCurrentGroupParameters: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.membership.GroupParameters +net.corda.v5.membership.MGMContext: + annotations: [] + type: public interface + extends: + - net.corda.v5.base.types.LayeredPropertyMap + interface: true + methods: {} +net.corda.v5.membership.MemberContext: + annotations: [] + type: public interface + extends: + - net.corda.v5.base.types.LayeredPropertyMap + interface: true + methods: {} +net.corda.v5.membership.MemberInfo: + annotations: + - CordaSerializable + type: public interface + extends: [] + interface: true + methods: + getLedgerKeys: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.util.List + getMemberProvidedContext: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.membership.MemberContext + getMgmProvidedContext: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.membership.MGMContext + getName: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.base.types.MemberX500Name + getPlatformVersion: + annotations: [] + default: false + type: public abstract + returnType: int + getSerial: + annotations: [] + default: false + type: public abstract + returnType: long + isActive: + annotations: [] + default: false + type: public abstract + returnType: boolean +net.corda.v5.membership.NotaryInfo: + annotations: + - CordaSerializable + type: public interface + extends: [] + interface: true + methods: + getName: + annotations: + - NotNull + default: false + type: public abstract + returnType: net.corda.v5.base.types.MemberX500Name + getProtocol: + annotations: + - NotNull + default: false + type: public abstract + returnType: String + getProtocolVersions: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.util.Collection + getPublicKey: + annotations: + - NotNull + default: false + type: public abstract + returnType: java.security.PublicKey diff --git a/serialization/build.gradle b/serialization/build.gradle index c84ba6014d..dce0054134 100644 --- a/serialization/build.gradle +++ b/serialization/build.gradle @@ -2,6 +2,7 @@ plugins { id 'corda-api.common-library' id 'corda.common-publishing' id 'corda.java-only' + id 'corda.api-scanner' } description 'Corda Serialization' diff --git a/serialization/src/api/corda-serialization-5.1.0.yaml b/serialization/src/api/corda-serialization-5.1.0.yaml new file mode 100644 index 0000000000..1b3f5dbeaa --- /dev/null +++ b/serialization/src/api/corda-serialization-5.1.0.yaml @@ -0,0 +1,123 @@ +net.corda.v5.serialization.MissingSerializerException: + annotations: [] + type: public class + extends: java.io.NotSerializableException + implements: [] + interface: false + methods: + getTypeDescriptor: + annotations: + - Nullable + default: false + type: public + returnType: String + getTypeNames: + annotations: + - NotNull + default: false + type: public + returnType: java.util.List +net.corda.v5.serialization.SerializationCustomSerializer: + annotations: [] + type: public interface + extends: [] + interface: true + methods: + fromProxy: + annotations: + - NotNull + default: false + type: public abstract + returnType: OBJ + params: + proxy: + annotation: + - NotNull + type: PROXY + toProxy: + annotations: + - NotNull + default: false + type: public abstract + returnType: PROXY + params: + obj: + annotation: + - NotNull + type: OBJ +net.corda.v5.serialization.SerializedBytes: + annotations: + - CordaSerializable + - DoNotImplement + type: public interface + extends: [] + interface: true + methods: + getBytes: + annotations: + - NotNull + default: false + type: public abstract + returnType: "byte[]" +net.corda.v5.serialization.SingletonSerializeAsToken: + annotations: [] + type: public interface + extends: [] + interface: true + methods: + getTokenName: + annotations: + - NotNull + default: true + type: public + returnType: String +net.corda.v5.serialization.annotations.CordaSerializationTransformEnumDefault: + annotations: [] + type: public @interface + interface: false + methods: + newName: + annotations: [] + default: false + type: public abstract + returnType: String + oldName: + annotations: [] + default: false + type: public abstract + returnType: String +net.corda.v5.serialization.annotations.CordaSerializationTransformEnumDefaults: + annotations: [] + type: public @interface + interface: false + methods: + value: + annotations: [] + default: false + type: public abstract + returnType: "net.corda.v5.serialization.annotations.CordaSerializationTransformEnumDefault[]" +net.corda.v5.serialization.annotations.CordaSerializationTransformRename: + annotations: [] + type: public @interface + interface: false + methods: + from: + annotations: [] + default: false + type: public abstract + returnType: String + to: + annotations: [] + default: false + type: public abstract + returnType: String +net.corda.v5.serialization.annotations.CordaSerializationTransformRenames: + annotations: [] + type: public @interface + interface: false + methods: + value: + annotations: [] + default: false + type: public abstract + returnType: "net.corda.v5.serialization.annotations.CordaSerializationTransformRename[]" From 82d25380358496f31f9b35893051872e949cb34c Mon Sep 17 00:00:00 2001 From: Ronan Browne Date: Mon, 2 Oct 2023 15:44:24 +0100 Subject: [PATCH 02/30] Update CODEOWNERS --- .github/CODEOWNERS | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index bb5b3dc148..e1662fa714 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -8,6 +8,8 @@ Jenkinsfile @corda/blt gradle/* @corda/blt *.gradle @corda/blt gradle.properties @corda/corda5-team-leads +gradle.properties @corda/corda5-someTeam # Remove Later! + *.kt @corda/corda5-team-leads *.java @corda/corda5-team-leads From 630821c653148b17fc237b142f09db3727b296c8 Mon Sep 17 00:00:00 2001 From: Ronan Browne Date: Mon, 2 Oct 2023 15:45:02 +0100 Subject: [PATCH 03/30] Revert test change Update CODEOWNERS --- .github/CODEOWNERS | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index e1662fa714..bb5b3dc148 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -8,8 +8,6 @@ Jenkinsfile @corda/blt gradle/* @corda/blt *.gradle @corda/blt gradle.properties @corda/corda5-team-leads -gradle.properties @corda/corda5-someTeam # Remove Later! - *.kt @corda/corda5-team-leads *.java @corda/corda5-team-leads From 39275b6a829852b0fc77d8043b030cf37cfe2070 Mon Sep 17 00:00:00 2001 From: Jacob Scott Date: Tue, 3 Oct 2023 09:54:39 +0100 Subject: [PATCH 04/30] Update Jenkinsfile --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 80b286b560..5b02cd9f03 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,9 +1,9 @@ -@Library('corda-shared-build-pipeline-steps@5.1') _ +@Library('corda-shared-build-pipeline-steps@jacob/ES-1398') _ cordaPipelineKubernetesAgent( runIntegrationTests: false, - dependentJobsNames: ['/Corda5/corda-runtime-os-version-compatibility/release%2Fos%2F5.1'], - dependentJobsNonBlocking: ['/Corda5/corda-api-compatibility/'], + dependentJobsNames: [], + dependentJobsNonBlocking: [], // always use -beta-9999999999999 for local publication as this is used for the version compatibility checks, // This is a PR gate, so we want to check the "post merge" state before publication for real. localPublishVersionSuffixOverride: '-beta-9999999999999', From 76821399179feb7bc5bf6bcb5c1134890feacd74 Mon Sep 17 00:00:00 2001 From: Jacob Scott Date: Tue, 3 Oct 2023 11:07:39 +0100 Subject: [PATCH 05/30] Add API Scanner yaml files to CODEOWNERS --- .github/CODEOWNERS | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index bb5b3dc148..8df77092a5 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -9,6 +9,7 @@ gradle/* @corda/blt *.gradle @corda/blt gradle.properties @corda/corda5-team-leads +**/src/api/*.yaml @corda/corda5-team-leads *.kt @corda/corda5-team-leads *.java @corda/corda5-team-leads From a69ba69685d21536d0a581e8c85386279847d93b Mon Sep 17 00:00:00 2001 From: Jacob Scott Date: Wed, 4 Oct 2023 11:22:22 +0100 Subject: [PATCH 06/30] Update Jenkinsfile --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 5b02cd9f03..0289bf0596 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -2,8 +2,8 @@ cordaPipelineKubernetesAgent( runIntegrationTests: false, - dependentJobsNames: [], - dependentJobsNonBlocking: [], + dependentJobsNames: ['/Corda5/corda-runtime-os-version-compatibility/release%2Fos%2F5.1'], + dependentJobsNonBlocking: ['/Corda5/corda-api-compatibility/'], // always use -beta-9999999999999 for local publication as this is used for the version compatibility checks, // This is a PR gate, so we want to check the "post merge" state before publication for real. localPublishVersionSuffixOverride: '-beta-9999999999999', From ea5679d7950fef511ee7d4af1453cda1def86a73 Mon Sep 17 00:00:00 2001 From: Jacob Scott Date: Wed, 4 Oct 2023 11:56:59 +0100 Subject: [PATCH 07/30] Test adding a breaking change to API --- .../corda/v5/ledger/utxo/query/VaultNamedQueryCollector.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ledger/ledger-utxo/src/main/java/net/corda/v5/ledger/utxo/query/VaultNamedQueryCollector.java b/ledger/ledger-utxo/src/main/java/net/corda/v5/ledger/utxo/query/VaultNamedQueryCollector.java index 4512e47f17..c638c64058 100644 --- a/ledger/ledger-utxo/src/main/java/net/corda/v5/ledger/utxo/query/VaultNamedQueryCollector.java +++ b/ledger/ledger-utxo/src/main/java/net/corda/v5/ledger/utxo/query/VaultNamedQueryCollector.java @@ -48,7 +48,7 @@ public interface VaultNamedQueryCollector { * @return A result that the original result set was collected into. */ @NotNull - Result collect(@NotNull List resultSet, @NotNull Map parameters); + Result collect(@NotNull List resultSet, @NotNull Map parameters, String DELETE_ME); /** * Representation of a "collected" result set that also contains a flag that shows whether the result set is finished From ca2389c506a1f6bee7e98afb4f4760af9dc43518 Mon Sep 17 00:00:00 2001 From: Jacob Scott Date: Wed, 4 Oct 2023 12:28:18 +0100 Subject: [PATCH 08/30] Update JenkinsApiCompatibility --- .ci/JenkinsApiCompatibility | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/JenkinsApiCompatibility b/.ci/JenkinsApiCompatibility index 2fb1d7ca2e..57c1ad5a41 100644 --- a/.ci/JenkinsApiCompatibility +++ b/.ci/JenkinsApiCompatibility @@ -1,5 +1,5 @@ // Check corda-api compatibility with downstream consumers which implement CordApps -@Library('corda-shared-build-pipeline-steps@5.1') _ +@Library('corda-shared-build-pipeline-steps@jacob/ES-1398') _ cordaApiCompatibilityCheck( javaVersion: '17' From e7cf030131e2a85cf1415911a01f38179d7dc819 Mon Sep 17 00:00:00 2001 From: Jacob Scott Date: Wed, 4 Oct 2023 15:05:20 +0100 Subject: [PATCH 09/30] Revert VaultNamedQueryCollector.java --- .../corda/v5/ledger/utxo/query/VaultNamedQueryCollector.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ledger/ledger-utxo/src/main/java/net/corda/v5/ledger/utxo/query/VaultNamedQueryCollector.java b/ledger/ledger-utxo/src/main/java/net/corda/v5/ledger/utxo/query/VaultNamedQueryCollector.java index c638c64058..4512e47f17 100644 --- a/ledger/ledger-utxo/src/main/java/net/corda/v5/ledger/utxo/query/VaultNamedQueryCollector.java +++ b/ledger/ledger-utxo/src/main/java/net/corda/v5/ledger/utxo/query/VaultNamedQueryCollector.java @@ -48,7 +48,7 @@ public interface VaultNamedQueryCollector { * @return A result that the original result set was collected into. */ @NotNull - Result collect(@NotNull List resultSet, @NotNull Map parameters, String DELETE_ME); + Result collect(@NotNull List resultSet, @NotNull Map parameters); /** * Representation of a "collected" result set that also contains a flag that shows whether the result set is finished From 7cba8c38bffa05ed8bdc95e06c07ea2105abbcbb Mon Sep 17 00:00:00 2001 From: Jacob Scott Date: Wed, 4 Oct 2023 17:08:35 +0100 Subject: [PATCH 10/30] Cement API --- .../src/api/corda-avro-schema-5.1.0.yaml | 506 ++++++++++++++++++ .../src/api/corda-topic-schema-5.1.0.yaml | 30 +- 2 files changed, 535 insertions(+), 1 deletion(-) diff --git a/data/avro-schema/src/api/corda-avro-schema-5.1.0.yaml b/data/avro-schema/src/api/corda-avro-schema-5.1.0.yaml index e59f6bbb39..6f7cbebcd1 100644 --- a/data/avro-schema/src/api/corda-avro-schema-5.1.0.yaml +++ b/data/avro-schema/src/api/corda-avro-schema-5.1.0.yaml @@ -16353,6 +16353,214 @@ net.corda.data.flow.FlowStartContext$Builder: value: annotation: [] type: net.corda.data.flow.FlowKey$Builder +net.corda.data.flow.FlowTimeout: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.FlowTimeout + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getCheckpointStateKey: + annotations: [] + default: false + type: public + returnType: String + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getConversion: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Conversion + params: + field: + annotation: [] + type: int + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + getTimeoutDateTime: + annotations: [] + default: false + type: public + returnType: java.time.Instant + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.flow.FlowTimeout$Builder + params: + other: + annotation: [] + type: net.corda.data.flow.FlowTimeout + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setCheckpointStateKey: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setTimeoutDateTime: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.time.Instant + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.flow.FlowTimeout$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowTimeout + clearCheckpointStateKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowTimeout$Builder + clearTimeoutDateTime: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowTimeout$Builder + getCheckpointStateKey: + annotations: [] + default: false + type: public + returnType: String + getTimeoutDateTime: + annotations: [] + default: false + type: public + returnType: java.time.Instant + hasCheckpointStateKey: + annotations: [] + default: false + type: public + returnType: boolean + hasTimeoutDateTime: + annotations: [] + default: false + type: public + returnType: boolean + setCheckpointStateKey: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowTimeout$Builder + params: + value: + annotation: [] + type: String + setTimeoutDateTime: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.FlowTimeout$Builder + params: + value: + annotation: [] + type: java.time.Instant net.corda.data.flow.event.FlowEvent: annotations: - AvroGenerated @@ -18710,6 +18918,11 @@ net.corda.data.flow.event.mapper.ExecuteCleanup: default: false type: public static returnType: org.apache.avro.message.BinaryMessageEncoder + getIds: + annotations: [] + default: false + type: public + returnType: java.util.List getSchema: annotations: [] default: false @@ -18755,6 +18968,15 @@ net.corda.data.flow.event.mapper.ExecuteCleanup: in: annotation: [] type: java.io.ObjectInput + setIds: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List toByteBuffer: annotations: [] default: false @@ -18787,6 +19009,30 @@ net.corda.data.flow.event.mapper.ExecuteCleanup$Builder: default: false type: public returnType: net.corda.data.flow.event.mapper.ExecuteCleanup + clearIds: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.mapper.ExecuteCleanup$Builder + getIds: + annotations: [] + default: false + type: public + returnType: java.util.List + hasIds: + annotations: [] + default: false + type: public + returnType: boolean + setIds: + annotations: [] + default: false + type: public + returnType: net.corda.data.flow.event.mapper.ExecuteCleanup$Builder + params: + value: + annotation: [] + type: java.util.List net.corda.data.flow.event.mapper.FlowMapperEvent: annotations: - AvroGenerated @@ -60539,6 +60785,228 @@ net.corda.data.membership.rpc.response.MembershipRpcResponseContext$Builder: value: annotation: [] type: java.time.Instant +net.corda.data.membership.state.CompletedCommandMetadata: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.state.CompletedCommandMetadata + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getCommand: + annotations: [] + default: false + type: public + returnType: String + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getIndex: + annotations: [] + default: false + type: public + returnType: int + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.membership.state.CompletedCommandMetadata$Builder + params: + other: + annotation: [] + type: net.corda.data.membership.state.CompletedCommandMetadata + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setCommand: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: String + setIndex: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: int + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.membership.state.CompletedCommandMetadata$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.state.CompletedCommandMetadata + clearCommand: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.state.CompletedCommandMetadata$Builder + clearIndex: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.state.CompletedCommandMetadata$Builder + getCommand: + annotations: [] + default: false + type: public + returnType: String + getIndex: + annotations: [] + default: false + type: public + returnType: int + hasCommand: + annotations: [] + default: false + type: public + returnType: boolean + hasIndex: + annotations: [] + default: false + type: public + returnType: boolean + setCommand: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.state.CompletedCommandMetadata$Builder + params: + value: + annotation: [] + type: String + setIndex: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.state.CompletedCommandMetadata$Builder + params: + value: + annotation: [] + type: int net.corda.data.membership.state.RegistrationState: annotations: - AvroGenerated @@ -60604,6 +61072,11 @@ net.corda.data.membership.state.RegistrationState: default: false type: public returnType: net.corda.data.identity.HoldingIdentity + getPreviouslyCompletedCommands: + annotations: [] + default: false + type: public + returnType: java.util.List getRegisteringMember: annotations: [] default: false @@ -60663,6 +61136,15 @@ net.corda.data.membership.state.RegistrationState: value: annotation: [] type: net.corda.data.identity.HoldingIdentity + setPreviouslyCompletedCommands: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List setRegisteringMember: annotations: [] default: false @@ -60718,6 +61200,11 @@ net.corda.data.membership.state.RegistrationState$Builder: default: false type: public returnType: net.corda.data.membership.state.RegistrationState$Builder + clearPreviouslyCompletedCommands: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.state.RegistrationState$Builder clearRegisteringMember: annotations: [] default: false @@ -60738,6 +61225,11 @@ net.corda.data.membership.state.RegistrationState$Builder: default: false type: public returnType: net.corda.data.identity.HoldingIdentity$Builder + getPreviouslyCompletedCommands: + annotations: [] + default: false + type: public + returnType: java.util.List getRegisteringMember: annotations: [] default: false @@ -60763,6 +61255,11 @@ net.corda.data.membership.state.RegistrationState$Builder: default: false type: public returnType: boolean + hasPreviouslyCompletedCommands: + annotations: [] + default: false + type: public + returnType: boolean hasRegisteringMember: annotations: [] default: false @@ -60796,6 +61293,15 @@ net.corda.data.membership.state.RegistrationState$Builder: value: annotation: [] type: net.corda.data.identity.HoldingIdentity$Builder + setPreviouslyCompletedCommands: + annotations: [] + default: false + type: public + returnType: net.corda.data.membership.state.RegistrationState$Builder + params: + value: + annotation: [] + type: java.util.List setRegisteringMember: annotations: [] default: false diff --git a/data/topic-schema/src/api/corda-topic-schema-5.1.0.yaml b/data/topic-schema/src/api/corda-topic-schema-5.1.0.yaml index 9a01c2156b..a936d5e0d7 100644 --- a/data/topic-schema/src/api/corda-topic-schema-5.1.0.yaml +++ b/data/topic-schema/src/api/corda-topic-schema-5.1.0.yaml @@ -159,6 +159,14 @@ net.corda.schema.Schemas$Flow: FLOW_MAPPER_EVENT_DLQ_TOPIC: annotation: [] type: public static final String + FLOW_MAPPER_CLEANUP_TOPIC: + annotation: [] + type: public static final String + initialised value: flow.mapper.cleanup + FLOW_TIMEOUT_TOPIC: + annotation: [] + type: public static final String + initialised value: flow.timeout net.corda.schema.Schemas$Membership: annotations: [] type: public static final class @@ -374,10 +382,30 @@ net.corda.schema.Schemas$ScheduledTask: interface: false methods: {} fields: - SCHEDULED_TASK_DB_PROCESSOR: + SCHEDULED_TASK_TOPIC_DB_PROCESSOR: annotation: [] type: public static final String initialised value: scheduled.task.db.processor + SCHEDULED_TASK_NAME_DB_PROCESSOR: + annotation: [] + type: public static final String + initialised value: deduplication-table-clean-up-task + SCHEDULED_TASK_TOPIC_MAPPER_PROCESSOR: + annotation: [] + type: public static final String + initialised value: scheduled.task.mapper.processor + SCHEDULED_TASK_NAME_MAPPER_CLEANUP: + annotation: [] + type: public static final String + initialised value: flow-mapper-state-cleanup + SCHEDULED_TASK_TOPIC_FLOW_PROCESSOR: + annotation: [] + type: public static final String + initialised value: scheduled.task.flow.processor + SCHEDULED_TASK_NAME_SESSION_TIMEOUT: + annotation: [] + type: public static final String + initialised value: flow-session-timeout net.corda.schema.Schemas$Services: annotations: [] type: public static final class From ae731af379ef0a27c8c61104db78fc72b6770309 Mon Sep 17 00:00:00 2001 From: Jacob Scott Date: Fri, 6 Oct 2023 09:57:12 +0100 Subject: [PATCH 11/30] cement api --- .../src/api/corda-avro-schema-5.1.0.yaml | 222 ++++++++++++++++++ 1 file changed, 222 insertions(+) diff --git a/data/avro-schema/src/api/corda-avro-schema-5.1.0.yaml b/data/avro-schema/src/api/corda-avro-schema-5.1.0.yaml index 6f7cbebcd1..14ec6dd010 100644 --- a/data/avro-schema/src/api/corda-avro-schema-5.1.0.yaml +++ b/data/avro-schema/src/api/corda-avro-schema-5.1.0.yaml @@ -27360,6 +27360,190 @@ net.corda.data.ledger.persistence.FindTransaction$Builder: value: annotation: [] type: String +net.corda.data.ledger.persistence.FindTransactionIdsAndStatuses: + annotations: + - AvroGenerated + type: public class + extends: org.apache.avro.specific.SpecificRecordBase + implements: + - org.apache.avro.specific.SpecificRecord + interface: false + methods: + createDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + params: + resolver: + annotation: [] + type: org.apache.avro.message.SchemaStore + customDecode: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: org.apache.avro.io.ResolvingDecoder + customEncode: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: org.apache.avro.io.Encoder + fromByteBuffer: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.persistence.FindTransactionIdsAndStatuses + params: + b: + annotation: [] + type: java.nio.ByteBuffer + get: + annotations: [] + default: false + type: public + returnType: Object + params: + field$: + annotation: [] + type: int + getClassSchema: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.Schema + getDecoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageDecoder + getEncoder: + annotations: [] + default: false + type: public static + returnType: org.apache.avro.message.BinaryMessageEncoder + getIds: + annotations: [] + default: false + type: public + returnType: java.util.List + getSchema: + annotations: [] + default: false + type: public + returnType: org.apache.avro.Schema + getSpecificData: + annotations: [] + default: false + type: public + returnType: org.apache.avro.specific.SpecificData + hasCustomCoders: + annotations: [] + default: false + type: protected + returnType: boolean + newBuilder: + annotations: [] + default: false + type: public static + returnType: net.corda.data.ledger.persistence.FindTransactionIdsAndStatuses$Builder + params: + other: + annotation: [] + type: net.corda.data.ledger.persistence.FindTransactionIdsAndStatuses + put: + annotations: [] + default: false + type: public + returnType: void + params: + field$: + annotation: [] + type: int + value$: + annotation: [] + type: Object + readExternal: + annotations: [] + default: false + type: public + returnType: void + params: + in: + annotation: [] + type: java.io.ObjectInput + setIds: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: java.util.List + toByteBuffer: + annotations: [] + default: false + type: public + returnType: java.nio.ByteBuffer + writeExternal: + annotations: [] + default: false + type: public + returnType: void + params: + out: + annotation: [] + type: java.io.ObjectOutput + fields: + SCHEMA$: + annotation: [] + type: public static final org.apache.avro.Schema +net.corda.data.ledger.persistence.FindTransactionIdsAndStatuses$Builder: + annotations: + - AvroGenerated + type: public static class + extends: org.apache.avro.specific.SpecificRecordBuilderBase + implements: + - org.apache.avro.data.RecordBuilder + interface: false + methods: + build: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.FindTransactionIdsAndStatuses + clearIds: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.FindTransactionIdsAndStatuses$Builder + getIds: + annotations: [] + default: false + type: public + returnType: java.util.List + hasIds: + annotations: [] + default: false + type: public + returnType: boolean + setIds: + annotations: [] + default: false + type: public + returnType: net.corda.data.ledger.persistence.FindTransactionIdsAndStatuses$Builder + params: + value: + annotation: [] + type: java.util.List net.corda.data.ledger.persistence.FindUnconsumedStatesByExactType: annotations: - AvroGenerated @@ -93139,6 +93323,11 @@ net.corda.data.virtualnode.VirtualNodeUpgradeRequest: default: false type: public static returnType: org.apache.avro.message.BinaryMessageEncoder + getForceUpgrade: + annotations: [] + default: false + type: public + returnType: boolean getSchema: annotations: [] default: false @@ -93207,6 +93396,15 @@ net.corda.data.virtualnode.VirtualNodeUpgradeRequest: value: annotation: [] type: String + setForceUpgrade: + annotations: [] + default: false + type: public + returnType: void + params: + value: + annotation: [] + type: boolean setVirtualNodeShortHash: annotations: [] default: false @@ -93258,6 +93456,11 @@ net.corda.data.virtualnode.VirtualNodeUpgradeRequest$Builder: default: false type: public returnType: net.corda.data.virtualnode.VirtualNodeUpgradeRequest$Builder + clearForceUpgrade: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeUpgradeRequest$Builder clearVirtualNodeShortHash: annotations: [] default: false @@ -93273,6 +93476,11 @@ net.corda.data.virtualnode.VirtualNodeUpgradeRequest$Builder: default: false type: public returnType: String + getForceUpgrade: + annotations: [] + default: false + type: public + returnType: boolean getVirtualNodeShortHash: annotations: [] default: false @@ -93288,6 +93496,11 @@ net.corda.data.virtualnode.VirtualNodeUpgradeRequest$Builder: default: false type: public returnType: boolean + hasForceUpgrade: + annotations: [] + default: false + type: public + returnType: boolean hasVirtualNodeShortHash: annotations: [] default: false @@ -93311,6 +93524,15 @@ net.corda.data.virtualnode.VirtualNodeUpgradeRequest$Builder: value: annotation: [] type: String + setForceUpgrade: + annotations: [] + default: false + type: public + returnType: net.corda.data.virtualnode.VirtualNodeUpgradeRequest$Builder + params: + value: + annotation: [] + type: boolean setVirtualNodeShortHash: annotations: [] default: false From ffb8ce0dcbaf044461bf45fe272cfab38304103f Mon Sep 17 00:00:00 2001 From: Jacob Scott Date: Fri, 6 Oct 2023 16:55:25 +0100 Subject: [PATCH 12/30] API scan not needed in schemas --- data/avro-schema/build.gradle | 1 - .../src/api/corda-avro-schema-5.1.0.yaml | 95307 ---------------- data/config-schema/build.gradle | 1 - .../src/api/corda-config-schema-5.1.0.yaml | 1062 - data/db-schema/build.gradle | 1 - .../src/api/corda-db-schema-5.1.0.yaml | 220 - data/membership-schema/build.gradle | 1 - .../api/corda-membership-schema-5.1.0.yaml | 139 - data/rbac-schema/build.gradle | 1 - .../src/api/corda-rbac-schema-5.1.0.yaml | 44 - data/topic-schema/build.gradle | 1 - .../src/api/corda-topic-schema-5.1.0.yaml | 515 - 12 files changed, 97293 deletions(-) delete mode 100644 data/avro-schema/src/api/corda-avro-schema-5.1.0.yaml delete mode 100644 data/config-schema/src/api/corda-config-schema-5.1.0.yaml delete mode 100644 data/db-schema/src/api/corda-db-schema-5.1.0.yaml delete mode 100644 data/membership-schema/src/api/corda-membership-schema-5.1.0.yaml delete mode 100644 data/rbac-schema/src/api/corda-rbac-schema-5.1.0.yaml delete mode 100644 data/topic-schema/src/api/corda-topic-schema-5.1.0.yaml diff --git a/data/avro-schema/build.gradle b/data/avro-schema/build.gradle index 983cebe39f..e6c6bfd02c 100644 --- a/data/avro-schema/build.gradle +++ b/data/avro-schema/build.gradle @@ -7,7 +7,6 @@ plugins { id 'corda.common-publishing' id 'corda.java-only' id "com.github.davidmc24.gradle.plugin.avro-base" - id 'corda.api-scanner' } dependencies { diff --git a/data/avro-schema/src/api/corda-avro-schema-5.1.0.yaml b/data/avro-schema/src/api/corda-avro-schema-5.1.0.yaml deleted file mode 100644 index 14ec6dd010..0000000000 --- a/data/avro-schema/src/api/corda-avro-schema-5.1.0.yaml +++ /dev/null @@ -1,95307 +0,0 @@ -net.corda.data.AvroEnvelope: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.AvroEnvelope - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getFingerprint: - annotations: [] - default: false - type: public - returnType: net.corda.data.Fingerprint - getFlags: - annotations: [] - default: false - type: public - returnType: int - getMagic: - annotations: [] - default: false - type: public - returnType: net.corda.data.Magic - getPayload: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.AvroEnvelope$Builder - params: - other: - annotation: [] - type: net.corda.data.AvroEnvelope - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setFingerprint: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.Fingerprint - setFlags: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - setMagic: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.Magic - setPayload: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.AvroEnvelope$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.AvroEnvelope - clearFingerprint: - annotations: [] - default: false - type: public - returnType: net.corda.data.AvroEnvelope$Builder - clearFlags: - annotations: [] - default: false - type: public - returnType: net.corda.data.AvroEnvelope$Builder - clearMagic: - annotations: [] - default: false - type: public - returnType: net.corda.data.AvroEnvelope$Builder - clearPayload: - annotations: [] - default: false - type: public - returnType: net.corda.data.AvroEnvelope$Builder - getFingerprint: - annotations: [] - default: false - type: public - returnType: net.corda.data.Fingerprint - getFlags: - annotations: [] - default: false - type: public - returnType: int - getMagic: - annotations: [] - default: false - type: public - returnType: net.corda.data.Magic - getPayload: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - hasFingerprint: - annotations: [] - default: false - type: public - returnType: boolean - hasFlags: - annotations: [] - default: false - type: public - returnType: boolean - hasMagic: - annotations: [] - default: false - type: public - returnType: boolean - hasPayload: - annotations: [] - default: false - type: public - returnType: boolean - setFingerprint: - annotations: [] - default: false - type: public - returnType: net.corda.data.AvroEnvelope$Builder - params: - value: - annotation: [] - type: net.corda.data.Fingerprint - setFlags: - annotations: [] - default: false - type: public - returnType: net.corda.data.AvroEnvelope$Builder - params: - value: - annotation: [] - type: int - setMagic: - annotations: [] - default: false - type: public - returnType: net.corda.data.AvroEnvelope$Builder - params: - value: - annotation: [] - type: net.corda.data.Magic - setPayload: - annotations: [] - default: false - type: public - returnType: net.corda.data.AvroEnvelope$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer -net.corda.data.AvroGeneratedMessageClasses: - annotations: [] - type: public final class - extends: null - implements: [] - interface: false - methods: - getAvroGeneratedMessageClasses: - annotations: - - NotNull - default: false - type: public static - returnType: java.util.Set> -net.corda.data.ExceptionEnvelope: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ExceptionEnvelope - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getErrorMessage: - annotations: [] - default: false - type: public - returnType: String - getErrorType: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ExceptionEnvelope$Builder - params: - other: - annotation: [] - type: net.corda.data.ExceptionEnvelope - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setErrorMessage: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setErrorType: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.ExceptionEnvelope$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.ExceptionEnvelope - clearErrorMessage: - annotations: [] - default: false - type: public - returnType: net.corda.data.ExceptionEnvelope$Builder - clearErrorType: - annotations: [] - default: false - type: public - returnType: net.corda.data.ExceptionEnvelope$Builder - getErrorMessage: - annotations: [] - default: false - type: public - returnType: String - getErrorType: - annotations: [] - default: false - type: public - returnType: String - hasErrorMessage: - annotations: [] - default: false - type: public - returnType: boolean - hasErrorType: - annotations: [] - default: false - type: public - returnType: boolean - setErrorMessage: - annotations: [] - default: false - type: public - returnType: net.corda.data.ExceptionEnvelope$Builder - params: - value: - annotation: [] - type: String - setErrorType: - annotations: [] - default: false - type: public - returnType: net.corda.data.ExceptionEnvelope$Builder - params: - value: - annotation: [] - type: String -net.corda.data.Fingerprint: - annotations: - - AvroGenerated - - FixedSize - type: public class - extends: org.apache.avro.specific.SpecificFixed - implements: [] - interface: false - methods: - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.KeyValuePair: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.KeyValuePair - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getKey: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getValue: - annotations: [] - default: false - type: public - returnType: String - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.KeyValuePair$Builder - params: - other: - annotation: [] - type: net.corda.data.KeyValuePair - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setKey: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setValue: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.KeyValuePair$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePair - clearKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePair$Builder - clearValue: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePair$Builder - getKey: - annotations: [] - default: false - type: public - returnType: String - getValue: - annotations: [] - default: false - type: public - returnType: String - hasKey: - annotations: [] - default: false - type: public - returnType: boolean - hasValue: - annotations: [] - default: false - type: public - returnType: boolean - setKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePair$Builder - params: - value: - annotation: [] - type: String - setValue: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePair$Builder - params: - value: - annotation: [] - type: String -net.corda.data.KeyValuePairList: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.KeyValuePairList - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getItems: - annotations: [] - default: false - type: public - returnType: java.util.List - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.KeyValuePairList$Builder - params: - other: - annotation: [] - type: net.corda.data.KeyValuePairList - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setItems: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.KeyValuePairList$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - clearItems: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList$Builder - getItems: - annotations: [] - default: false - type: public - returnType: java.util.List - hasItems: - annotations: [] - default: false - type: public - returnType: boolean - setItems: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.Magic: - annotations: - - AvroGenerated - - FixedSize - type: public class - extends: org.apache.avro.specific.SpecificFixed - implements: [] - interface: false - methods: - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.SchemaLoadException: - annotations: [] - type: public final class - extends: net.corda.v5.base.exceptions.CordaRuntimeException - implements: [] - interface: false - methods: {} -net.corda.data.certificates.CertificateUsage: - annotations: - - AvroGenerated - type: public final class - extends: java.lang.Enum - implements: - - org.apache.avro.generic.GenericEnumSymbol - interface: false - methods: - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - valueOf: - annotations: [] - default: false - type: public static - returnType: net.corda.data.certificates.CertificateUsage - params: {} - values: - annotations: [] - default: false - type: public static - returnType: "net.corda.data.certificates.CertificateUsage[]" - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.certificates.rpc.request.CertificateRpcRequest: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.certificates.rpc.request.CertificateRpcRequest - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getHoldingIdentity: - annotations: [] - default: false - type: public - returnType: String - getRequest: - annotations: [] - default: false - type: public - returnType: Object - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getUsage: - annotations: [] - default: false - type: public - returnType: net.corda.data.certificates.CertificateUsage - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.certificates.rpc.request.CertificateRpcRequest$Builder - params: - other: - annotation: [] - type: net.corda.data.certificates.rpc.request.CertificateRpcRequest - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setHoldingIdentity: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setRequest: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Object - setUsage: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.certificates.CertificateUsage - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.certificates.rpc.request.CertificateRpcRequest$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.certificates.rpc.request.CertificateRpcRequest - clearHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.certificates.rpc.request.CertificateRpcRequest$Builder - clearRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.certificates.rpc.request.CertificateRpcRequest$Builder - clearUsage: - annotations: [] - default: false - type: public - returnType: net.corda.data.certificates.rpc.request.CertificateRpcRequest$Builder - getHoldingIdentity: - annotations: [] - default: false - type: public - returnType: String - getRequest: - annotations: [] - default: false - type: public - returnType: Object - getUsage: - annotations: [] - default: false - type: public - returnType: net.corda.data.certificates.CertificateUsage - hasHoldingIdentity: - annotations: [] - default: false - type: public - returnType: boolean - hasRequest: - annotations: [] - default: false - type: public - returnType: boolean - hasUsage: - annotations: [] - default: false - type: public - returnType: boolean - setHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.certificates.rpc.request.CertificateRpcRequest$Builder - params: - value: - annotation: [] - type: String - setRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.certificates.rpc.request.CertificateRpcRequest$Builder - params: - value: - annotation: [] - type: Object - setUsage: - annotations: [] - default: false - type: public - returnType: net.corda.data.certificates.rpc.request.CertificateRpcRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.certificates.CertificateUsage -net.corda.data.certificates.rpc.request.ImportCertificateRpcRequest: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.certificates.rpc.request.ImportCertificateRpcRequest - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getAlias: - annotations: [] - default: false - type: public - returnType: String - getCertificates: - annotations: [] - default: false - type: public - returnType: String - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.certificates.rpc.request.ImportCertificateRpcRequest$Builder - params: - other: - annotation: [] - type: net.corda.data.certificates.rpc.request.ImportCertificateRpcRequest - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setAlias: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setCertificates: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.certificates.rpc.request.ImportCertificateRpcRequest$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.certificates.rpc.request.ImportCertificateRpcRequest - clearAlias: - annotations: [] - default: false - type: public - returnType: net.corda.data.certificates.rpc.request.ImportCertificateRpcRequest$Builder - clearCertificates: - annotations: [] - default: false - type: public - returnType: net.corda.data.certificates.rpc.request.ImportCertificateRpcRequest$Builder - getAlias: - annotations: [] - default: false - type: public - returnType: String - getCertificates: - annotations: [] - default: false - type: public - returnType: String - hasAlias: - annotations: [] - default: false - type: public - returnType: boolean - hasCertificates: - annotations: [] - default: false - type: public - returnType: boolean - setAlias: - annotations: [] - default: false - type: public - returnType: net.corda.data.certificates.rpc.request.ImportCertificateRpcRequest$Builder - params: - value: - annotation: [] - type: String - setCertificates: - annotations: [] - default: false - type: public - returnType: net.corda.data.certificates.rpc.request.ImportCertificateRpcRequest$Builder - params: - value: - annotation: [] - type: String -net.corda.data.certificates.rpc.request.ListCertificateAliasesRpcRequest: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.certificates.rpc.request.ListCertificateAliasesRpcRequest - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.certificates.rpc.request.ListCertificateAliasesRpcRequest$Builder - params: - other: - annotation: [] - type: net.corda.data.certificates.rpc.request.ListCertificateAliasesRpcRequest - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.certificates.rpc.request.ListCertificateAliasesRpcRequest$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.certificates.rpc.request.ListCertificateAliasesRpcRequest -net.corda.data.certificates.rpc.request.RetrieveCertificateRpcRequest: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.certificates.rpc.request.RetrieveCertificateRpcRequest - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getAlias: - annotations: [] - default: false - type: public - returnType: String - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.certificates.rpc.request.RetrieveCertificateRpcRequest$Builder - params: - other: - annotation: [] - type: net.corda.data.certificates.rpc.request.RetrieveCertificateRpcRequest - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setAlias: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.certificates.rpc.request.RetrieveCertificateRpcRequest$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.certificates.rpc.request.RetrieveCertificateRpcRequest - clearAlias: - annotations: [] - default: false - type: public - returnType: net.corda.data.certificates.rpc.request.RetrieveCertificateRpcRequest$Builder - getAlias: - annotations: [] - default: false - type: public - returnType: String - hasAlias: - annotations: [] - default: false - type: public - returnType: boolean - setAlias: - annotations: [] - default: false - type: public - returnType: net.corda.data.certificates.rpc.request.RetrieveCertificateRpcRequest$Builder - params: - value: - annotation: [] - type: String -net.corda.data.certificates.rpc.response.CertificateImportedRpcResponse: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.certificates.rpc.response.CertificateImportedRpcResponse - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.certificates.rpc.response.CertificateImportedRpcResponse$Builder - params: - other: - annotation: [] - type: net.corda.data.certificates.rpc.response.CertificateImportedRpcResponse - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.certificates.rpc.response.CertificateImportedRpcResponse$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.certificates.rpc.response.CertificateImportedRpcResponse -net.corda.data.certificates.rpc.response.CertificateRetrievalRpcResponse: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.certificates.rpc.response.CertificateRetrievalRpcResponse - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getCertificates: - annotations: [] - default: false - type: public - returnType: String - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.certificates.rpc.response.CertificateRetrievalRpcResponse$Builder - params: - other: - annotation: [] - type: net.corda.data.certificates.rpc.response.CertificateRetrievalRpcResponse - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setCertificates: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.certificates.rpc.response.CertificateRetrievalRpcResponse$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.certificates.rpc.response.CertificateRetrievalRpcResponse - clearCertificates: - annotations: [] - default: false - type: public - returnType: net.corda.data.certificates.rpc.response.CertificateRetrievalRpcResponse$Builder - getCertificates: - annotations: [] - default: false - type: public - returnType: String - hasCertificates: - annotations: [] - default: false - type: public - returnType: boolean - setCertificates: - annotations: [] - default: false - type: public - returnType: net.corda.data.certificates.rpc.response.CertificateRetrievalRpcResponse$Builder - params: - value: - annotation: [] - type: String -net.corda.data.certificates.rpc.response.CertificateRpcResponse: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.certificates.rpc.response.CertificateRpcResponse - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getResponse: - annotations: [] - default: false - type: public - returnType: Object - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.certificates.rpc.response.CertificateRpcResponse$Builder - params: - other: - annotation: [] - type: net.corda.data.certificates.rpc.response.CertificateRpcResponse - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setResponse: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Object - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.certificates.rpc.response.CertificateRpcResponse$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.certificates.rpc.response.CertificateRpcResponse - clearResponse: - annotations: [] - default: false - type: public - returnType: net.corda.data.certificates.rpc.response.CertificateRpcResponse$Builder - getResponse: - annotations: [] - default: false - type: public - returnType: Object - hasResponse: - annotations: [] - default: false - type: public - returnType: boolean - setResponse: - annotations: [] - default: false - type: public - returnType: net.corda.data.certificates.rpc.response.CertificateRpcResponse$Builder - params: - value: - annotation: [] - type: Object -net.corda.data.certificates.rpc.response.ListCertificateAliasRpcResponse: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.certificates.rpc.response.ListCertificateAliasRpcResponse - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getAliases: - annotations: [] - default: false - type: public - returnType: java.util.List - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.certificates.rpc.response.ListCertificateAliasRpcResponse$Builder - params: - other: - annotation: [] - type: net.corda.data.certificates.rpc.response.ListCertificateAliasRpcResponse - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setAliases: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.certificates.rpc.response.ListCertificateAliasRpcResponse$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.certificates.rpc.response.ListCertificateAliasRpcResponse - clearAliases: - annotations: [] - default: false - type: public - returnType: net.corda.data.certificates.rpc.response.ListCertificateAliasRpcResponse$Builder - getAliases: - annotations: [] - default: false - type: public - returnType: java.util.List - hasAliases: - annotations: [] - default: false - type: public - returnType: boolean - setAliases: - annotations: [] - default: false - type: public - returnType: net.corda.data.certificates.rpc.response.ListCertificateAliasRpcResponse$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.chunking.Chunk: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.chunking.Chunk - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getChecksum: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.SecureHash - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getData: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getOffset: - annotations: [] - default: false - type: public - returnType: long - getPartNumber: - annotations: [] - default: false - type: public - returnType: int - getProperties: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getRequestId: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.chunking.Chunk$Builder - params: - other: - annotation: [] - type: net.corda.data.chunking.Chunk - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setChecksum: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.crypto.SecureHash - setData: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setOffset: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: long - setPartNumber: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - setProperties: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setRequestId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.chunking.Chunk$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.chunking.Chunk - clearChecksum: - annotations: [] - default: false - type: public - returnType: net.corda.data.chunking.Chunk$Builder - clearData: - annotations: [] - default: false - type: public - returnType: net.corda.data.chunking.Chunk$Builder - clearOffset: - annotations: [] - default: false - type: public - returnType: net.corda.data.chunking.Chunk$Builder - clearPartNumber: - annotations: [] - default: false - type: public - returnType: net.corda.data.chunking.Chunk$Builder - clearProperties: - annotations: [] - default: false - type: public - returnType: net.corda.data.chunking.Chunk$Builder - clearRequestId: - annotations: [] - default: false - type: public - returnType: net.corda.data.chunking.Chunk$Builder - getChecksum: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.SecureHash - getChecksumBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.SecureHash$Builder - getData: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getOffset: - annotations: [] - default: false - type: public - returnType: long - getPartNumber: - annotations: [] - default: false - type: public - returnType: int - getProperties: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getPropertiesBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList$Builder - getRequestId: - annotations: [] - default: false - type: public - returnType: String - hasChecksum: - annotations: [] - default: false - type: public - returnType: boolean - hasChecksumBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasData: - annotations: [] - default: false - type: public - returnType: boolean - hasOffset: - annotations: [] - default: false - type: public - returnType: boolean - hasPartNumber: - annotations: [] - default: false - type: public - returnType: boolean - hasProperties: - annotations: [] - default: false - type: public - returnType: boolean - hasPropertiesBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasRequestId: - annotations: [] - default: false - type: public - returnType: boolean - setChecksum: - annotations: [] - default: false - type: public - returnType: net.corda.data.chunking.Chunk$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.SecureHash - setChecksumBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.chunking.Chunk$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.SecureHash$Builder - setData: - annotations: [] - default: false - type: public - returnType: net.corda.data.chunking.Chunk$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setOffset: - annotations: [] - default: false - type: public - returnType: net.corda.data.chunking.Chunk$Builder - params: - value: - annotation: [] - type: long - setPartNumber: - annotations: [] - default: false - type: public - returnType: net.corda.data.chunking.Chunk$Builder - params: - value: - annotation: [] - type: int - setProperties: - annotations: [] - default: false - type: public - returnType: net.corda.data.chunking.Chunk$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setPropertiesBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.chunking.Chunk$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList$Builder - setRequestId: - annotations: [] - default: false - type: public - returnType: net.corda.data.chunking.Chunk$Builder - params: - value: - annotation: [] - type: String -net.corda.data.chunking.ChunkKey: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.chunking.ChunkKey - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getPartNumber: - annotations: [] - default: false - type: public - returnType: int - getRealKey: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.chunking.ChunkKey$Builder - params: - other: - annotation: [] - type: net.corda.data.chunking.ChunkKey - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setPartNumber: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - setRealKey: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.chunking.ChunkKey$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.chunking.ChunkKey - clearPartNumber: - annotations: [] - default: false - type: public - returnType: net.corda.data.chunking.ChunkKey$Builder - clearRealKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.chunking.ChunkKey$Builder - getPartNumber: - annotations: [] - default: false - type: public - returnType: int - getRealKey: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - hasPartNumber: - annotations: [] - default: false - type: public - returnType: boolean - hasRealKey: - annotations: [] - default: false - type: public - returnType: boolean - setPartNumber: - annotations: [] - default: false - type: public - returnType: net.corda.data.chunking.ChunkKey$Builder - params: - value: - annotation: [] - type: int - setRealKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.chunking.ChunkKey$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer -net.corda.data.chunking.CpkChunkId: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.chunking.CpkChunkId - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getCpkChecksum: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.SecureHash - getCpkChunkPartNumber: - annotations: [] - default: false - type: public - returnType: int - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.chunking.CpkChunkId$Builder - params: - other: - annotation: [] - type: net.corda.data.chunking.CpkChunkId - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setCpkChecksum: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.crypto.SecureHash - setCpkChunkPartNumber: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.chunking.CpkChunkId$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.chunking.CpkChunkId - clearCpkChecksum: - annotations: [] - default: false - type: public - returnType: net.corda.data.chunking.CpkChunkId$Builder - clearCpkChunkPartNumber: - annotations: [] - default: false - type: public - returnType: net.corda.data.chunking.CpkChunkId$Builder - getCpkChecksum: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.SecureHash - getCpkChecksumBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.SecureHash$Builder - getCpkChunkPartNumber: - annotations: [] - default: false - type: public - returnType: int - hasCpkChecksum: - annotations: [] - default: false - type: public - returnType: boolean - hasCpkChecksumBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasCpkChunkPartNumber: - annotations: [] - default: false - type: public - returnType: boolean - setCpkChecksum: - annotations: [] - default: false - type: public - returnType: net.corda.data.chunking.CpkChunkId$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.SecureHash - setCpkChecksumBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.chunking.CpkChunkId$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.SecureHash$Builder - setCpkChunkPartNumber: - annotations: [] - default: false - type: public - returnType: net.corda.data.chunking.CpkChunkId$Builder - params: - value: - annotation: [] - type: int -net.corda.data.chunking.PropertyKeys: - annotations: [] - type: public final class - extends: null - implements: [] - interface: false - methods: {} - fields: - FORCE_UPLOAD: - annotation: [] - type: public static final String - initialised value: forceUpload - RESET_DB: - annotation: [] - type: public static final String - initialised value: resetDb - ACTOR: - annotation: [] - type: public static final String - initialised value: actor -net.corda.data.chunking.UploadStatus: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.chunking.UploadStatus - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getChecksum: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.SecureHash - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getComplete: - annotations: [] - default: false - type: public - returnType: boolean - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getException: - annotations: [] - default: false - type: public - returnType: net.corda.data.ExceptionEnvelope - getMessage: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.chunking.UploadStatus$Builder - params: - other: - annotation: [] - type: net.corda.data.chunking.UploadStatus - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setChecksum: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.crypto.SecureHash - setComplete: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: boolean - setException: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.ExceptionEnvelope - setMessage: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.chunking.UploadStatus$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.chunking.UploadStatus - clearChecksum: - annotations: [] - default: false - type: public - returnType: net.corda.data.chunking.UploadStatus$Builder - clearComplete: - annotations: [] - default: false - type: public - returnType: net.corda.data.chunking.UploadStatus$Builder - clearException: - annotations: [] - default: false - type: public - returnType: net.corda.data.chunking.UploadStatus$Builder - clearMessage: - annotations: [] - default: false - type: public - returnType: net.corda.data.chunking.UploadStatus$Builder - getChecksum: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.SecureHash - getChecksumBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.SecureHash$Builder - getComplete: - annotations: [] - default: false - type: public - returnType: boolean - getException: - annotations: [] - default: false - type: public - returnType: net.corda.data.ExceptionEnvelope - getExceptionBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ExceptionEnvelope$Builder - getMessage: - annotations: [] - default: false - type: public - returnType: String - hasChecksum: - annotations: [] - default: false - type: public - returnType: boolean - hasChecksumBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasComplete: - annotations: [] - default: false - type: public - returnType: boolean - hasException: - annotations: [] - default: false - type: public - returnType: boolean - hasExceptionBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasMessage: - annotations: [] - default: false - type: public - returnType: boolean - setChecksum: - annotations: [] - default: false - type: public - returnType: net.corda.data.chunking.UploadStatus$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.SecureHash - setChecksumBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.chunking.UploadStatus$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.SecureHash$Builder - setComplete: - annotations: [] - default: false - type: public - returnType: net.corda.data.chunking.UploadStatus$Builder - params: - value: - annotation: [] - type: boolean - setException: - annotations: [] - default: false - type: public - returnType: net.corda.data.chunking.UploadStatus$Builder - params: - value: - annotation: [] - type: net.corda.data.ExceptionEnvelope - setExceptionBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.chunking.UploadStatus$Builder - params: - value: - annotation: [] - type: net.corda.data.ExceptionEnvelope$Builder - setMessage: - annotations: [] - default: false - type: public - returnType: net.corda.data.chunking.UploadStatus$Builder - params: - value: - annotation: [] - type: String -net.corda.data.chunking.UploadStatusKey: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.chunking.UploadStatusKey - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getRequestId: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSequenceNumber: - annotations: [] - default: false - type: public - returnType: int - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.chunking.UploadStatusKey$Builder - params: - other: - annotation: [] - type: net.corda.data.chunking.UploadStatusKey - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setRequestId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setSequenceNumber: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.chunking.UploadStatusKey$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.chunking.UploadStatusKey - clearRequestId: - annotations: [] - default: false - type: public - returnType: net.corda.data.chunking.UploadStatusKey$Builder - clearSequenceNumber: - annotations: [] - default: false - type: public - returnType: net.corda.data.chunking.UploadStatusKey$Builder - getRequestId: - annotations: [] - default: false - type: public - returnType: String - getSequenceNumber: - annotations: [] - default: false - type: public - returnType: int - hasRequestId: - annotations: [] - default: false - type: public - returnType: boolean - hasSequenceNumber: - annotations: [] - default: false - type: public - returnType: boolean - setRequestId: - annotations: [] - default: false - type: public - returnType: net.corda.data.chunking.UploadStatusKey$Builder - params: - value: - annotation: [] - type: String - setSequenceNumber: - annotations: [] - default: false - type: public - returnType: net.corda.data.chunking.UploadStatusKey$Builder - params: - value: - annotation: [] - type: int -net.corda.data.config.Configuration: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.config.Configuration - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSchemaVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.ConfigurationSchemaVersion - getSource: - annotations: [] - default: false - type: public - returnType: String - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getValue: - annotations: [] - default: false - type: public - returnType: String - getVersion: - annotations: [] - default: false - type: public - returnType: int - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.config.Configuration$Builder - params: - other: - annotation: [] - type: net.corda.data.config.Configuration - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setSchemaVersion: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.config.ConfigurationSchemaVersion - setSource: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setValue: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setVersion: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.config.Configuration$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.Configuration - clearSchemaVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.Configuration$Builder - clearSource: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.Configuration$Builder - clearValue: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.Configuration$Builder - clearVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.Configuration$Builder - getSchemaVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.ConfigurationSchemaVersion - getSchemaVersionBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.ConfigurationSchemaVersion$Builder - getSource: - annotations: [] - default: false - type: public - returnType: String - getValue: - annotations: [] - default: false - type: public - returnType: String - getVersion: - annotations: [] - default: false - type: public - returnType: int - hasSchemaVersion: - annotations: [] - default: false - type: public - returnType: boolean - hasSchemaVersionBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasSource: - annotations: [] - default: false - type: public - returnType: boolean - hasValue: - annotations: [] - default: false - type: public - returnType: boolean - hasVersion: - annotations: [] - default: false - type: public - returnType: boolean - setSchemaVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.Configuration$Builder - params: - value: - annotation: [] - type: net.corda.data.config.ConfigurationSchemaVersion - setSchemaVersionBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.Configuration$Builder - params: - value: - annotation: [] - type: net.corda.data.config.ConfigurationSchemaVersion$Builder - setSource: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.Configuration$Builder - params: - value: - annotation: [] - type: String - setValue: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.Configuration$Builder - params: - value: - annotation: [] - type: String - setVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.Configuration$Builder - params: - value: - annotation: [] - type: int -net.corda.data.config.ConfigurationManagementRequest: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.config.ConfigurationManagementRequest - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConfig: - annotations: [] - default: false - type: public - returnType: String - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSchemaVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.ConfigurationSchemaVersion - getSection: - annotations: [] - default: false - type: public - returnType: String - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getUpdateActor: - annotations: [] - default: false - type: public - returnType: String - getVersion: - annotations: [] - default: false - type: public - returnType: int - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.config.ConfigurationManagementRequest$Builder - params: - other: - annotation: [] - type: net.corda.data.config.ConfigurationManagementRequest - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setConfig: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setSchemaVersion: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.config.ConfigurationSchemaVersion - setSection: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setUpdateActor: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setVersion: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.config.ConfigurationManagementRequest$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.ConfigurationManagementRequest - clearConfig: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.ConfigurationManagementRequest$Builder - clearSchemaVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.ConfigurationManagementRequest$Builder - clearSection: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.ConfigurationManagementRequest$Builder - clearUpdateActor: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.ConfigurationManagementRequest$Builder - clearVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.ConfigurationManagementRequest$Builder - getConfig: - annotations: [] - default: false - type: public - returnType: String - getSchemaVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.ConfigurationSchemaVersion - getSchemaVersionBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.ConfigurationSchemaVersion$Builder - getSection: - annotations: [] - default: false - type: public - returnType: String - getUpdateActor: - annotations: [] - default: false - type: public - returnType: String - getVersion: - annotations: [] - default: false - type: public - returnType: int - hasConfig: - annotations: [] - default: false - type: public - returnType: boolean - hasSchemaVersion: - annotations: [] - default: false - type: public - returnType: boolean - hasSchemaVersionBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasSection: - annotations: [] - default: false - type: public - returnType: boolean - hasUpdateActor: - annotations: [] - default: false - type: public - returnType: boolean - hasVersion: - annotations: [] - default: false - type: public - returnType: boolean - setConfig: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.ConfigurationManagementRequest$Builder - params: - value: - annotation: [] - type: String - setSchemaVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.ConfigurationManagementRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.config.ConfigurationSchemaVersion - setSchemaVersionBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.ConfigurationManagementRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.config.ConfigurationSchemaVersion$Builder - setSection: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.ConfigurationManagementRequest$Builder - params: - value: - annotation: [] - type: String - setUpdateActor: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.ConfigurationManagementRequest$Builder - params: - value: - annotation: [] - type: String - setVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.ConfigurationManagementRequest$Builder - params: - value: - annotation: [] - type: int -net.corda.data.config.ConfigurationManagementResponse: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.config.ConfigurationManagementResponse - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConfig: - annotations: [] - default: false - type: public - returnType: String - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getException: - annotations: [] - default: false - type: public - returnType: net.corda.data.ExceptionEnvelope - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSchemaVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.ConfigurationSchemaVersion - getSection: - annotations: [] - default: false - type: public - returnType: String - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getSuccess: - annotations: [] - default: false - type: public - returnType: boolean - getVersion: - annotations: [] - default: false - type: public - returnType: int - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.config.ConfigurationManagementResponse$Builder - params: - other: - annotation: [] - type: net.corda.data.config.ConfigurationManagementResponse - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setConfig: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setException: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.ExceptionEnvelope - setSchemaVersion: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.config.ConfigurationSchemaVersion - setSection: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setSuccess: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: boolean - setVersion: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.config.ConfigurationManagementResponse$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.ConfigurationManagementResponse - clearConfig: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.ConfigurationManagementResponse$Builder - clearException: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.ConfigurationManagementResponse$Builder - clearSchemaVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.ConfigurationManagementResponse$Builder - clearSection: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.ConfigurationManagementResponse$Builder - clearSuccess: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.ConfigurationManagementResponse$Builder - clearVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.ConfigurationManagementResponse$Builder - getConfig: - annotations: [] - default: false - type: public - returnType: String - getException: - annotations: [] - default: false - type: public - returnType: net.corda.data.ExceptionEnvelope - getExceptionBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ExceptionEnvelope$Builder - getSchemaVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.ConfigurationSchemaVersion - getSchemaVersionBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.ConfigurationSchemaVersion$Builder - getSection: - annotations: [] - default: false - type: public - returnType: String - getSuccess: - annotations: [] - default: false - type: public - returnType: boolean - getVersion: - annotations: [] - default: false - type: public - returnType: int - hasConfig: - annotations: [] - default: false - type: public - returnType: boolean - hasException: - annotations: [] - default: false - type: public - returnType: boolean - hasExceptionBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasSchemaVersion: - annotations: [] - default: false - type: public - returnType: boolean - hasSchemaVersionBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasSection: - annotations: [] - default: false - type: public - returnType: boolean - hasSuccess: - annotations: [] - default: false - type: public - returnType: boolean - hasVersion: - annotations: [] - default: false - type: public - returnType: boolean - setConfig: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.ConfigurationManagementResponse$Builder - params: - value: - annotation: [] - type: String - setException: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.ConfigurationManagementResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.ExceptionEnvelope - setExceptionBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.ConfigurationManagementResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.ExceptionEnvelope$Builder - setSchemaVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.ConfigurationManagementResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.config.ConfigurationSchemaVersion - setSchemaVersionBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.ConfigurationManagementResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.config.ConfigurationSchemaVersion$Builder - setSection: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.ConfigurationManagementResponse$Builder - params: - value: - annotation: [] - type: String - setSuccess: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.ConfigurationManagementResponse$Builder - params: - value: - annotation: [] - type: boolean - setVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.ConfigurationManagementResponse$Builder - params: - value: - annotation: [] - type: int -net.corda.data.config.ConfigurationSchemaVersion: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.config.ConfigurationSchemaVersion - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getMajorVersion: - annotations: [] - default: false - type: public - returnType: int - getMinorVersion: - annotations: [] - default: false - type: public - returnType: int - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.config.ConfigurationSchemaVersion$Builder - params: - other: - annotation: [] - type: net.corda.data.config.ConfigurationSchemaVersion - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setMajorVersion: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - setMinorVersion: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.config.ConfigurationSchemaVersion$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.ConfigurationSchemaVersion - clearMajorVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.ConfigurationSchemaVersion$Builder - clearMinorVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.ConfigurationSchemaVersion$Builder - getMajorVersion: - annotations: [] - default: false - type: public - returnType: int - getMinorVersion: - annotations: [] - default: false - type: public - returnType: int - hasMajorVersion: - annotations: [] - default: false - type: public - returnType: boolean - hasMinorVersion: - annotations: [] - default: false - type: public - returnType: boolean - setMajorVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.ConfigurationSchemaVersion$Builder - params: - value: - annotation: [] - type: int - setMinorVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.config.ConfigurationSchemaVersion$Builder - params: - value: - annotation: [] - type: int -net.corda.data.crypto.SecureHash: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.SecureHash - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getAlgorithm: - annotations: [] - default: false - type: public - returnType: String - getBytes: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.SecureHash$Builder - params: - other: - annotation: [] - type: net.corda.data.crypto.SecureHash - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setAlgorithm: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setBytes: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.crypto.SecureHash$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.SecureHash - clearAlgorithm: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.SecureHash$Builder - clearBytes: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.SecureHash$Builder - getAlgorithm: - annotations: [] - default: false - type: public - returnType: String - getBytes: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - hasAlgorithm: - annotations: [] - default: false - type: public - returnType: boolean - hasBytes: - annotations: [] - default: false - type: public - returnType: boolean - setAlgorithm: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.SecureHash$Builder - params: - value: - annotation: [] - type: String - setBytes: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.SecureHash$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer -net.corda.data.crypto.SecureHashes: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.SecureHashes - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getHashes: - annotations: [] - default: false - type: public - returnType: java.util.List - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.SecureHashes$Builder - params: - other: - annotation: [] - type: net.corda.data.crypto.SecureHashes - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setHashes: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.crypto.SecureHashes$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.SecureHashes - clearHashes: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.SecureHashes$Builder - getHashes: - annotations: [] - default: false - type: public - returnType: java.util.List - hasHashes: - annotations: [] - default: false - type: public - returnType: boolean - setHashes: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.SecureHashes$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.crypto.ShortHashes: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.ShortHashes - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getHashes: - annotations: [] - default: false - type: public - returnType: java.util.List - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.ShortHashes$Builder - params: - other: - annotation: [] - type: net.corda.data.crypto.ShortHashes - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setHashes: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.crypto.ShortHashes$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.ShortHashes - clearHashes: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.ShortHashes$Builder - getHashes: - annotations: [] - default: false - type: public - returnType: java.util.List - hasHashes: - annotations: [] - default: false - type: public - returnType: boolean - setHashes: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.ShortHashes$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.crypto.wire.CryptoDerivedSharedSecret: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.CryptoDerivedSharedSecret - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSecret: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.CryptoDerivedSharedSecret$Builder - params: - other: - annotation: [] - type: net.corda.data.crypto.wire.CryptoDerivedSharedSecret - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setSecret: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.crypto.wire.CryptoDerivedSharedSecret$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoDerivedSharedSecret - clearSecret: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoDerivedSharedSecret$Builder - getSecret: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - hasSecret: - annotations: [] - default: false - type: public - returnType: boolean - setSecret: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoDerivedSharedSecret$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer -net.corda.data.crypto.wire.CryptoKeySchemes: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.CryptoKeySchemes - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getCodes: - annotations: [] - default: false - type: public - returnType: java.util.List - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.CryptoKeySchemes$Builder - params: - other: - annotation: [] - type: net.corda.data.crypto.wire.CryptoKeySchemes - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setCodes: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.crypto.wire.CryptoKeySchemes$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoKeySchemes - clearCodes: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoKeySchemes$Builder - getCodes: - annotations: [] - default: false - type: public - returnType: java.util.List - hasCodes: - annotations: [] - default: false - type: public - returnType: boolean - setCodes: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoKeySchemes$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.crypto.wire.CryptoNoContentValue: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.CryptoNoContentValue - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.CryptoNoContentValue$Builder - params: - other: - annotation: [] - type: net.corda.data.crypto.wire.CryptoNoContentValue - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.crypto.wire.CryptoNoContentValue$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoNoContentValue -net.corda.data.crypto.wire.CryptoPublicKey: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.CryptoPublicKey - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getKey: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.CryptoPublicKey$Builder - params: - other: - annotation: [] - type: net.corda.data.crypto.wire.CryptoPublicKey - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setKey: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.crypto.wire.CryptoPublicKey$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoPublicKey - clearKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoPublicKey$Builder - getKey: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - hasKey: - annotations: [] - default: false - type: public - returnType: boolean - setKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoPublicKey$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer -net.corda.data.crypto.wire.CryptoRequestContext: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.CryptoRequestContext - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getOther: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getRequestId: - annotations: [] - default: false - type: public - returnType: String - getRequestTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getRequestingComponent: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getTenantId: - annotations: [] - default: false - type: public - returnType: String - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.CryptoRequestContext$Builder - params: - other: - annotation: [] - type: net.corda.data.crypto.wire.CryptoRequestContext - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setOther: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setRequestId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setRequestTimestamp: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - setRequestingComponent: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setTenantId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.crypto.wire.CryptoRequestContext$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoRequestContext - clearOther: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoRequestContext$Builder - clearRequestId: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoRequestContext$Builder - clearRequestTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoRequestContext$Builder - clearRequestingComponent: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoRequestContext$Builder - clearTenantId: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoRequestContext$Builder - getOther: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getOtherBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList$Builder - getRequestId: - annotations: [] - default: false - type: public - returnType: String - getRequestTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getRequestingComponent: - annotations: [] - default: false - type: public - returnType: String - getTenantId: - annotations: [] - default: false - type: public - returnType: String - hasOther: - annotations: [] - default: false - type: public - returnType: boolean - hasOtherBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasRequestId: - annotations: [] - default: false - type: public - returnType: boolean - hasRequestTimestamp: - annotations: [] - default: false - type: public - returnType: boolean - hasRequestingComponent: - annotations: [] - default: false - type: public - returnType: boolean - hasTenantId: - annotations: [] - default: false - type: public - returnType: boolean - setOther: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoRequestContext$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setOtherBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoRequestContext$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList$Builder - setRequestId: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoRequestContext$Builder - params: - value: - annotation: [] - type: String - setRequestTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoRequestContext$Builder - params: - value: - annotation: [] - type: java.time.Instant - setRequestingComponent: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoRequestContext$Builder - params: - value: - annotation: [] - type: String - setTenantId: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoRequestContext$Builder - params: - value: - annotation: [] - type: String -net.corda.data.crypto.wire.CryptoResponseContext: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.CryptoResponseContext - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getOther: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getRequestId: - annotations: [] - default: false - type: public - returnType: String - getRequestTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getRequestingComponent: - annotations: [] - default: false - type: public - returnType: String - getResponseTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getTenantId: - annotations: [] - default: false - type: public - returnType: String - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.CryptoResponseContext$Builder - params: - other: - annotation: [] - type: net.corda.data.crypto.wire.CryptoResponseContext - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setOther: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setRequestId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setRequestTimestamp: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - setRequestingComponent: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setResponseTimestamp: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - setTenantId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.crypto.wire.CryptoResponseContext$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoResponseContext - clearOther: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoResponseContext$Builder - clearRequestId: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoResponseContext$Builder - clearRequestTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoResponseContext$Builder - clearRequestingComponent: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoResponseContext$Builder - clearResponseTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoResponseContext$Builder - clearTenantId: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoResponseContext$Builder - getOther: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getOtherBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList$Builder - getRequestId: - annotations: [] - default: false - type: public - returnType: String - getRequestTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getRequestingComponent: - annotations: [] - default: false - type: public - returnType: String - getResponseTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getTenantId: - annotations: [] - default: false - type: public - returnType: String - hasOther: - annotations: [] - default: false - type: public - returnType: boolean - hasOtherBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasRequestId: - annotations: [] - default: false - type: public - returnType: boolean - hasRequestTimestamp: - annotations: [] - default: false - type: public - returnType: boolean - hasRequestingComponent: - annotations: [] - default: false - type: public - returnType: boolean - hasResponseTimestamp: - annotations: [] - default: false - type: public - returnType: boolean - hasTenantId: - annotations: [] - default: false - type: public - returnType: boolean - setOther: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoResponseContext$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setOtherBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoResponseContext$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList$Builder - setRequestId: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoResponseContext$Builder - params: - value: - annotation: [] - type: String - setRequestTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoResponseContext$Builder - params: - value: - annotation: [] - type: java.time.Instant - setRequestingComponent: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoResponseContext$Builder - params: - value: - annotation: [] - type: String - setResponseTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoResponseContext$Builder - params: - value: - annotation: [] - type: java.time.Instant - setTenantId: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoResponseContext$Builder - params: - value: - annotation: [] - type: String -net.corda.data.crypto.wire.CryptoSignature: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.CryptoSignature - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getBytes: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.CryptoSignature$Builder - params: - other: - annotation: [] - type: net.corda.data.crypto.wire.CryptoSignature - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setBytes: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.crypto.wire.CryptoSignature$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignature - clearBytes: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignature$Builder - getBytes: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - hasBytes: - annotations: [] - default: false - type: public - returnType: boolean - setBytes: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignature$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer -net.corda.data.crypto.wire.CryptoSignatureParameterSpec: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.CryptoSignatureParameterSpec - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getBytes: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getClassName: - annotations: [] - default: false - type: public - returnType: String - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.CryptoSignatureParameterSpec$Builder - params: - other: - annotation: [] - type: net.corda.data.crypto.wire.CryptoSignatureParameterSpec - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setBytes: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setClassName: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.crypto.wire.CryptoSignatureParameterSpec$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureParameterSpec - clearBytes: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureParameterSpec$Builder - clearClassName: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureParameterSpec$Builder - getBytes: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getClassName: - annotations: [] - default: false - type: public - returnType: String - hasBytes: - annotations: [] - default: false - type: public - returnType: boolean - hasClassName: - annotations: [] - default: false - type: public - returnType: boolean - setBytes: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureParameterSpec$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setClassName: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureParameterSpec$Builder - params: - value: - annotation: [] - type: String -net.corda.data.crypto.wire.CryptoSignatureSpec: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.CryptoSignatureSpec - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getCustomDigestName: - annotations: [] - default: false - type: public - returnType: String - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getParams: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureParameterSpec - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSignatureName: - annotations: [] - default: false - type: public - returnType: String - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.CryptoSignatureSpec$Builder - params: - other: - annotation: [] - type: net.corda.data.crypto.wire.CryptoSignatureSpec - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setCustomDigestName: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setParams: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoSignatureParameterSpec - setSignatureName: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.crypto.wire.CryptoSignatureSpec$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureSpec - clearCustomDigestName: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureSpec$Builder - clearParams: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureSpec$Builder - clearSignatureName: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureSpec$Builder - getCustomDigestName: - annotations: [] - default: false - type: public - returnType: String - getParams: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureParameterSpec - getParamsBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureParameterSpec$Builder - getSignatureName: - annotations: [] - default: false - type: public - returnType: String - hasCustomDigestName: - annotations: [] - default: false - type: public - returnType: boolean - hasParams: - annotations: [] - default: false - type: public - returnType: boolean - hasParamsBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasSignatureName: - annotations: [] - default: false - type: public - returnType: boolean - setCustomDigestName: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureSpec$Builder - params: - value: - annotation: [] - type: String - setParams: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureSpec$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoSignatureParameterSpec - setParamsBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureSpec$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoSignatureParameterSpec$Builder - setSignatureName: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureSpec$Builder - params: - value: - annotation: [] - type: String -net.corda.data.crypto.wire.CryptoSignatureWithKey: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.CryptoSignatureWithKey - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getBytes: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getPublicKey: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.CryptoSignatureWithKey$Builder - params: - other: - annotation: [] - type: net.corda.data.crypto.wire.CryptoSignatureWithKey - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setBytes: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setPublicKey: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.crypto.wire.CryptoSignatureWithKey$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureWithKey - clearBytes: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureWithKey$Builder - clearPublicKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureWithKey$Builder - getBytes: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getPublicKey: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - hasBytes: - annotations: [] - default: false - type: public - returnType: boolean - hasPublicKey: - annotations: [] - default: false - type: public - returnType: boolean - setBytes: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureWithKey$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setPublicKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureWithKey$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer -net.corda.data.crypto.wire.CryptoSigningKey: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.CryptoSigningKey - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getAlias: - annotations: [] - default: false - type: public - returnType: String - getCategory: - annotations: [] - default: false - type: public - returnType: String - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getCreated: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getEncodingVersion: - annotations: [] - default: false - type: public - returnType: Integer - getExternalId: - annotations: [] - default: false - type: public - returnType: String - getHsmAlias: - annotations: [] - default: false - type: public - returnType: String - getId: - annotations: [] - default: false - type: public - returnType: String - getMasterKeyAlias: - annotations: [] - default: false - type: public - returnType: String - getPublicKey: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSchemeCodeName: - annotations: [] - default: false - type: public - returnType: String - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getTenantId: - annotations: [] - default: false - type: public - returnType: String - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.CryptoSigningKey$Builder - params: - other: - annotation: [] - type: net.corda.data.crypto.wire.CryptoSigningKey - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setAlias: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setCategory: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setCreated: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - setEncodingVersion: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Integer - setExternalId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setHsmAlias: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setMasterKeyAlias: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setPublicKey: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setSchemeCodeName: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setTenantId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.crypto.wire.CryptoSigningKey$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSigningKey - clearAlias: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSigningKey$Builder - clearCategory: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSigningKey$Builder - clearCreated: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSigningKey$Builder - clearEncodingVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSigningKey$Builder - clearExternalId: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSigningKey$Builder - clearHsmAlias: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSigningKey$Builder - clearId: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSigningKey$Builder - clearMasterKeyAlias: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSigningKey$Builder - clearPublicKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSigningKey$Builder - clearSchemeCodeName: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSigningKey$Builder - clearTenantId: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSigningKey$Builder - getAlias: - annotations: [] - default: false - type: public - returnType: String - getCategory: - annotations: [] - default: false - type: public - returnType: String - getCreated: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getEncodingVersion: - annotations: [] - default: false - type: public - returnType: Integer - getExternalId: - annotations: [] - default: false - type: public - returnType: String - getHsmAlias: - annotations: [] - default: false - type: public - returnType: String - getId: - annotations: [] - default: false - type: public - returnType: String - getMasterKeyAlias: - annotations: [] - default: false - type: public - returnType: String - getPublicKey: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getSchemeCodeName: - annotations: [] - default: false - type: public - returnType: String - getTenantId: - annotations: [] - default: false - type: public - returnType: String - hasAlias: - annotations: [] - default: false - type: public - returnType: boolean - hasCategory: - annotations: [] - default: false - type: public - returnType: boolean - hasCreated: - annotations: [] - default: false - type: public - returnType: boolean - hasEncodingVersion: - annotations: [] - default: false - type: public - returnType: boolean - hasExternalId: - annotations: [] - default: false - type: public - returnType: boolean - hasHsmAlias: - annotations: [] - default: false - type: public - returnType: boolean - hasId: - annotations: [] - default: false - type: public - returnType: boolean - hasMasterKeyAlias: - annotations: [] - default: false - type: public - returnType: boolean - hasPublicKey: - annotations: [] - default: false - type: public - returnType: boolean - hasSchemeCodeName: - annotations: [] - default: false - type: public - returnType: boolean - hasTenantId: - annotations: [] - default: false - type: public - returnType: boolean - setAlias: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSigningKey$Builder - params: - value: - annotation: [] - type: String - setCategory: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSigningKey$Builder - params: - value: - annotation: [] - type: String - setCreated: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSigningKey$Builder - params: - value: - annotation: [] - type: java.time.Instant - setEncodingVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSigningKey$Builder - params: - value: - annotation: [] - type: Integer - setExternalId: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSigningKey$Builder - params: - value: - annotation: [] - type: String - setHsmAlias: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSigningKey$Builder - params: - value: - annotation: [] - type: String - setId: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSigningKey$Builder - params: - value: - annotation: [] - type: String - setMasterKeyAlias: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSigningKey$Builder - params: - value: - annotation: [] - type: String - setPublicKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSigningKey$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setSchemeCodeName: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSigningKey$Builder - params: - value: - annotation: [] - type: String - setTenantId: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSigningKey$Builder - params: - value: - annotation: [] - type: String -net.corda.data.crypto.wire.CryptoSigningKeys: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.CryptoSigningKeys - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getKeys: - annotations: [] - default: false - type: public - returnType: java.util.List - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.CryptoSigningKeys$Builder - params: - other: - annotation: [] - type: net.corda.data.crypto.wire.CryptoSigningKeys - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setKeys: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.crypto.wire.CryptoSigningKeys$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSigningKeys - clearKeys: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSigningKeys$Builder - getKeys: - annotations: [] - default: false - type: public - returnType: java.util.List - hasKeys: - annotations: [] - default: false - type: public - returnType: boolean - setKeys: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSigningKeys$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.crypto.wire.CryptoStringResult: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.CryptoStringResult - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getValue: - annotations: [] - default: false - type: public - returnType: String - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.CryptoStringResult$Builder - params: - other: - annotation: [] - type: net.corda.data.crypto.wire.CryptoStringResult - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setValue: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.crypto.wire.CryptoStringResult$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoStringResult - clearValue: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoStringResult$Builder - getValue: - annotations: [] - default: false - type: public - returnType: String - hasValue: - annotations: [] - default: false - type: public - returnType: boolean - setValue: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoStringResult$Builder - params: - value: - annotation: [] - type: String -net.corda.data.crypto.wire.hsm.HSMAssociationInfo: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.hsm.HSMAssociationInfo - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getCategory: - annotations: [] - default: false - type: public - returnType: String - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getDeprecatedAt: - annotations: [] - default: false - type: public - returnType: long - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getHsmId: - annotations: [] - default: false - type: public - returnType: String - getId: - annotations: [] - default: false - type: public - returnType: String - getMasterKeyAlias: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getTenantId: - annotations: [] - default: false - type: public - returnType: String - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.hsm.HSMAssociationInfo$Builder - params: - other: - annotation: [] - type: net.corda.data.crypto.wire.hsm.HSMAssociationInfo - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setCategory: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setDeprecatedAt: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: long - setHsmId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setMasterKeyAlias: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setTenantId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.crypto.wire.hsm.HSMAssociationInfo$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.hsm.HSMAssociationInfo - clearCategory: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.hsm.HSMAssociationInfo$Builder - clearDeprecatedAt: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.hsm.HSMAssociationInfo$Builder - clearHsmId: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.hsm.HSMAssociationInfo$Builder - clearId: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.hsm.HSMAssociationInfo$Builder - clearMasterKeyAlias: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.hsm.HSMAssociationInfo$Builder - clearTenantId: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.hsm.HSMAssociationInfo$Builder - getCategory: - annotations: [] - default: false - type: public - returnType: String - getDeprecatedAt: - annotations: [] - default: false - type: public - returnType: long - getHsmId: - annotations: [] - default: false - type: public - returnType: String - getId: - annotations: [] - default: false - type: public - returnType: String - getMasterKeyAlias: - annotations: [] - default: false - type: public - returnType: String - getTenantId: - annotations: [] - default: false - type: public - returnType: String - hasCategory: - annotations: [] - default: false - type: public - returnType: boolean - hasDeprecatedAt: - annotations: [] - default: false - type: public - returnType: boolean - hasHsmId: - annotations: [] - default: false - type: public - returnType: boolean - hasId: - annotations: [] - default: false - type: public - returnType: boolean - hasMasterKeyAlias: - annotations: [] - default: false - type: public - returnType: boolean - hasTenantId: - annotations: [] - default: false - type: public - returnType: boolean - setCategory: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.hsm.HSMAssociationInfo$Builder - params: - value: - annotation: [] - type: String - setDeprecatedAt: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.hsm.HSMAssociationInfo$Builder - params: - value: - annotation: [] - type: long - setHsmId: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.hsm.HSMAssociationInfo$Builder - params: - value: - annotation: [] - type: String - setId: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.hsm.HSMAssociationInfo$Builder - params: - value: - annotation: [] - type: String - setMasterKeyAlias: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.hsm.HSMAssociationInfo$Builder - params: - value: - annotation: [] - type: String - setTenantId: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.hsm.HSMAssociationInfo$Builder - params: - value: - annotation: [] - type: String -net.corda.data.crypto.wire.hsm.registration.HSMRegistrationRequest: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.hsm.registration.HSMRegistrationRequest - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoRequestContext - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getRequest: - annotations: [] - default: false - type: public - returnType: Object - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.hsm.registration.HSMRegistrationRequest$Builder - params: - other: - annotation: [] - type: net.corda.data.crypto.wire.hsm.registration.HSMRegistrationRequest - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setContext: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoRequestContext - setRequest: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Object - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.crypto.wire.hsm.registration.HSMRegistrationRequest$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.hsm.registration.HSMRegistrationRequest - clearContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.hsm.registration.HSMRegistrationRequest$Builder - clearRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.hsm.registration.HSMRegistrationRequest$Builder - getContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoRequestContext - getContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoRequestContext$Builder - getRequest: - annotations: [] - default: false - type: public - returnType: Object - hasContext: - annotations: [] - default: false - type: public - returnType: boolean - hasContextBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasRequest: - annotations: [] - default: false - type: public - returnType: boolean - setContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.hsm.registration.HSMRegistrationRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoRequestContext - setContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.hsm.registration.HSMRegistrationRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoRequestContext$Builder - setRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.hsm.registration.HSMRegistrationRequest$Builder - params: - value: - annotation: [] - type: Object -net.corda.data.crypto.wire.hsm.registration.HSMRegistrationResponse: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.hsm.registration.HSMRegistrationResponse - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoResponseContext - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getResponse: - annotations: [] - default: false - type: public - returnType: Object - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.hsm.registration.HSMRegistrationResponse$Builder - params: - other: - annotation: [] - type: net.corda.data.crypto.wire.hsm.registration.HSMRegistrationResponse - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setContext: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoResponseContext - setResponse: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Object - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.crypto.wire.hsm.registration.HSMRegistrationResponse$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.hsm.registration.HSMRegistrationResponse - clearContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.hsm.registration.HSMRegistrationResponse$Builder - clearResponse: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.hsm.registration.HSMRegistrationResponse$Builder - getContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoResponseContext - getContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoResponseContext$Builder - getResponse: - annotations: [] - default: false - type: public - returnType: Object - hasContext: - annotations: [] - default: false - type: public - returnType: boolean - hasContextBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasResponse: - annotations: [] - default: false - type: public - returnType: boolean - setContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.hsm.registration.HSMRegistrationResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoResponseContext - setContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.hsm.registration.HSMRegistrationResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoResponseContext$Builder - setResponse: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.hsm.registration.HSMRegistrationResponse$Builder - params: - value: - annotation: [] - type: Object -net.corda.data.crypto.wire.hsm.registration.commands.AssignHSMCommand: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.hsm.registration.commands.AssignHSMCommand - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getCategory: - annotations: [] - default: false - type: public - returnType: String - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.hsm.registration.commands.AssignHSMCommand$Builder - params: - other: - annotation: [] - type: net.corda.data.crypto.wire.hsm.registration.commands.AssignHSMCommand - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setCategory: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setContext: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.crypto.wire.hsm.registration.commands.AssignHSMCommand$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.hsm.registration.commands.AssignHSMCommand - clearCategory: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.hsm.registration.commands.AssignHSMCommand$Builder - clearContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.hsm.registration.commands.AssignHSMCommand$Builder - getCategory: - annotations: [] - default: false - type: public - returnType: String - getContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList$Builder - hasCategory: - annotations: [] - default: false - type: public - returnType: boolean - hasContext: - annotations: [] - default: false - type: public - returnType: boolean - hasContextBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setCategory: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.hsm.registration.commands.AssignHSMCommand$Builder - params: - value: - annotation: [] - type: String - setContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.hsm.registration.commands.AssignHSMCommand$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.hsm.registration.commands.AssignHSMCommand$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList$Builder -net.corda.data.crypto.wire.hsm.registration.commands.AssignSoftHSMCommand: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.hsm.registration.commands.AssignSoftHSMCommand - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getCategory: - annotations: [] - default: false - type: public - returnType: String - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.hsm.registration.commands.AssignSoftHSMCommand$Builder - params: - other: - annotation: [] - type: net.corda.data.crypto.wire.hsm.registration.commands.AssignSoftHSMCommand - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setCategory: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.crypto.wire.hsm.registration.commands.AssignSoftHSMCommand$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.hsm.registration.commands.AssignSoftHSMCommand - clearCategory: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.hsm.registration.commands.AssignSoftHSMCommand$Builder - getCategory: - annotations: [] - default: false - type: public - returnType: String - hasCategory: - annotations: [] - default: false - type: public - returnType: boolean - setCategory: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.hsm.registration.commands.AssignSoftHSMCommand$Builder - params: - value: - annotation: [] - type: String -net.corda.data.crypto.wire.hsm.registration.queries.AssignedHSMQuery: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.hsm.registration.queries.AssignedHSMQuery - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getCategory: - annotations: [] - default: false - type: public - returnType: String - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.hsm.registration.queries.AssignedHSMQuery$Builder - params: - other: - annotation: [] - type: net.corda.data.crypto.wire.hsm.registration.queries.AssignedHSMQuery - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setCategory: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.crypto.wire.hsm.registration.queries.AssignedHSMQuery$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.hsm.registration.queries.AssignedHSMQuery - clearCategory: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.hsm.registration.queries.AssignedHSMQuery$Builder - getCategory: - annotations: [] - default: false - type: public - returnType: String - hasCategory: - annotations: [] - default: false - type: public - returnType: boolean - setCategory: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.hsm.registration.queries.AssignedHSMQuery$Builder - params: - value: - annotation: [] - type: String -net.corda.data.crypto.wire.ops.flow.FlowOpsRequest: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.ops.flow.FlowOpsRequest - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoRequestContext - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getFlowExternalEventContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventContext - getRequest: - annotations: [] - default: false - type: public - returnType: Object - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.ops.flow.FlowOpsRequest$Builder - params: - other: - annotation: [] - type: net.corda.data.crypto.wire.ops.flow.FlowOpsRequest - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setContext: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoRequestContext - setFlowExternalEventContext: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.flow.event.external.ExternalEventContext - setRequest: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Object - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.crypto.wire.ops.flow.FlowOpsRequest$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.flow.FlowOpsRequest - clearContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.flow.FlowOpsRequest$Builder - clearFlowExternalEventContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.flow.FlowOpsRequest$Builder - clearRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.flow.FlowOpsRequest$Builder - getContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoRequestContext - getContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoRequestContext$Builder - getFlowExternalEventContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventContext - getFlowExternalEventContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventContext$Builder - getRequest: - annotations: [] - default: false - type: public - returnType: Object - hasContext: - annotations: [] - default: false - type: public - returnType: boolean - hasContextBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasFlowExternalEventContext: - annotations: [] - default: false - type: public - returnType: boolean - hasFlowExternalEventContextBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasRequest: - annotations: [] - default: false - type: public - returnType: boolean - setContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.flow.FlowOpsRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoRequestContext - setContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.flow.FlowOpsRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoRequestContext$Builder - setFlowExternalEventContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.flow.FlowOpsRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.event.external.ExternalEventContext - setFlowExternalEventContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.flow.FlowOpsRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.event.external.ExternalEventContext$Builder - setRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.flow.FlowOpsRequest$Builder - params: - value: - annotation: [] - type: Object -net.corda.data.crypto.wire.ops.flow.FlowOpsResponse: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.ops.flow.FlowOpsResponse - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoResponseContext - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getException: - annotations: [] - default: false - type: public - returnType: net.corda.data.ExceptionEnvelope - getResponse: - annotations: [] - default: false - type: public - returnType: Object - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.ops.flow.FlowOpsResponse$Builder - params: - other: - annotation: [] - type: net.corda.data.crypto.wire.ops.flow.FlowOpsResponse - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setContext: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoResponseContext - setException: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.ExceptionEnvelope - setResponse: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Object - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.crypto.wire.ops.flow.FlowOpsResponse$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.flow.FlowOpsResponse - clearContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.flow.FlowOpsResponse$Builder - clearException: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.flow.FlowOpsResponse$Builder - clearResponse: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.flow.FlowOpsResponse$Builder - getContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoResponseContext - getContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoResponseContext$Builder - getException: - annotations: [] - default: false - type: public - returnType: net.corda.data.ExceptionEnvelope - getExceptionBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ExceptionEnvelope$Builder - getResponse: - annotations: [] - default: false - type: public - returnType: Object - hasContext: - annotations: [] - default: false - type: public - returnType: boolean - hasContextBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasException: - annotations: [] - default: false - type: public - returnType: boolean - hasExceptionBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasResponse: - annotations: [] - default: false - type: public - returnType: boolean - setContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.flow.FlowOpsResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoResponseContext - setContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.flow.FlowOpsResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoResponseContext$Builder - setException: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.flow.FlowOpsResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.ExceptionEnvelope - setExceptionBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.flow.FlowOpsResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.ExceptionEnvelope$Builder - setResponse: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.flow.FlowOpsResponse$Builder - params: - value: - annotation: [] - type: Object -net.corda.data.crypto.wire.ops.flow.commands.GenerateFreshKeyFlowCommand: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.ops.flow.commands.GenerateFreshKeyFlowCommand - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getCategory: - annotations: [] - default: false - type: public - returnType: String - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getExternalId: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSchemeCodeName: - annotations: [] - default: false - type: public - returnType: String - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.ops.flow.commands.GenerateFreshKeyFlowCommand$Builder - params: - other: - annotation: [] - type: net.corda.data.crypto.wire.ops.flow.commands.GenerateFreshKeyFlowCommand - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setCategory: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setContext: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setExternalId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setSchemeCodeName: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.crypto.wire.ops.flow.commands.GenerateFreshKeyFlowCommand$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.flow.commands.GenerateFreshKeyFlowCommand - clearCategory: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.flow.commands.GenerateFreshKeyFlowCommand$Builder - clearContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.flow.commands.GenerateFreshKeyFlowCommand$Builder - clearExternalId: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.flow.commands.GenerateFreshKeyFlowCommand$Builder - clearSchemeCodeName: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.flow.commands.GenerateFreshKeyFlowCommand$Builder - getCategory: - annotations: [] - default: false - type: public - returnType: String - getContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList$Builder - getExternalId: - annotations: [] - default: false - type: public - returnType: String - getSchemeCodeName: - annotations: [] - default: false - type: public - returnType: String - hasCategory: - annotations: [] - default: false - type: public - returnType: boolean - hasContext: - annotations: [] - default: false - type: public - returnType: boolean - hasContextBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasExternalId: - annotations: [] - default: false - type: public - returnType: boolean - hasSchemeCodeName: - annotations: [] - default: false - type: public - returnType: boolean - setCategory: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.flow.commands.GenerateFreshKeyFlowCommand$Builder - params: - value: - annotation: [] - type: String - setContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.flow.commands.GenerateFreshKeyFlowCommand$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.flow.commands.GenerateFreshKeyFlowCommand$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList$Builder - setExternalId: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.flow.commands.GenerateFreshKeyFlowCommand$Builder - params: - value: - annotation: [] - type: String - setSchemeCodeName: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.flow.commands.GenerateFreshKeyFlowCommand$Builder - params: - value: - annotation: [] - type: String -net.corda.data.crypto.wire.ops.flow.commands.SignFlowCommand: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.ops.flow.commands.SignFlowCommand - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getBytes: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getPublicKey: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSignatureSpec: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureSpec - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.ops.flow.commands.SignFlowCommand$Builder - params: - other: - annotation: [] - type: net.corda.data.crypto.wire.ops.flow.commands.SignFlowCommand - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setBytes: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setContext: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setPublicKey: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setSignatureSpec: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoSignatureSpec - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.crypto.wire.ops.flow.commands.SignFlowCommand$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.flow.commands.SignFlowCommand - clearBytes: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.flow.commands.SignFlowCommand$Builder - clearContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.flow.commands.SignFlowCommand$Builder - clearPublicKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.flow.commands.SignFlowCommand$Builder - clearSignatureSpec: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.flow.commands.SignFlowCommand$Builder - getBytes: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList$Builder - getPublicKey: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getSignatureSpec: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureSpec - getSignatureSpecBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureSpec$Builder - hasBytes: - annotations: [] - default: false - type: public - returnType: boolean - hasContext: - annotations: [] - default: false - type: public - returnType: boolean - hasContextBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasPublicKey: - annotations: [] - default: false - type: public - returnType: boolean - hasSignatureSpec: - annotations: [] - default: false - type: public - returnType: boolean - hasSignatureSpecBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setBytes: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.flow.commands.SignFlowCommand$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.flow.commands.SignFlowCommand$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.flow.commands.SignFlowCommand$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList$Builder - setPublicKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.flow.commands.SignFlowCommand$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setSignatureSpec: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.flow.commands.SignFlowCommand$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoSignatureSpec - setSignatureSpecBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.flow.commands.SignFlowCommand$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoSignatureSpec$Builder -net.corda.data.crypto.wire.ops.flow.queries.ByIdsFlowQuery: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.ops.flow.queries.ByIdsFlowQuery - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getFullKeyIds: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.SecureHashes - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.ops.flow.queries.ByIdsFlowQuery$Builder - params: - other: - annotation: [] - type: net.corda.data.crypto.wire.ops.flow.queries.ByIdsFlowQuery - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setFullKeyIds: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.crypto.SecureHashes - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.crypto.wire.ops.flow.queries.ByIdsFlowQuery$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.flow.queries.ByIdsFlowQuery - clearFullKeyIds: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.flow.queries.ByIdsFlowQuery$Builder - getFullKeyIds: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.SecureHashes - getFullKeyIdsBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.SecureHashes$Builder - hasFullKeyIds: - annotations: [] - default: false - type: public - returnType: boolean - hasFullKeyIdsBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setFullKeyIds: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.flow.queries.ByIdsFlowQuery$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.SecureHashes - setFullKeyIdsBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.flow.queries.ByIdsFlowQuery$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.SecureHashes$Builder -net.corda.data.crypto.wire.ops.flow.queries.FilterMyKeysFlowQuery: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.ops.flow.queries.FilterMyKeysFlowQuery - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getKeys: - annotations: [] - default: false - type: public - returnType: java.util.List - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.ops.flow.queries.FilterMyKeysFlowQuery$Builder - params: - other: - annotation: [] - type: net.corda.data.crypto.wire.ops.flow.queries.FilterMyKeysFlowQuery - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setKeys: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.crypto.wire.ops.flow.queries.FilterMyKeysFlowQuery$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.flow.queries.FilterMyKeysFlowQuery - clearKeys: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.flow.queries.FilterMyKeysFlowQuery$Builder - getKeys: - annotations: [] - default: false - type: public - returnType: java.util.List - hasKeys: - annotations: [] - default: false - type: public - returnType: boolean - setKeys: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.flow.queries.FilterMyKeysFlowQuery$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.crypto.wire.ops.rpc.RpcOpsRequest: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.ops.rpc.RpcOpsRequest - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoRequestContext - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getRequest: - annotations: [] - default: false - type: public - returnType: Object - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.ops.rpc.RpcOpsRequest$Builder - params: - other: - annotation: [] - type: net.corda.data.crypto.wire.ops.rpc.RpcOpsRequest - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setContext: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoRequestContext - setRequest: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Object - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.crypto.wire.ops.rpc.RpcOpsRequest$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.RpcOpsRequest - clearContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.RpcOpsRequest$Builder - clearRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.RpcOpsRequest$Builder - getContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoRequestContext - getContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoRequestContext$Builder - getRequest: - annotations: [] - default: false - type: public - returnType: Object - hasContext: - annotations: [] - default: false - type: public - returnType: boolean - hasContextBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasRequest: - annotations: [] - default: false - type: public - returnType: boolean - setContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.RpcOpsRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoRequestContext - setContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.RpcOpsRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoRequestContext$Builder - setRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.RpcOpsRequest$Builder - params: - value: - annotation: [] - type: Object -net.corda.data.crypto.wire.ops.rpc.RpcOpsResponse: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.ops.rpc.RpcOpsResponse - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoResponseContext - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getResponse: - annotations: [] - default: false - type: public - returnType: Object - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.ops.rpc.RpcOpsResponse$Builder - params: - other: - annotation: [] - type: net.corda.data.crypto.wire.ops.rpc.RpcOpsResponse - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setContext: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoResponseContext - setResponse: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Object - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.crypto.wire.ops.rpc.RpcOpsResponse$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.RpcOpsResponse - clearContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.RpcOpsResponse$Builder - clearResponse: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.RpcOpsResponse$Builder - getContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoResponseContext - getContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoResponseContext$Builder - getResponse: - annotations: [] - default: false - type: public - returnType: Object - hasContext: - annotations: [] - default: false - type: public - returnType: boolean - hasContextBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasResponse: - annotations: [] - default: false - type: public - returnType: boolean - setContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.RpcOpsResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoResponseContext - setContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.RpcOpsResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoResponseContext$Builder - setResponse: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.RpcOpsResponse$Builder - params: - value: - annotation: [] - type: Object -net.corda.data.crypto.wire.ops.rpc.commands.DeriveSharedSecretCommand: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.ops.rpc.commands.DeriveSharedSecretCommand - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getOtherPublicKey: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getPublicKey: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.ops.rpc.commands.DeriveSharedSecretCommand$Builder - params: - other: - annotation: [] - type: net.corda.data.crypto.wire.ops.rpc.commands.DeriveSharedSecretCommand - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setContext: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setOtherPublicKey: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setPublicKey: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.crypto.wire.ops.rpc.commands.DeriveSharedSecretCommand$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.DeriveSharedSecretCommand - clearContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.DeriveSharedSecretCommand$Builder - clearOtherPublicKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.DeriveSharedSecretCommand$Builder - clearPublicKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.DeriveSharedSecretCommand$Builder - getContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList$Builder - getOtherPublicKey: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getPublicKey: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - hasContext: - annotations: [] - default: false - type: public - returnType: boolean - hasContextBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasOtherPublicKey: - annotations: [] - default: false - type: public - returnType: boolean - hasPublicKey: - annotations: [] - default: false - type: public - returnType: boolean - setContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.DeriveSharedSecretCommand$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.DeriveSharedSecretCommand$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList$Builder - setOtherPublicKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.DeriveSharedSecretCommand$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setPublicKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.DeriveSharedSecretCommand$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer -net.corda.data.crypto.wire.ops.rpc.commands.GenerateFreshKeyRpcCommand: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateFreshKeyRpcCommand - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getCategory: - annotations: [] - default: false - type: public - returnType: String - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getExternalId: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSchemeCodeName: - annotations: [] - default: false - type: public - returnType: String - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateFreshKeyRpcCommand$Builder - params: - other: - annotation: [] - type: net.corda.data.crypto.wire.ops.rpc.commands.GenerateFreshKeyRpcCommand - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setCategory: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setContext: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setExternalId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setSchemeCodeName: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.crypto.wire.ops.rpc.commands.GenerateFreshKeyRpcCommand$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateFreshKeyRpcCommand - clearCategory: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateFreshKeyRpcCommand$Builder - clearContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateFreshKeyRpcCommand$Builder - clearExternalId: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateFreshKeyRpcCommand$Builder - clearSchemeCodeName: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateFreshKeyRpcCommand$Builder - getCategory: - annotations: [] - default: false - type: public - returnType: String - getContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList$Builder - getExternalId: - annotations: [] - default: false - type: public - returnType: String - getSchemeCodeName: - annotations: [] - default: false - type: public - returnType: String - hasCategory: - annotations: [] - default: false - type: public - returnType: boolean - hasContext: - annotations: [] - default: false - type: public - returnType: boolean - hasContextBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasExternalId: - annotations: [] - default: false - type: public - returnType: boolean - hasSchemeCodeName: - annotations: [] - default: false - type: public - returnType: boolean - setCategory: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateFreshKeyRpcCommand$Builder - params: - value: - annotation: [] - type: String - setContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateFreshKeyRpcCommand$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateFreshKeyRpcCommand$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList$Builder - setExternalId: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateFreshKeyRpcCommand$Builder - params: - value: - annotation: [] - type: String - setSchemeCodeName: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateFreshKeyRpcCommand$Builder - params: - value: - annotation: [] - type: String -net.corda.data.crypto.wire.ops.rpc.commands.GenerateKeyPairCommand: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateKeyPairCommand - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getAlias: - annotations: [] - default: false - type: public - returnType: String - getCategory: - annotations: [] - default: false - type: public - returnType: String - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getExternalId: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSchemeCodeName: - annotations: [] - default: false - type: public - returnType: String - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateKeyPairCommand$Builder - params: - other: - annotation: [] - type: net.corda.data.crypto.wire.ops.rpc.commands.GenerateKeyPairCommand - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setAlias: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setCategory: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setContext: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setExternalId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setSchemeCodeName: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.crypto.wire.ops.rpc.commands.GenerateKeyPairCommand$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateKeyPairCommand - clearAlias: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateKeyPairCommand$Builder - clearCategory: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateKeyPairCommand$Builder - clearContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateKeyPairCommand$Builder - clearExternalId: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateKeyPairCommand$Builder - clearSchemeCodeName: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateKeyPairCommand$Builder - getAlias: - annotations: [] - default: false - type: public - returnType: String - getCategory: - annotations: [] - default: false - type: public - returnType: String - getContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList$Builder - getExternalId: - annotations: [] - default: false - type: public - returnType: String - getSchemeCodeName: - annotations: [] - default: false - type: public - returnType: String - hasAlias: - annotations: [] - default: false - type: public - returnType: boolean - hasCategory: - annotations: [] - default: false - type: public - returnType: boolean - hasContext: - annotations: [] - default: false - type: public - returnType: boolean - hasContextBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasExternalId: - annotations: [] - default: false - type: public - returnType: boolean - hasSchemeCodeName: - annotations: [] - default: false - type: public - returnType: boolean - setAlias: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateKeyPairCommand$Builder - params: - value: - annotation: [] - type: String - setCategory: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateKeyPairCommand$Builder - params: - value: - annotation: [] - type: String - setContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateKeyPairCommand$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateKeyPairCommand$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList$Builder - setExternalId: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateKeyPairCommand$Builder - params: - value: - annotation: [] - type: String - setSchemeCodeName: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateKeyPairCommand$Builder - params: - value: - annotation: [] - type: String -net.corda.data.crypto.wire.ops.rpc.commands.GenerateWrappingKeyRpcCommand: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateWrappingKeyRpcCommand - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getFailIfExists: - annotations: [] - default: false - type: public - returnType: boolean - getHsmId: - annotations: [] - default: false - type: public - returnType: String - getMasterKeyAlias: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateWrappingKeyRpcCommand$Builder - params: - other: - annotation: [] - type: net.corda.data.crypto.wire.ops.rpc.commands.GenerateWrappingKeyRpcCommand - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setContext: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setFailIfExists: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: boolean - setHsmId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setMasterKeyAlias: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.crypto.wire.ops.rpc.commands.GenerateWrappingKeyRpcCommand$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateWrappingKeyRpcCommand - clearContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateWrappingKeyRpcCommand$Builder - clearFailIfExists: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateWrappingKeyRpcCommand$Builder - clearHsmId: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateWrappingKeyRpcCommand$Builder - clearMasterKeyAlias: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateWrappingKeyRpcCommand$Builder - getContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList$Builder - getFailIfExists: - annotations: [] - default: false - type: public - returnType: boolean - getHsmId: - annotations: [] - default: false - type: public - returnType: String - getMasterKeyAlias: - annotations: [] - default: false - type: public - returnType: String - hasContext: - annotations: [] - default: false - type: public - returnType: boolean - hasContextBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasFailIfExists: - annotations: [] - default: false - type: public - returnType: boolean - hasHsmId: - annotations: [] - default: false - type: public - returnType: boolean - hasMasterKeyAlias: - annotations: [] - default: false - type: public - returnType: boolean - setContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateWrappingKeyRpcCommand$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateWrappingKeyRpcCommand$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList$Builder - setFailIfExists: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateWrappingKeyRpcCommand$Builder - params: - value: - annotation: [] - type: boolean - setHsmId: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateWrappingKeyRpcCommand$Builder - params: - value: - annotation: [] - type: String - setMasterKeyAlias: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.GenerateWrappingKeyRpcCommand$Builder - params: - value: - annotation: [] - type: String -net.corda.data.crypto.wire.ops.rpc.commands.SignRpcCommand: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.ops.rpc.commands.SignRpcCommand - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getBytes: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getPublicKey: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSignatureSpec: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureSpec - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.ops.rpc.commands.SignRpcCommand$Builder - params: - other: - annotation: [] - type: net.corda.data.crypto.wire.ops.rpc.commands.SignRpcCommand - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setBytes: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setContext: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setPublicKey: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setSignatureSpec: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoSignatureSpec - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.crypto.wire.ops.rpc.commands.SignRpcCommand$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.SignRpcCommand - clearBytes: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.SignRpcCommand$Builder - clearContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.SignRpcCommand$Builder - clearPublicKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.SignRpcCommand$Builder - clearSignatureSpec: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.SignRpcCommand$Builder - getBytes: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList$Builder - getPublicKey: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getSignatureSpec: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureSpec - getSignatureSpecBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureSpec$Builder - hasBytes: - annotations: [] - default: false - type: public - returnType: boolean - hasContext: - annotations: [] - default: false - type: public - returnType: boolean - hasContextBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasPublicKey: - annotations: [] - default: false - type: public - returnType: boolean - hasSignatureSpec: - annotations: [] - default: false - type: public - returnType: boolean - hasSignatureSpecBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setBytes: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.SignRpcCommand$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.SignRpcCommand$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.SignRpcCommand$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList$Builder - setPublicKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.SignRpcCommand$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setSignatureSpec: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.SignRpcCommand$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoSignatureSpec - setSignatureSpecBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.commands.SignRpcCommand$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoSignatureSpec$Builder -net.corda.data.crypto.wire.ops.rpc.queries.ByIdsRpcQuery: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.ops.rpc.queries.ByIdsRpcQuery - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getKeyIds: - annotations: [] - default: false - type: public - returnType: Object - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.ops.rpc.queries.ByIdsRpcQuery$Builder - params: - other: - annotation: [] - type: net.corda.data.crypto.wire.ops.rpc.queries.ByIdsRpcQuery - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setKeyIds: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Object - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.crypto.wire.ops.rpc.queries.ByIdsRpcQuery$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.queries.ByIdsRpcQuery - clearKeyIds: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.queries.ByIdsRpcQuery$Builder - getKeyIds: - annotations: [] - default: false - type: public - returnType: Object - hasKeyIds: - annotations: [] - default: false - type: public - returnType: boolean - setKeyIds: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.queries.ByIdsRpcQuery$Builder - params: - value: - annotation: [] - type: Object -net.corda.data.crypto.wire.ops.rpc.queries.CryptoKeyOrderBy: - annotations: - - AvroGenerated - type: public final class - extends: java.lang.Enum - implements: - - org.apache.avro.generic.GenericEnumSymbol - interface: false - methods: - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - valueOf: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.ops.rpc.queries.CryptoKeyOrderBy - params: {} - values: - annotations: [] - default: false - type: public static - returnType: "net.corda.data.crypto.wire.ops.rpc.queries.CryptoKeyOrderBy[]" - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.crypto.wire.ops.rpc.queries.KeysRpcQuery: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.ops.rpc.queries.KeysRpcQuery - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getFilter: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getOrderBy: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.queries.CryptoKeyOrderBy - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSkip: - annotations: [] - default: false - type: public - returnType: int - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getTake: - annotations: [] - default: false - type: public - returnType: int - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.ops.rpc.queries.KeysRpcQuery$Builder - params: - other: - annotation: [] - type: net.corda.data.crypto.wire.ops.rpc.queries.KeysRpcQuery - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setFilter: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setOrderBy: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.ops.rpc.queries.CryptoKeyOrderBy - setSkip: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - setTake: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.crypto.wire.ops.rpc.queries.KeysRpcQuery$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.queries.KeysRpcQuery - clearFilter: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.queries.KeysRpcQuery$Builder - clearOrderBy: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.queries.KeysRpcQuery$Builder - clearSkip: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.queries.KeysRpcQuery$Builder - clearTake: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.queries.KeysRpcQuery$Builder - getFilter: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getFilterBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList$Builder - getOrderBy: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.queries.CryptoKeyOrderBy - getSkip: - annotations: [] - default: false - type: public - returnType: int - getTake: - annotations: [] - default: false - type: public - returnType: int - hasFilter: - annotations: [] - default: false - type: public - returnType: boolean - hasFilterBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasOrderBy: - annotations: [] - default: false - type: public - returnType: boolean - hasSkip: - annotations: [] - default: false - type: public - returnType: boolean - hasTake: - annotations: [] - default: false - type: public - returnType: boolean - setFilter: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.queries.KeysRpcQuery$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setFilterBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.queries.KeysRpcQuery$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList$Builder - setOrderBy: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.queries.KeysRpcQuery$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.ops.rpc.queries.CryptoKeyOrderBy - setSkip: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.queries.KeysRpcQuery$Builder - params: - value: - annotation: [] - type: int - setTake: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.queries.KeysRpcQuery$Builder - params: - value: - annotation: [] - type: int -net.corda.data.crypto.wire.ops.rpc.queries.SupportedSchemesRpcQuery: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.ops.rpc.queries.SupportedSchemesRpcQuery - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getCategory: - annotations: [] - default: false - type: public - returnType: String - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.crypto.wire.ops.rpc.queries.SupportedSchemesRpcQuery$Builder - params: - other: - annotation: [] - type: net.corda.data.crypto.wire.ops.rpc.queries.SupportedSchemesRpcQuery - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setCategory: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.crypto.wire.ops.rpc.queries.SupportedSchemesRpcQuery$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.queries.SupportedSchemesRpcQuery - clearCategory: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.queries.SupportedSchemesRpcQuery$Builder - getCategory: - annotations: [] - default: false - type: public - returnType: String - hasCategory: - annotations: [] - default: false - type: public - returnType: boolean - setCategory: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.ops.rpc.queries.SupportedSchemesRpcQuery$Builder - params: - value: - annotation: [] - type: String -net.corda.data.deadletter.StateAndEventDeadLetterRecord: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.deadletter.StateAndEventDeadLetterRecord - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getEvent: - annotations: [] - default: false - type: public - returnType: Object - getKey: - annotations: [] - default: false - type: public - returnType: Object - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getState: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.deadletter.StateAndEventDeadLetterRecord$Builder - params: - other: - annotation: [] - type: net.corda.data.deadletter.StateAndEventDeadLetterRecord - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setEvent: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Object - setKey: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Object - setState: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setTimestamp: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.deadletter.StateAndEventDeadLetterRecord$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.deadletter.StateAndEventDeadLetterRecord - clearEvent: - annotations: [] - default: false - type: public - returnType: net.corda.data.deadletter.StateAndEventDeadLetterRecord$Builder - clearKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.deadletter.StateAndEventDeadLetterRecord$Builder - clearState: - annotations: [] - default: false - type: public - returnType: net.corda.data.deadletter.StateAndEventDeadLetterRecord$Builder - clearTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.deadletter.StateAndEventDeadLetterRecord$Builder - getEvent: - annotations: [] - default: false - type: public - returnType: Object - getKey: - annotations: [] - default: false - type: public - returnType: Object - getState: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - hasEvent: - annotations: [] - default: false - type: public - returnType: boolean - hasKey: - annotations: [] - default: false - type: public - returnType: boolean - hasState: - annotations: [] - default: false - type: public - returnType: boolean - hasTimestamp: - annotations: [] - default: false - type: public - returnType: boolean - setEvent: - annotations: [] - default: false - type: public - returnType: net.corda.data.deadletter.StateAndEventDeadLetterRecord$Builder - params: - value: - annotation: [] - type: Object - setKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.deadletter.StateAndEventDeadLetterRecord$Builder - params: - value: - annotation: [] - type: Object - setState: - annotations: [] - default: false - type: public - returnType: net.corda.data.deadletter.StateAndEventDeadLetterRecord$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.deadletter.StateAndEventDeadLetterRecord$Builder - params: - value: - annotation: [] - type: java.time.Instant -net.corda.data.demo.DemoRecord: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.demo.DemoRecord - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getValue: - annotations: [] - default: false - type: public - returnType: int - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.demo.DemoRecord$Builder - params: - other: - annotation: [] - type: net.corda.data.demo.DemoRecord - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setValue: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.demo.DemoRecord$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.demo.DemoRecord - clearValue: - annotations: [] - default: false - type: public - returnType: net.corda.data.demo.DemoRecord$Builder - getValue: - annotations: [] - default: false - type: public - returnType: int - hasValue: - annotations: [] - default: false - type: public - returnType: boolean - setValue: - annotations: [] - default: false - type: public - returnType: net.corda.data.demo.DemoRecord$Builder - params: - value: - annotation: [] - type: int -net.corda.data.demo.DemoStateRecord: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.demo.DemoStateRecord - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getValue: - annotations: [] - default: false - type: public - returnType: int - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.demo.DemoStateRecord$Builder - params: - other: - annotation: [] - type: net.corda.data.demo.DemoStateRecord - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setValue: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.demo.DemoStateRecord$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.demo.DemoStateRecord - clearValue: - annotations: [] - default: false - type: public - returnType: net.corda.data.demo.DemoStateRecord$Builder - getValue: - annotations: [] - default: false - type: public - returnType: int - hasValue: - annotations: [] - default: false - type: public - returnType: boolean - setValue: - annotations: [] - default: false - type: public - returnType: net.corda.data.demo.DemoStateRecord$Builder - params: - value: - annotation: [] - type: int -net.corda.data.flow.FlowInitiatorType: - annotations: - - AvroGenerated - type: public final class - extends: java.lang.Enum - implements: - - org.apache.avro.generic.GenericEnumSymbol - interface: false - methods: - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - valueOf: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.FlowInitiatorType - params: {} - values: - annotations: [] - default: false - type: public static - returnType: "net.corda.data.flow.FlowInitiatorType[]" - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.flow.FlowKey: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.FlowKey - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getId: - annotations: [] - default: false - type: public - returnType: String - getIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.FlowKey$Builder - params: - other: - annotation: [] - type: net.corda.data.flow.FlowKey - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setIdentity: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.flow.FlowKey$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowKey - clearId: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowKey$Builder - clearIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowKey$Builder - getId: - annotations: [] - default: false - type: public - returnType: String - getIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getIdentityBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - hasId: - annotations: [] - default: false - type: public - returnType: boolean - hasIdentity: - annotations: [] - default: false - type: public - returnType: boolean - hasIdentityBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setId: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowKey$Builder - params: - value: - annotation: [] - type: String - setIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowKey$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setIdentityBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowKey$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder -net.corda.data.flow.FlowStartContext: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.FlowStartContext - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getContextPlatformProperties: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getCpiId: - annotations: [] - default: false - type: public - returnType: String - getCreatedTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getFlowClassName: - annotations: [] - default: false - type: public - returnType: String - getIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getInitiatedBy: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getInitiatorType: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowInitiatorType - getRequestId: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getStartArgs: - annotations: [] - default: false - type: public - returnType: String - getStatusKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowKey - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.FlowStartContext$Builder - params: - other: - annotation: [] - type: net.corda.data.flow.FlowStartContext - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setContextPlatformProperties: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setCpiId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setCreatedTimestamp: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - setFlowClassName: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setIdentity: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setInitiatedBy: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setInitiatorType: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.flow.FlowInitiatorType - setRequestId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setStartArgs: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setStatusKey: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.flow.FlowKey - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.flow.FlowStartContext$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowStartContext - clearContextPlatformProperties: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowStartContext$Builder - clearCpiId: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowStartContext$Builder - clearCreatedTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowStartContext$Builder - clearFlowClassName: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowStartContext$Builder - clearIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowStartContext$Builder - clearInitiatedBy: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowStartContext$Builder - clearInitiatorType: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowStartContext$Builder - clearRequestId: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowStartContext$Builder - clearStartArgs: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowStartContext$Builder - clearStatusKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowStartContext$Builder - getContextPlatformProperties: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getContextPlatformPropertiesBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList$Builder - getCpiId: - annotations: [] - default: false - type: public - returnType: String - getCreatedTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getFlowClassName: - annotations: [] - default: false - type: public - returnType: String - getIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getIdentityBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - getInitiatedBy: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getInitiatedByBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - getInitiatorType: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowInitiatorType - getRequestId: - annotations: [] - default: false - type: public - returnType: String - getStartArgs: - annotations: [] - default: false - type: public - returnType: String - getStatusKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowKey - getStatusKeyBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowKey$Builder - hasContextPlatformProperties: - annotations: [] - default: false - type: public - returnType: boolean - hasContextPlatformPropertiesBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasCpiId: - annotations: [] - default: false - type: public - returnType: boolean - hasCreatedTimestamp: - annotations: [] - default: false - type: public - returnType: boolean - hasFlowClassName: - annotations: [] - default: false - type: public - returnType: boolean - hasIdentity: - annotations: [] - default: false - type: public - returnType: boolean - hasIdentityBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasInitiatedBy: - annotations: [] - default: false - type: public - returnType: boolean - hasInitiatedByBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasInitiatorType: - annotations: [] - default: false - type: public - returnType: boolean - hasRequestId: - annotations: [] - default: false - type: public - returnType: boolean - hasStartArgs: - annotations: [] - default: false - type: public - returnType: boolean - hasStatusKey: - annotations: [] - default: false - type: public - returnType: boolean - hasStatusKeyBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setContextPlatformProperties: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowStartContext$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setContextPlatformPropertiesBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowStartContext$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList$Builder - setCpiId: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowStartContext$Builder - params: - value: - annotation: [] - type: String - setCreatedTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowStartContext$Builder - params: - value: - annotation: [] - type: java.time.Instant - setFlowClassName: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowStartContext$Builder - params: - value: - annotation: [] - type: String - setIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowStartContext$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setIdentityBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowStartContext$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder - setInitiatedBy: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowStartContext$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setInitiatedByBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowStartContext$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder - setInitiatorType: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowStartContext$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.FlowInitiatorType - setRequestId: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowStartContext$Builder - params: - value: - annotation: [] - type: String - setStartArgs: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowStartContext$Builder - params: - value: - annotation: [] - type: String - setStatusKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowStartContext$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.FlowKey - setStatusKeyBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowStartContext$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.FlowKey$Builder -net.corda.data.flow.FlowTimeout: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.FlowTimeout - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getCheckpointStateKey: - annotations: [] - default: false - type: public - returnType: String - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getTimeoutDateTime: - annotations: [] - default: false - type: public - returnType: java.time.Instant - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.FlowTimeout$Builder - params: - other: - annotation: [] - type: net.corda.data.flow.FlowTimeout - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setCheckpointStateKey: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setTimeoutDateTime: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.flow.FlowTimeout$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowTimeout - clearCheckpointStateKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowTimeout$Builder - clearTimeoutDateTime: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowTimeout$Builder - getCheckpointStateKey: - annotations: [] - default: false - type: public - returnType: String - getTimeoutDateTime: - annotations: [] - default: false - type: public - returnType: java.time.Instant - hasCheckpointStateKey: - annotations: [] - default: false - type: public - returnType: boolean - hasTimeoutDateTime: - annotations: [] - default: false - type: public - returnType: boolean - setCheckpointStateKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowTimeout$Builder - params: - value: - annotation: [] - type: String - setTimeoutDateTime: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowTimeout$Builder - params: - value: - annotation: [] - type: java.time.Instant -net.corda.data.flow.event.FlowEvent: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.event.FlowEvent - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getFlowId: - annotations: [] - default: false - type: public - returnType: String - getPayload: - annotations: [] - default: false - type: public - returnType: Object - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.event.FlowEvent$Builder - params: - other: - annotation: [] - type: net.corda.data.flow.event.FlowEvent - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setFlowId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setPayload: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Object - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.flow.event.FlowEvent$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.FlowEvent - clearFlowId: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.FlowEvent$Builder - clearPayload: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.FlowEvent$Builder - getFlowId: - annotations: [] - default: false - type: public - returnType: String - getPayload: - annotations: [] - default: false - type: public - returnType: Object - hasFlowId: - annotations: [] - default: false - type: public - returnType: boolean - hasPayload: - annotations: [] - default: false - type: public - returnType: boolean - setFlowId: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.FlowEvent$Builder - params: - value: - annotation: [] - type: String - setPayload: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.FlowEvent$Builder - params: - value: - annotation: [] - type: Object -net.corda.data.flow.event.MessageDirection: - annotations: - - AvroGenerated - type: public final class - extends: java.lang.Enum - implements: - - org.apache.avro.generic.GenericEnumSymbol - interface: false - methods: - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - valueOf: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.event.MessageDirection - params: {} - values: - annotations: [] - default: false - type: public static - returnType: "net.corda.data.flow.event.MessageDirection[]" - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.flow.event.SessionEvent: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.event.SessionEvent - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getContextSessionProperties: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getInitiatedIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getInitiatingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getMessageDirection: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.MessageDirection - getPayload: - annotations: [] - default: false - type: public - returnType: Object - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSequenceNum: - annotations: [] - default: false - type: public - returnType: Integer - getSessionId: - annotations: [] - default: false - type: public - returnType: String - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.event.SessionEvent$Builder - params: - other: - annotation: [] - type: net.corda.data.flow.event.SessionEvent - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setContextSessionProperties: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setInitiatedIdentity: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setInitiatingIdentity: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setMessageDirection: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.flow.event.MessageDirection - setPayload: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Object - setSequenceNum: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Integer - setSessionId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setTimestamp: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.flow.event.SessionEvent$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.SessionEvent - clearContextSessionProperties: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.SessionEvent$Builder - clearInitiatedIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.SessionEvent$Builder - clearInitiatingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.SessionEvent$Builder - clearMessageDirection: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.SessionEvent$Builder - clearPayload: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.SessionEvent$Builder - clearSequenceNum: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.SessionEvent$Builder - clearSessionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.SessionEvent$Builder - clearTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.SessionEvent$Builder - getContextSessionProperties: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getContextSessionPropertiesBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList$Builder - getInitiatedIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getInitiatedIdentityBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - getInitiatingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getInitiatingIdentityBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - getMessageDirection: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.MessageDirection - getPayload: - annotations: [] - default: false - type: public - returnType: Object - getSequenceNum: - annotations: [] - default: false - type: public - returnType: Integer - getSessionId: - annotations: [] - default: false - type: public - returnType: String - getTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - hasContextSessionProperties: - annotations: [] - default: false - type: public - returnType: boolean - hasContextSessionPropertiesBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasInitiatedIdentity: - annotations: [] - default: false - type: public - returnType: boolean - hasInitiatedIdentityBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasInitiatingIdentity: - annotations: [] - default: false - type: public - returnType: boolean - hasInitiatingIdentityBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasMessageDirection: - annotations: [] - default: false - type: public - returnType: boolean - hasPayload: - annotations: [] - default: false - type: public - returnType: boolean - hasSequenceNum: - annotations: [] - default: false - type: public - returnType: boolean - hasSessionId: - annotations: [] - default: false - type: public - returnType: boolean - hasTimestamp: - annotations: [] - default: false - type: public - returnType: boolean - setContextSessionProperties: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.SessionEvent$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setContextSessionPropertiesBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.SessionEvent$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList$Builder - setInitiatedIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.SessionEvent$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setInitiatedIdentityBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.SessionEvent$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder - setInitiatingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.SessionEvent$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setInitiatingIdentityBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.SessionEvent$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder - setMessageDirection: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.SessionEvent$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.event.MessageDirection - setPayload: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.SessionEvent$Builder - params: - value: - annotation: [] - type: Object - setSequenceNum: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.SessionEvent$Builder - params: - value: - annotation: [] - type: Integer - setSessionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.SessionEvent$Builder - params: - value: - annotation: [] - type: String - setTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.SessionEvent$Builder - params: - value: - annotation: [] - type: java.time.Instant -net.corda.data.flow.event.StartFlow: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.event.StartFlow - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getFlowStartArgs: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getStartContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowStartContext - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.event.StartFlow$Builder - params: - other: - annotation: [] - type: net.corda.data.flow.event.StartFlow - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setFlowStartArgs: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setStartContext: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.flow.FlowStartContext - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.flow.event.StartFlow$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.StartFlow - clearFlowStartArgs: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.StartFlow$Builder - clearStartContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.StartFlow$Builder - getFlowStartArgs: - annotations: [] - default: false - type: public - returnType: String - getStartContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowStartContext - getStartContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowStartContext$Builder - hasFlowStartArgs: - annotations: [] - default: false - type: public - returnType: boolean - hasStartContext: - annotations: [] - default: false - type: public - returnType: boolean - hasStartContextBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setFlowStartArgs: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.StartFlow$Builder - params: - value: - annotation: [] - type: String - setStartContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.StartFlow$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.FlowStartContext - setStartContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.StartFlow$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.FlowStartContext$Builder -net.corda.data.flow.event.WakeUpWithException: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.event.WakeUpWithException - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getError: - annotations: [] - default: false - type: public - returnType: net.corda.data.ExceptionEnvelope - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.event.WakeUpWithException$Builder - params: - other: - annotation: [] - type: net.corda.data.flow.event.WakeUpWithException - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setError: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.ExceptionEnvelope - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.flow.event.WakeUpWithException$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.WakeUpWithException - clearError: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.WakeUpWithException$Builder - getError: - annotations: [] - default: false - type: public - returnType: net.corda.data.ExceptionEnvelope - getErrorBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ExceptionEnvelope$Builder - hasError: - annotations: [] - default: false - type: public - returnType: boolean - hasErrorBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setError: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.WakeUpWithException$Builder - params: - value: - annotation: [] - type: net.corda.data.ExceptionEnvelope - setErrorBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.WakeUpWithException$Builder - params: - value: - annotation: [] - type: net.corda.data.ExceptionEnvelope$Builder -net.corda.data.flow.event.external.ExternalEvent: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.event.external.ExternalEvent - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getKey: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getPayload: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getTopic: - annotations: [] - default: false - type: public - returnType: String - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.event.external.ExternalEvent$Builder - params: - other: - annotation: [] - type: net.corda.data.flow.event.external.ExternalEvent - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setKey: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setPayload: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setTimestamp: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - setTopic: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.flow.event.external.ExternalEvent$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEvent - clearKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEvent$Builder - clearPayload: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEvent$Builder - clearTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEvent$Builder - clearTopic: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEvent$Builder - getKey: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getPayload: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getTopic: - annotations: [] - default: false - type: public - returnType: String - hasKey: - annotations: [] - default: false - type: public - returnType: boolean - hasPayload: - annotations: [] - default: false - type: public - returnType: boolean - hasTimestamp: - annotations: [] - default: false - type: public - returnType: boolean - hasTopic: - annotations: [] - default: false - type: public - returnType: boolean - setKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEvent$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setPayload: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEvent$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEvent$Builder - params: - value: - annotation: [] - type: java.time.Instant - setTopic: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEvent$Builder - params: - value: - annotation: [] - type: String -net.corda.data.flow.event.external.ExternalEventContext: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.event.external.ExternalEventContext - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getContextProperties: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getFlowId: - annotations: [] - default: false - type: public - returnType: String - getRequestId: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.event.external.ExternalEventContext$Builder - params: - other: - annotation: [] - type: net.corda.data.flow.event.external.ExternalEventContext - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setContextProperties: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setFlowId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setRequestId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.flow.event.external.ExternalEventContext$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventContext - clearContextProperties: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventContext$Builder - clearFlowId: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventContext$Builder - clearRequestId: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventContext$Builder - getContextProperties: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getContextPropertiesBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList$Builder - getFlowId: - annotations: [] - default: false - type: public - returnType: String - getRequestId: - annotations: [] - default: false - type: public - returnType: String - hasContextProperties: - annotations: [] - default: false - type: public - returnType: boolean - hasContextPropertiesBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasFlowId: - annotations: [] - default: false - type: public - returnType: boolean - hasRequestId: - annotations: [] - default: false - type: public - returnType: boolean - setContextProperties: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventContext$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setContextPropertiesBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventContext$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList$Builder - setFlowId: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventContext$Builder - params: - value: - annotation: [] - type: String - setRequestId: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventContext$Builder - params: - value: - annotation: [] - type: String -net.corda.data.flow.event.external.ExternalEventResponse: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.event.external.ExternalEventResponse - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getError: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventResponseError - getPayload: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getRequestId: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.event.external.ExternalEventResponse$Builder - params: - other: - annotation: [] - type: net.corda.data.flow.event.external.ExternalEventResponse - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setError: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.flow.event.external.ExternalEventResponseError - setPayload: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setRequestId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setTimestamp: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.flow.event.external.ExternalEventResponse$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventResponse - clearError: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventResponse$Builder - clearPayload: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventResponse$Builder - clearRequestId: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventResponse$Builder - clearTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventResponse$Builder - getError: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventResponseError - getErrorBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventResponseError$Builder - getPayload: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getRequestId: - annotations: [] - default: false - type: public - returnType: String - getTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - hasError: - annotations: [] - default: false - type: public - returnType: boolean - hasErrorBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasPayload: - annotations: [] - default: false - type: public - returnType: boolean - hasRequestId: - annotations: [] - default: false - type: public - returnType: boolean - hasTimestamp: - annotations: [] - default: false - type: public - returnType: boolean - setError: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.event.external.ExternalEventResponseError - setErrorBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.event.external.ExternalEventResponseError$Builder - setPayload: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventResponse$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setRequestId: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventResponse$Builder - params: - value: - annotation: [] - type: String - setTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventResponse$Builder - params: - value: - annotation: [] - type: java.time.Instant -net.corda.data.flow.event.external.ExternalEventResponseError: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.event.external.ExternalEventResponseError - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getErrorType: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventResponseErrorType - getException: - annotations: [] - default: false - type: public - returnType: net.corda.data.ExceptionEnvelope - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.event.external.ExternalEventResponseError$Builder - params: - other: - annotation: [] - type: net.corda.data.flow.event.external.ExternalEventResponseError - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setErrorType: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.flow.event.external.ExternalEventResponseErrorType - setException: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.ExceptionEnvelope - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.flow.event.external.ExternalEventResponseError$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventResponseError - clearErrorType: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventResponseError$Builder - clearException: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventResponseError$Builder - getErrorType: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventResponseErrorType - getException: - annotations: [] - default: false - type: public - returnType: net.corda.data.ExceptionEnvelope - getExceptionBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ExceptionEnvelope$Builder - hasErrorType: - annotations: [] - default: false - type: public - returnType: boolean - hasException: - annotations: [] - default: false - type: public - returnType: boolean - hasExceptionBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setErrorType: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventResponseError$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.event.external.ExternalEventResponseErrorType - setException: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventResponseError$Builder - params: - value: - annotation: [] - type: net.corda.data.ExceptionEnvelope - setExceptionBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventResponseError$Builder - params: - value: - annotation: [] - type: net.corda.data.ExceptionEnvelope$Builder -net.corda.data.flow.event.external.ExternalEventResponseErrorType: - annotations: - - AvroGenerated - type: public final class - extends: java.lang.Enum - implements: - - org.apache.avro.generic.GenericEnumSymbol - interface: false - methods: - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - valueOf: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.event.external.ExternalEventResponseErrorType - params: {} - values: - annotations: [] - default: false - type: public static - returnType: "net.corda.data.flow.event.external.ExternalEventResponseErrorType[]" - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.flow.event.mapper.ExecuteCleanup: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.event.mapper.ExecuteCleanup - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getIds: - annotations: [] - default: false - type: public - returnType: java.util.List - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.event.mapper.ExecuteCleanup$Builder - params: - other: - annotation: [] - type: net.corda.data.flow.event.mapper.ExecuteCleanup - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setIds: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.flow.event.mapper.ExecuteCleanup$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.mapper.ExecuteCleanup - clearIds: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.mapper.ExecuteCleanup$Builder - getIds: - annotations: [] - default: false - type: public - returnType: java.util.List - hasIds: - annotations: [] - default: false - type: public - returnType: boolean - setIds: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.mapper.ExecuteCleanup$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.flow.event.mapper.FlowMapperEvent: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.event.mapper.FlowMapperEvent - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getPayload: - annotations: [] - default: false - type: public - returnType: Object - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.event.mapper.FlowMapperEvent$Builder - params: - other: - annotation: [] - type: net.corda.data.flow.event.mapper.FlowMapperEvent - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setPayload: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Object - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.flow.event.mapper.FlowMapperEvent$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.mapper.FlowMapperEvent - clearPayload: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.mapper.FlowMapperEvent$Builder - getPayload: - annotations: [] - default: false - type: public - returnType: Object - hasPayload: - annotations: [] - default: false - type: public - returnType: boolean - setPayload: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.mapper.FlowMapperEvent$Builder - params: - value: - annotation: [] - type: Object -net.corda.data.flow.event.mapper.ScheduleCleanup: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.event.mapper.ScheduleCleanup - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getExpiryTime: - annotations: [] - default: false - type: public - returnType: long - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.event.mapper.ScheduleCleanup$Builder - params: - other: - annotation: [] - type: net.corda.data.flow.event.mapper.ScheduleCleanup - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setExpiryTime: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: long - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.flow.event.mapper.ScheduleCleanup$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.mapper.ScheduleCleanup - clearExpiryTime: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.mapper.ScheduleCleanup$Builder - getExpiryTime: - annotations: [] - default: false - type: public - returnType: long - hasExpiryTime: - annotations: [] - default: false - type: public - returnType: boolean - setExpiryTime: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.mapper.ScheduleCleanup$Builder - params: - value: - annotation: [] - type: long -net.corda.data.flow.event.session.SessionClose: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.event.session.SessionClose - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.event.session.SessionClose$Builder - params: - other: - annotation: [] - type: net.corda.data.flow.event.session.SessionClose - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.flow.event.session.SessionClose$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.session.SessionClose -net.corda.data.flow.event.session.SessionCounterpartyInfoRequest: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.event.session.SessionCounterpartyInfoRequest - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSessionInit: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.session.SessionInit - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.event.session.SessionCounterpartyInfoRequest$Builder - params: - other: - annotation: [] - type: net.corda.data.flow.event.session.SessionCounterpartyInfoRequest - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setSessionInit: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.flow.event.session.SessionInit - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.flow.event.session.SessionCounterpartyInfoRequest$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.session.SessionCounterpartyInfoRequest - clearSessionInit: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.session.SessionCounterpartyInfoRequest$Builder - getSessionInit: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.session.SessionInit - getSessionInitBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.session.SessionInit$Builder - hasSessionInit: - annotations: [] - default: false - type: public - returnType: boolean - hasSessionInitBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setSessionInit: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.session.SessionCounterpartyInfoRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.event.session.SessionInit - setSessionInitBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.session.SessionCounterpartyInfoRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.event.session.SessionInit$Builder -net.corda.data.flow.event.session.SessionCounterpartyInfoResponse: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.event.session.SessionCounterpartyInfoResponse - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.event.session.SessionCounterpartyInfoResponse$Builder - params: - other: - annotation: [] - type: net.corda.data.flow.event.session.SessionCounterpartyInfoResponse - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.flow.event.session.SessionCounterpartyInfoResponse$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.session.SessionCounterpartyInfoResponse -net.corda.data.flow.event.session.SessionData: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.event.session.SessionData - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getPayload: - annotations: [] - default: false - type: public - returnType: Object - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSessionInit: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.session.SessionInit - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.event.session.SessionData$Builder - params: - other: - annotation: [] - type: net.corda.data.flow.event.session.SessionData - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setPayload: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Object - setSessionInit: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.flow.event.session.SessionInit - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.flow.event.session.SessionData$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.session.SessionData - clearPayload: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.session.SessionData$Builder - clearSessionInit: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.session.SessionData$Builder - getPayload: - annotations: [] - default: false - type: public - returnType: Object - getSessionInit: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.session.SessionInit - getSessionInitBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.session.SessionInit$Builder - hasPayload: - annotations: [] - default: false - type: public - returnType: boolean - hasSessionInit: - annotations: [] - default: false - type: public - returnType: boolean - hasSessionInitBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setPayload: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.session.SessionData$Builder - params: - value: - annotation: [] - type: Object - setSessionInit: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.session.SessionData$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.event.session.SessionInit - setSessionInitBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.session.SessionData$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.event.session.SessionInit$Builder -net.corda.data.flow.event.session.SessionError: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.event.session.SessionError - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getErrorMessage: - annotations: [] - default: false - type: public - returnType: net.corda.data.ExceptionEnvelope - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.event.session.SessionError$Builder - params: - other: - annotation: [] - type: net.corda.data.flow.event.session.SessionError - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setErrorMessage: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.ExceptionEnvelope - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.flow.event.session.SessionError$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.session.SessionError - clearErrorMessage: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.session.SessionError$Builder - getErrorMessage: - annotations: [] - default: false - type: public - returnType: net.corda.data.ExceptionEnvelope - getErrorMessageBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ExceptionEnvelope$Builder - hasErrorMessage: - annotations: [] - default: false - type: public - returnType: boolean - hasErrorMessageBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setErrorMessage: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.session.SessionError$Builder - params: - value: - annotation: [] - type: net.corda.data.ExceptionEnvelope - setErrorMessageBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.session.SessionError$Builder - params: - value: - annotation: [] - type: net.corda.data.ExceptionEnvelope$Builder -net.corda.data.flow.event.session.SessionInit: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.event.session.SessionInit - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getContextPlatformProperties: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getContextUserProperties: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getCpiId: - annotations: [] - default: false - type: public - returnType: String - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getFlowId: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.event.session.SessionInit$Builder - params: - other: - annotation: [] - type: net.corda.data.flow.event.session.SessionInit - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setContextPlatformProperties: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setContextUserProperties: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setCpiId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setFlowId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.flow.event.session.SessionInit$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.session.SessionInit - clearContextPlatformProperties: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.session.SessionInit$Builder - clearContextUserProperties: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.session.SessionInit$Builder - clearCpiId: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.session.SessionInit$Builder - clearFlowId: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.session.SessionInit$Builder - getContextPlatformProperties: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getContextPlatformPropertiesBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList$Builder - getContextUserProperties: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getContextUserPropertiesBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList$Builder - getCpiId: - annotations: [] - default: false - type: public - returnType: String - getFlowId: - annotations: [] - default: false - type: public - returnType: String - hasContextPlatformProperties: - annotations: [] - default: false - type: public - returnType: boolean - hasContextPlatformPropertiesBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasContextUserProperties: - annotations: [] - default: false - type: public - returnType: boolean - hasContextUserPropertiesBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasCpiId: - annotations: [] - default: false - type: public - returnType: boolean - hasFlowId: - annotations: [] - default: false - type: public - returnType: boolean - setContextPlatformProperties: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.session.SessionInit$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setContextPlatformPropertiesBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.session.SessionInit$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList$Builder - setContextUserProperties: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.session.SessionInit$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setContextUserPropertiesBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.session.SessionInit$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList$Builder - setCpiId: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.session.SessionInit$Builder - params: - value: - annotation: [] - type: String - setFlowId: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.session.SessionInit$Builder - params: - value: - annotation: [] - type: String -net.corda.data.flow.output.FlowStates: - annotations: - - AvroGenerated - type: public final class - extends: java.lang.Enum - implements: - - org.apache.avro.generic.GenericEnumSymbol - interface: false - methods: - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - valueOf: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.output.FlowStates - params: {} - values: - annotations: [] - default: false - type: public static - returnType: "net.corda.data.flow.output.FlowStates[]" - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.flow.output.FlowStatus: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.output.FlowStatus - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getCreatedTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getError: - annotations: [] - default: false - type: public - returnType: net.corda.data.ExceptionEnvelope - getFlowClassName: - annotations: [] - default: false - type: public - returnType: String - getFlowId: - annotations: [] - default: false - type: public - returnType: String - getFlowStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.output.FlowStates - getInitiatorType: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowInitiatorType - getKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowKey - getLastUpdateTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getProcessingTerminatedReason: - annotations: [] - default: false - type: public - returnType: String - getResult: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.output.FlowStatus$Builder - params: - other: - annotation: [] - type: net.corda.data.flow.output.FlowStatus - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setCreatedTimestamp: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - setError: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.ExceptionEnvelope - setFlowClassName: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setFlowId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setFlowStatus: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.flow.output.FlowStates - setInitiatorType: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.flow.FlowInitiatorType - setKey: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.flow.FlowKey - setLastUpdateTimestamp: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - setProcessingTerminatedReason: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setResult: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.flow.output.FlowStatus$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.output.FlowStatus - clearCreatedTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.output.FlowStatus$Builder - clearError: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.output.FlowStatus$Builder - clearFlowClassName: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.output.FlowStatus$Builder - clearFlowId: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.output.FlowStatus$Builder - clearFlowStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.output.FlowStatus$Builder - clearInitiatorType: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.output.FlowStatus$Builder - clearKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.output.FlowStatus$Builder - clearLastUpdateTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.output.FlowStatus$Builder - clearProcessingTerminatedReason: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.output.FlowStatus$Builder - clearResult: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.output.FlowStatus$Builder - getCreatedTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getError: - annotations: [] - default: false - type: public - returnType: net.corda.data.ExceptionEnvelope - getErrorBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ExceptionEnvelope$Builder - getFlowClassName: - annotations: [] - default: false - type: public - returnType: String - getFlowId: - annotations: [] - default: false - type: public - returnType: String - getFlowStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.output.FlowStates - getInitiatorType: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowInitiatorType - getKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowKey - getKeyBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowKey$Builder - getLastUpdateTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getProcessingTerminatedReason: - annotations: [] - default: false - type: public - returnType: String - getResult: - annotations: [] - default: false - type: public - returnType: String - hasCreatedTimestamp: - annotations: [] - default: false - type: public - returnType: boolean - hasError: - annotations: [] - default: false - type: public - returnType: boolean - hasErrorBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasFlowClassName: - annotations: [] - default: false - type: public - returnType: boolean - hasFlowId: - annotations: [] - default: false - type: public - returnType: boolean - hasFlowStatus: - annotations: [] - default: false - type: public - returnType: boolean - hasInitiatorType: - annotations: [] - default: false - type: public - returnType: boolean - hasKey: - annotations: [] - default: false - type: public - returnType: boolean - hasKeyBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasLastUpdateTimestamp: - annotations: [] - default: false - type: public - returnType: boolean - hasProcessingTerminatedReason: - annotations: [] - default: false - type: public - returnType: boolean - hasResult: - annotations: [] - default: false - type: public - returnType: boolean - setCreatedTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.output.FlowStatus$Builder - params: - value: - annotation: [] - type: java.time.Instant - setError: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.output.FlowStatus$Builder - params: - value: - annotation: [] - type: net.corda.data.ExceptionEnvelope - setErrorBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.output.FlowStatus$Builder - params: - value: - annotation: [] - type: net.corda.data.ExceptionEnvelope$Builder - setFlowClassName: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.output.FlowStatus$Builder - params: - value: - annotation: [] - type: String - setFlowId: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.output.FlowStatus$Builder - params: - value: - annotation: [] - type: String - setFlowStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.output.FlowStatus$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.output.FlowStates - setInitiatorType: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.output.FlowStatus$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.FlowInitiatorType - setKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.output.FlowStatus$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.FlowKey - setKeyBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.output.FlowStatus$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.FlowKey$Builder - setLastUpdateTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.output.FlowStatus$Builder - params: - value: - annotation: [] - type: java.time.Instant - setProcessingTerminatedReason: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.output.FlowStatus$Builder - params: - value: - annotation: [] - type: String - setResult: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.output.FlowStatus$Builder - params: - value: - annotation: [] - type: String -net.corda.data.flow.state.checkpoint.Checkpoint: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.state.checkpoint.Checkpoint - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getCustomState: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getFlowId: - annotations: [] - default: false - type: public - returnType: String - getFlowMetricsState: - annotations: [] - default: false - type: public - returnType: String - getFlowState: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.FlowState - getInitialPlatformVersion: - annotations: [] - default: false - type: public - returnType: int - getPipelineState: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.PipelineState - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.state.checkpoint.Checkpoint$Builder - params: - other: - annotation: [] - type: net.corda.data.flow.state.checkpoint.Checkpoint - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setCustomState: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setFlowId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setFlowMetricsState: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setFlowState: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.flow.state.checkpoint.FlowState - setInitialPlatformVersion: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - setPipelineState: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.flow.state.checkpoint.PipelineState - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.flow.state.checkpoint.Checkpoint$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.Checkpoint - clearCustomState: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.Checkpoint$Builder - clearFlowId: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.Checkpoint$Builder - clearFlowMetricsState: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.Checkpoint$Builder - clearFlowState: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.Checkpoint$Builder - clearInitialPlatformVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.Checkpoint$Builder - clearPipelineState: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.Checkpoint$Builder - getCustomState: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getCustomStateBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList$Builder - getFlowId: - annotations: [] - default: false - type: public - returnType: String - getFlowMetricsState: - annotations: [] - default: false - type: public - returnType: String - getFlowState: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.FlowState - getFlowStateBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.FlowState$Builder - getInitialPlatformVersion: - annotations: [] - default: false - type: public - returnType: int - getPipelineState: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.PipelineState - getPipelineStateBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.PipelineState$Builder - hasCustomState: - annotations: [] - default: false - type: public - returnType: boolean - hasCustomStateBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasFlowId: - annotations: [] - default: false - type: public - returnType: boolean - hasFlowMetricsState: - annotations: [] - default: false - type: public - returnType: boolean - hasFlowState: - annotations: [] - default: false - type: public - returnType: boolean - hasFlowStateBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasInitialPlatformVersion: - annotations: [] - default: false - type: public - returnType: boolean - hasPipelineState: - annotations: [] - default: false - type: public - returnType: boolean - hasPipelineStateBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setCustomState: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.Checkpoint$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setCustomStateBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.Checkpoint$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList$Builder - setFlowId: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.Checkpoint$Builder - params: - value: - annotation: [] - type: String - setFlowMetricsState: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.Checkpoint$Builder - params: - value: - annotation: [] - type: String - setFlowState: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.Checkpoint$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.state.checkpoint.FlowState - setFlowStateBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.Checkpoint$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.state.checkpoint.FlowState$Builder - setInitialPlatformVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.Checkpoint$Builder - params: - value: - annotation: [] - type: int - setPipelineState: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.Checkpoint$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.state.checkpoint.PipelineState - setPipelineStateBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.Checkpoint$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.state.checkpoint.PipelineState$Builder -net.corda.data.flow.state.checkpoint.FlowStackItem: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.state.checkpoint.FlowStackItem - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getContextPlatformProperties: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getContextUserProperties: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getFlowName: - annotations: [] - default: false - type: public - returnType: String - getIsInitiatingFlow: - annotations: [] - default: false - type: public - returnType: boolean - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSessions: - annotations: [] - default: false - type: public - returnType: java.util.List - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.state.checkpoint.FlowStackItem$Builder - params: - other: - annotation: [] - type: net.corda.data.flow.state.checkpoint.FlowStackItem - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setContextPlatformProperties: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setContextUserProperties: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setFlowName: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setIsInitiatingFlow: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: boolean - setSessions: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.flow.state.checkpoint.FlowStackItem$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.FlowStackItem - clearContextPlatformProperties: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.FlowStackItem$Builder - clearContextUserProperties: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.FlowStackItem$Builder - clearFlowName: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.FlowStackItem$Builder - clearIsInitiatingFlow: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.FlowStackItem$Builder - clearSessions: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.FlowStackItem$Builder - getContextPlatformProperties: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getContextPlatformPropertiesBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList$Builder - getContextUserProperties: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getContextUserPropertiesBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList$Builder - getFlowName: - annotations: [] - default: false - type: public - returnType: String - getIsInitiatingFlow: - annotations: [] - default: false - type: public - returnType: boolean - getSessions: - annotations: [] - default: false - type: public - returnType: java.util.List - hasContextPlatformProperties: - annotations: [] - default: false - type: public - returnType: boolean - hasContextPlatformPropertiesBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasContextUserProperties: - annotations: [] - default: false - type: public - returnType: boolean - hasContextUserPropertiesBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasFlowName: - annotations: [] - default: false - type: public - returnType: boolean - hasIsInitiatingFlow: - annotations: [] - default: false - type: public - returnType: boolean - hasSessions: - annotations: [] - default: false - type: public - returnType: boolean - setContextPlatformProperties: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.FlowStackItem$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setContextPlatformPropertiesBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.FlowStackItem$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList$Builder - setContextUserProperties: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.FlowStackItem$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setContextUserPropertiesBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.FlowStackItem$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList$Builder - setFlowName: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.FlowStackItem$Builder - params: - value: - annotation: [] - type: String - setIsInitiatingFlow: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.FlowStackItem$Builder - params: - value: - annotation: [] - type: boolean - setSessions: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.FlowStackItem$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.flow.state.checkpoint.FlowStackItemSession: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.state.checkpoint.FlowStackItemSession - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getInitiated: - annotations: [] - default: false - type: public - returnType: boolean - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSessionId: - annotations: [] - default: false - type: public - returnType: String - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.state.checkpoint.FlowStackItemSession$Builder - params: - other: - annotation: [] - type: net.corda.data.flow.state.checkpoint.FlowStackItemSession - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setInitiated: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: boolean - setSessionId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.flow.state.checkpoint.FlowStackItemSession$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.FlowStackItemSession - clearInitiated: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.FlowStackItemSession$Builder - clearSessionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.FlowStackItemSession$Builder - getInitiated: - annotations: [] - default: false - type: public - returnType: boolean - getSessionId: - annotations: [] - default: false - type: public - returnType: String - hasInitiated: - annotations: [] - default: false - type: public - returnType: boolean - hasSessionId: - annotations: [] - default: false - type: public - returnType: boolean - setInitiated: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.FlowStackItemSession$Builder - params: - value: - annotation: [] - type: boolean - setSessionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.FlowStackItemSession$Builder - params: - value: - annotation: [] - type: String -net.corda.data.flow.state.checkpoint.FlowState: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.state.checkpoint.FlowState - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getExternalEventState: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.external.ExternalEventState - getFiber: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getFlowStackItems: - annotations: [] - default: false - type: public - returnType: java.util.List - getFlowStartContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowStartContext - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSessions: - annotations: [] - default: false - type: public - returnType: java.util.List - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getSuspendCount: - annotations: [] - default: false - type: public - returnType: int - getSuspendedOn: - annotations: [] - default: false - type: public - returnType: String - getWaitingFor: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.waiting.WaitingFor - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.state.checkpoint.FlowState$Builder - params: - other: - annotation: [] - type: net.corda.data.flow.state.checkpoint.FlowState - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setExternalEventState: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.flow.state.external.ExternalEventState - setFiber: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setFlowStackItems: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - setFlowStartContext: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.flow.FlowStartContext - setSessions: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - setSuspendCount: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - setSuspendedOn: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setWaitingFor: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.flow.state.waiting.WaitingFor - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.flow.state.checkpoint.FlowState$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.FlowState - clearExternalEventState: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.FlowState$Builder - clearFiber: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.FlowState$Builder - clearFlowStackItems: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.FlowState$Builder - clearFlowStartContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.FlowState$Builder - clearSessions: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.FlowState$Builder - clearSuspendCount: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.FlowState$Builder - clearSuspendedOn: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.FlowState$Builder - clearWaitingFor: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.FlowState$Builder - getExternalEventState: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.external.ExternalEventState - getExternalEventStateBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.external.ExternalEventState$Builder - getFiber: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getFlowStackItems: - annotations: [] - default: false - type: public - returnType: java.util.List - getFlowStartContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowStartContext - getFlowStartContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.FlowStartContext$Builder - getSessions: - annotations: [] - default: false - type: public - returnType: java.util.List - getSuspendCount: - annotations: [] - default: false - type: public - returnType: int - getSuspendedOn: - annotations: [] - default: false - type: public - returnType: String - getWaitingFor: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.waiting.WaitingFor - getWaitingForBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.waiting.WaitingFor$Builder - hasExternalEventState: - annotations: [] - default: false - type: public - returnType: boolean - hasExternalEventStateBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasFiber: - annotations: [] - default: false - type: public - returnType: boolean - hasFlowStackItems: - annotations: [] - default: false - type: public - returnType: boolean - hasFlowStartContext: - annotations: [] - default: false - type: public - returnType: boolean - hasFlowStartContextBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasSessions: - annotations: [] - default: false - type: public - returnType: boolean - hasSuspendCount: - annotations: [] - default: false - type: public - returnType: boolean - hasSuspendedOn: - annotations: [] - default: false - type: public - returnType: boolean - hasWaitingFor: - annotations: [] - default: false - type: public - returnType: boolean - hasWaitingForBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setExternalEventState: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.FlowState$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.state.external.ExternalEventState - setExternalEventStateBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.FlowState$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.state.external.ExternalEventState$Builder - setFiber: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.FlowState$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setFlowStackItems: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.FlowState$Builder - params: - value: - annotation: [] - type: java.util.List - setFlowStartContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.FlowState$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.FlowStartContext - setFlowStartContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.FlowState$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.FlowStartContext$Builder - setSessions: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.FlowState$Builder - params: - value: - annotation: [] - type: java.util.List - setSuspendCount: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.FlowState$Builder - params: - value: - annotation: [] - type: int - setSuspendedOn: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.FlowState$Builder - params: - value: - annotation: [] - type: String - setWaitingFor: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.FlowState$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.state.waiting.WaitingFor - setWaitingForBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.FlowState$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.state.waiting.WaitingFor$Builder -net.corda.data.flow.state.checkpoint.PipelineState: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.state.checkpoint.PipelineState - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getCpkFileHashes: - annotations: [] - default: false - type: public - returnType: java.util.List - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getMaxFlowSleepDuration: - annotations: [] - default: false - type: public - returnType: int - getPendingPlatformError: - annotations: [] - default: false - type: public - returnType: net.corda.data.ExceptionEnvelope - getRetryState: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.RetryState - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.state.checkpoint.PipelineState$Builder - params: - other: - annotation: [] - type: net.corda.data.flow.state.checkpoint.PipelineState - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setCpkFileHashes: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - setMaxFlowSleepDuration: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - setPendingPlatformError: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.ExceptionEnvelope - setRetryState: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.flow.state.checkpoint.RetryState - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.flow.state.checkpoint.PipelineState$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.PipelineState - clearCpkFileHashes: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.PipelineState$Builder - clearMaxFlowSleepDuration: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.PipelineState$Builder - clearPendingPlatformError: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.PipelineState$Builder - clearRetryState: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.PipelineState$Builder - getCpkFileHashes: - annotations: [] - default: false - type: public - returnType: java.util.List - getMaxFlowSleepDuration: - annotations: [] - default: false - type: public - returnType: int - getPendingPlatformError: - annotations: [] - default: false - type: public - returnType: net.corda.data.ExceptionEnvelope - getPendingPlatformErrorBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ExceptionEnvelope$Builder - getRetryState: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.RetryState - getRetryStateBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.RetryState$Builder - hasCpkFileHashes: - annotations: [] - default: false - type: public - returnType: boolean - hasMaxFlowSleepDuration: - annotations: [] - default: false - type: public - returnType: boolean - hasPendingPlatformError: - annotations: [] - default: false - type: public - returnType: boolean - hasPendingPlatformErrorBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasRetryState: - annotations: [] - default: false - type: public - returnType: boolean - hasRetryStateBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setCpkFileHashes: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.PipelineState$Builder - params: - value: - annotation: [] - type: java.util.List - setMaxFlowSleepDuration: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.PipelineState$Builder - params: - value: - annotation: [] - type: int - setPendingPlatformError: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.PipelineState$Builder - params: - value: - annotation: [] - type: net.corda.data.ExceptionEnvelope - setPendingPlatformErrorBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.PipelineState$Builder - params: - value: - annotation: [] - type: net.corda.data.ExceptionEnvelope$Builder - setRetryState: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.PipelineState$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.state.checkpoint.RetryState - setRetryStateBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.PipelineState$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.state.checkpoint.RetryState$Builder -net.corda.data.flow.state.checkpoint.RetryState: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.state.checkpoint.RetryState - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getError: - annotations: [] - default: false - type: public - returnType: net.corda.data.ExceptionEnvelope - getFailedEvent: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.FlowEvent - getFirstFailureTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getLastFailureTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getRetryCount: - annotations: [] - default: false - type: public - returnType: int - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.state.checkpoint.RetryState$Builder - params: - other: - annotation: [] - type: net.corda.data.flow.state.checkpoint.RetryState - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setError: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.ExceptionEnvelope - setFailedEvent: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.flow.event.FlowEvent - setFirstFailureTimestamp: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - setLastFailureTimestamp: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - setRetryCount: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.flow.state.checkpoint.RetryState$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.RetryState - clearError: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.RetryState$Builder - clearFailedEvent: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.RetryState$Builder - clearFirstFailureTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.RetryState$Builder - clearLastFailureTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.RetryState$Builder - clearRetryCount: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.RetryState$Builder - getError: - annotations: [] - default: false - type: public - returnType: net.corda.data.ExceptionEnvelope - getErrorBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ExceptionEnvelope$Builder - getFailedEvent: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.FlowEvent - getFailedEventBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.FlowEvent$Builder - getFirstFailureTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getLastFailureTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getRetryCount: - annotations: [] - default: false - type: public - returnType: int - hasError: - annotations: [] - default: false - type: public - returnType: boolean - hasErrorBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasFailedEvent: - annotations: [] - default: false - type: public - returnType: boolean - hasFailedEventBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasFirstFailureTimestamp: - annotations: [] - default: false - type: public - returnType: boolean - hasLastFailureTimestamp: - annotations: [] - default: false - type: public - returnType: boolean - hasRetryCount: - annotations: [] - default: false - type: public - returnType: boolean - setError: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.RetryState$Builder - params: - value: - annotation: [] - type: net.corda.data.ExceptionEnvelope - setErrorBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.RetryState$Builder - params: - value: - annotation: [] - type: net.corda.data.ExceptionEnvelope$Builder - setFailedEvent: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.RetryState$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.event.FlowEvent - setFailedEventBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.RetryState$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.event.FlowEvent$Builder - setFirstFailureTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.RetryState$Builder - params: - value: - annotation: [] - type: java.time.Instant - setLastFailureTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.RetryState$Builder - params: - value: - annotation: [] - type: java.time.Instant - setRetryCount: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.checkpoint.RetryState$Builder - params: - value: - annotation: [] - type: int -net.corda.data.flow.state.external.ExternalEventState: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.state.external.ExternalEventState - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getEventToSend: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEvent - getFactoryClassName: - annotations: [] - default: false - type: public - returnType: String - getRequestId: - annotations: [] - default: false - type: public - returnType: String - getResponse: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventResponse - getRetries: - annotations: [] - default: false - type: public - returnType: int - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSendTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.external.ExternalEventStateStatus - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.state.external.ExternalEventState$Builder - params: - other: - annotation: [] - type: net.corda.data.flow.state.external.ExternalEventState - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setEventToSend: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.flow.event.external.ExternalEvent - setFactoryClassName: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setRequestId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setResponse: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.flow.event.external.ExternalEventResponse - setRetries: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - setSendTimestamp: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - setStatus: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.flow.state.external.ExternalEventStateStatus - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.flow.state.external.ExternalEventState$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.external.ExternalEventState - clearEventToSend: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.external.ExternalEventState$Builder - clearFactoryClassName: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.external.ExternalEventState$Builder - clearRequestId: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.external.ExternalEventState$Builder - clearResponse: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.external.ExternalEventState$Builder - clearRetries: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.external.ExternalEventState$Builder - clearSendTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.external.ExternalEventState$Builder - clearStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.external.ExternalEventState$Builder - getEventToSend: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEvent - getEventToSendBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEvent$Builder - getFactoryClassName: - annotations: [] - default: false - type: public - returnType: String - getRequestId: - annotations: [] - default: false - type: public - returnType: String - getResponse: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventResponse - getResponseBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventResponse$Builder - getRetries: - annotations: [] - default: false - type: public - returnType: int - getSendTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.external.ExternalEventStateStatus - getStatusBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.external.ExternalEventStateStatus$Builder - hasEventToSend: - annotations: [] - default: false - type: public - returnType: boolean - hasEventToSendBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasFactoryClassName: - annotations: [] - default: false - type: public - returnType: boolean - hasRequestId: - annotations: [] - default: false - type: public - returnType: boolean - hasResponse: - annotations: [] - default: false - type: public - returnType: boolean - hasResponseBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasRetries: - annotations: [] - default: false - type: public - returnType: boolean - hasSendTimestamp: - annotations: [] - default: false - type: public - returnType: boolean - hasStatus: - annotations: [] - default: false - type: public - returnType: boolean - hasStatusBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setEventToSend: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.external.ExternalEventState$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.event.external.ExternalEvent - setEventToSendBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.external.ExternalEventState$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.event.external.ExternalEvent$Builder - setFactoryClassName: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.external.ExternalEventState$Builder - params: - value: - annotation: [] - type: String - setRequestId: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.external.ExternalEventState$Builder - params: - value: - annotation: [] - type: String - setResponse: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.external.ExternalEventState$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.event.external.ExternalEventResponse - setResponseBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.external.ExternalEventState$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.event.external.ExternalEventResponse$Builder - setRetries: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.external.ExternalEventState$Builder - params: - value: - annotation: [] - type: int - setSendTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.external.ExternalEventState$Builder - params: - value: - annotation: [] - type: java.time.Instant - setStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.external.ExternalEventState$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.state.external.ExternalEventStateStatus - setStatusBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.external.ExternalEventState$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.state.external.ExternalEventStateStatus$Builder -net.corda.data.flow.state.external.ExternalEventStateStatus: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.state.external.ExternalEventStateStatus - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getException: - annotations: [] - default: false - type: public - returnType: net.corda.data.ExceptionEnvelope - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getType: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.external.ExternalEventStateType - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.state.external.ExternalEventStateStatus$Builder - params: - other: - annotation: [] - type: net.corda.data.flow.state.external.ExternalEventStateStatus - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setException: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.ExceptionEnvelope - setType: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.flow.state.external.ExternalEventStateType - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.flow.state.external.ExternalEventStateStatus$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.external.ExternalEventStateStatus - clearException: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.external.ExternalEventStateStatus$Builder - clearType: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.external.ExternalEventStateStatus$Builder - getException: - annotations: [] - default: false - type: public - returnType: net.corda.data.ExceptionEnvelope - getExceptionBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ExceptionEnvelope$Builder - getType: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.external.ExternalEventStateType - hasException: - annotations: [] - default: false - type: public - returnType: boolean - hasExceptionBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasType: - annotations: [] - default: false - type: public - returnType: boolean - setException: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.external.ExternalEventStateStatus$Builder - params: - value: - annotation: [] - type: net.corda.data.ExceptionEnvelope - setExceptionBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.external.ExternalEventStateStatus$Builder - params: - value: - annotation: [] - type: net.corda.data.ExceptionEnvelope$Builder - setType: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.external.ExternalEventStateStatus$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.state.external.ExternalEventStateType -net.corda.data.flow.state.external.ExternalEventStateType: - annotations: - - AvroGenerated - type: public final class - extends: java.lang.Enum - implements: - - org.apache.avro.generic.GenericEnumSymbol - interface: false - methods: - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - valueOf: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.state.external.ExternalEventStateType - params: {} - values: - annotations: [] - default: false - type: public static - returnType: "net.corda.data.flow.state.external.ExternalEventStateType[]" - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.flow.state.mapper.FlowMapperState: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.state.mapper.FlowMapperState - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getExpiryTime: - annotations: [] - default: false - type: public - returnType: Long - getFlowId: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.mapper.FlowMapperStateType - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.state.mapper.FlowMapperState$Builder - params: - other: - annotation: [] - type: net.corda.data.flow.state.mapper.FlowMapperState - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setExpiryTime: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Long - setFlowId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setStatus: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.flow.state.mapper.FlowMapperStateType - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.flow.state.mapper.FlowMapperState$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.mapper.FlowMapperState - clearExpiryTime: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.mapper.FlowMapperState$Builder - clearFlowId: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.mapper.FlowMapperState$Builder - clearStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.mapper.FlowMapperState$Builder - getExpiryTime: - annotations: [] - default: false - type: public - returnType: Long - getFlowId: - annotations: [] - default: false - type: public - returnType: String - getStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.mapper.FlowMapperStateType - hasExpiryTime: - annotations: [] - default: false - type: public - returnType: boolean - hasFlowId: - annotations: [] - default: false - type: public - returnType: boolean - hasStatus: - annotations: [] - default: false - type: public - returnType: boolean - setExpiryTime: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.mapper.FlowMapperState$Builder - params: - value: - annotation: [] - type: Long - setFlowId: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.mapper.FlowMapperState$Builder - params: - value: - annotation: [] - type: String - setStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.mapper.FlowMapperState$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.state.mapper.FlowMapperStateType -net.corda.data.flow.state.mapper.FlowMapperStateType: - annotations: - - AvroGenerated - type: public final class - extends: java.lang.Enum - implements: - - org.apache.avro.generic.GenericEnumSymbol - interface: false - methods: - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - valueOf: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.state.mapper.FlowMapperStateType - params: {} - values: - annotations: [] - default: false - type: public static - returnType: "net.corda.data.flow.state.mapper.FlowMapperStateType[]" - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.flow.state.session.SessionProcessState: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.state.session.SessionProcessState - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getLastProcessedSequenceNum: - annotations: [] - default: false - type: public - returnType: int - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getUndeliveredMessages: - annotations: [] - default: false - type: public - returnType: java.util.List - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.state.session.SessionProcessState$Builder - params: - other: - annotation: [] - type: net.corda.data.flow.state.session.SessionProcessState - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setLastProcessedSequenceNum: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - setUndeliveredMessages: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.flow.state.session.SessionProcessState$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.session.SessionProcessState - clearLastProcessedSequenceNum: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.session.SessionProcessState$Builder - clearUndeliveredMessages: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.session.SessionProcessState$Builder - getLastProcessedSequenceNum: - annotations: [] - default: false - type: public - returnType: int - getUndeliveredMessages: - annotations: [] - default: false - type: public - returnType: java.util.List - hasLastProcessedSequenceNum: - annotations: [] - default: false - type: public - returnType: boolean - hasUndeliveredMessages: - annotations: [] - default: false - type: public - returnType: boolean - setLastProcessedSequenceNum: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.session.SessionProcessState$Builder - params: - value: - annotation: [] - type: int - setUndeliveredMessages: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.session.SessionProcessState$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.flow.state.session.SessionState: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.state.session.SessionState - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getCounterpartyIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getHasScheduledCleanup: - annotations: [] - default: false - type: public - returnType: boolean - getLastReceivedMessageTime: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getReceivedEventsState: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.session.SessionProcessState - getRequireClose: - annotations: [] - default: false - type: public - returnType: boolean - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSendEventsState: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.session.SessionProcessState - getSessionId: - annotations: [] - default: false - type: public - returnType: String - getSessionProperties: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getSessionStartTime: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.session.SessionStateType - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.state.session.SessionState$Builder - params: - other: - annotation: [] - type: net.corda.data.flow.state.session.SessionState - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setCounterpartyIdentity: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setHasScheduledCleanup: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: boolean - setLastReceivedMessageTime: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - setReceivedEventsState: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.flow.state.session.SessionProcessState - setRequireClose: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: boolean - setSendEventsState: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.flow.state.session.SessionProcessState - setSessionId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setSessionProperties: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setSessionStartTime: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - setStatus: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.flow.state.session.SessionStateType - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.flow.state.session.SessionState$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.session.SessionState - clearCounterpartyIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.session.SessionState$Builder - clearHasScheduledCleanup: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.session.SessionState$Builder - clearLastReceivedMessageTime: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.session.SessionState$Builder - clearReceivedEventsState: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.session.SessionState$Builder - clearRequireClose: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.session.SessionState$Builder - clearSendEventsState: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.session.SessionState$Builder - clearSessionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.session.SessionState$Builder - clearSessionProperties: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.session.SessionState$Builder - clearSessionStartTime: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.session.SessionState$Builder - clearStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.session.SessionState$Builder - getCounterpartyIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getCounterpartyIdentityBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - getHasScheduledCleanup: - annotations: [] - default: false - type: public - returnType: boolean - getLastReceivedMessageTime: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getReceivedEventsState: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.session.SessionProcessState - getReceivedEventsStateBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.session.SessionProcessState$Builder - getRequireClose: - annotations: [] - default: false - type: public - returnType: boolean - getSendEventsState: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.session.SessionProcessState - getSendEventsStateBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.session.SessionProcessState$Builder - getSessionId: - annotations: [] - default: false - type: public - returnType: String - getSessionProperties: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getSessionPropertiesBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList$Builder - getSessionStartTime: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.session.SessionStateType - hasCounterpartyIdentity: - annotations: [] - default: false - type: public - returnType: boolean - hasCounterpartyIdentityBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasHasScheduledCleanup: - annotations: [] - default: false - type: public - returnType: boolean - hasLastReceivedMessageTime: - annotations: [] - default: false - type: public - returnType: boolean - hasReceivedEventsState: - annotations: [] - default: false - type: public - returnType: boolean - hasReceivedEventsStateBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasRequireClose: - annotations: [] - default: false - type: public - returnType: boolean - hasSendEventsState: - annotations: [] - default: false - type: public - returnType: boolean - hasSendEventsStateBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasSessionId: - annotations: [] - default: false - type: public - returnType: boolean - hasSessionProperties: - annotations: [] - default: false - type: public - returnType: boolean - hasSessionPropertiesBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasSessionStartTime: - annotations: [] - default: false - type: public - returnType: boolean - hasStatus: - annotations: [] - default: false - type: public - returnType: boolean - setCounterpartyIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.session.SessionState$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setCounterpartyIdentityBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.session.SessionState$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder - setHasScheduledCleanup: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.session.SessionState$Builder - params: - value: - annotation: [] - type: boolean - setLastReceivedMessageTime: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.session.SessionState$Builder - params: - value: - annotation: [] - type: java.time.Instant - setReceivedEventsState: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.session.SessionState$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.state.session.SessionProcessState - setReceivedEventsStateBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.session.SessionState$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.state.session.SessionProcessState$Builder - setRequireClose: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.session.SessionState$Builder - params: - value: - annotation: [] - type: boolean - setSendEventsState: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.session.SessionState$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.state.session.SessionProcessState - setSendEventsStateBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.session.SessionState$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.state.session.SessionProcessState$Builder - setSessionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.session.SessionState$Builder - params: - value: - annotation: [] - type: String - setSessionProperties: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.session.SessionState$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setSessionPropertiesBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.session.SessionState$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList$Builder - setSessionStartTime: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.session.SessionState$Builder - params: - value: - annotation: [] - type: java.time.Instant - setStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.session.SessionState$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.state.session.SessionStateType -net.corda.data.flow.state.session.SessionStateType: - annotations: - - AvroGenerated - type: public final class - extends: java.lang.Enum - implements: - - org.apache.avro.generic.GenericEnumSymbol - interface: false - methods: - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - valueOf: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.state.session.SessionStateType - params: {} - values: - annotations: [] - default: false - type: public static - returnType: "net.corda.data.flow.state.session.SessionStateType[]" - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.flow.state.waiting.CounterPartyFlowInfo: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.state.waiting.CounterPartyFlowInfo - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSessionId: - annotations: [] - default: false - type: public - returnType: String - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.state.waiting.CounterPartyFlowInfo$Builder - params: - other: - annotation: [] - type: net.corda.data.flow.state.waiting.CounterPartyFlowInfo - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setSessionId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.flow.state.waiting.CounterPartyFlowInfo$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.waiting.CounterPartyFlowInfo - clearSessionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.waiting.CounterPartyFlowInfo$Builder - getSessionId: - annotations: [] - default: false - type: public - returnType: String - hasSessionId: - annotations: [] - default: false - type: public - returnType: boolean - setSessionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.waiting.CounterPartyFlowInfo$Builder - params: - value: - annotation: [] - type: String -net.corda.data.flow.state.waiting.SessionConfirmation: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.state.waiting.SessionConfirmation - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSessionIds: - annotations: [] - default: false - type: public - returnType: java.util.List - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getType: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.waiting.SessionConfirmationType - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.state.waiting.SessionConfirmation$Builder - params: - other: - annotation: [] - type: net.corda.data.flow.state.waiting.SessionConfirmation - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setSessionIds: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - setType: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.flow.state.waiting.SessionConfirmationType - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.flow.state.waiting.SessionConfirmation$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.waiting.SessionConfirmation - clearSessionIds: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.waiting.SessionConfirmation$Builder - clearType: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.waiting.SessionConfirmation$Builder - getSessionIds: - annotations: [] - default: false - type: public - returnType: java.util.List - getType: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.waiting.SessionConfirmationType - hasSessionIds: - annotations: [] - default: false - type: public - returnType: boolean - hasType: - annotations: [] - default: false - type: public - returnType: boolean - setSessionIds: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.waiting.SessionConfirmation$Builder - params: - value: - annotation: [] - type: java.util.List - setType: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.waiting.SessionConfirmation$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.state.waiting.SessionConfirmationType -net.corda.data.flow.state.waiting.SessionConfirmationType: - annotations: - - AvroGenerated - type: public final class - extends: java.lang.Enum - implements: - - org.apache.avro.generic.GenericEnumSymbol - interface: false - methods: - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - valueOf: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.state.waiting.SessionConfirmationType - params: {} - values: - annotations: [] - default: false - type: public static - returnType: "net.corda.data.flow.state.waiting.SessionConfirmationType[]" - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.flow.state.waiting.SessionData: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.state.waiting.SessionData - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSessionIds: - annotations: [] - default: false - type: public - returnType: java.util.List - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.state.waiting.SessionData$Builder - params: - other: - annotation: [] - type: net.corda.data.flow.state.waiting.SessionData - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setSessionIds: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.flow.state.waiting.SessionData$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.waiting.SessionData - clearSessionIds: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.waiting.SessionData$Builder - getSessionIds: - annotations: [] - default: false - type: public - returnType: java.util.List - hasSessionIds: - annotations: [] - default: false - type: public - returnType: boolean - setSessionIds: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.waiting.SessionData$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.flow.state.waiting.WaitingFor: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.state.waiting.WaitingFor - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getValue: - annotations: [] - default: false - type: public - returnType: Object - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.state.waiting.WaitingFor$Builder - params: - other: - annotation: [] - type: net.corda.data.flow.state.waiting.WaitingFor - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setValue: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Object - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.flow.state.waiting.WaitingFor$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.waiting.WaitingFor - clearValue: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.waiting.WaitingFor$Builder - getValue: - annotations: [] - default: false - type: public - returnType: Object - hasValue: - annotations: [] - default: false - type: public - returnType: boolean - setValue: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.waiting.WaitingFor$Builder - params: - value: - annotation: [] - type: Object -net.corda.data.flow.state.waiting.Wakeup: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.state.waiting.Wakeup - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.state.waiting.Wakeup$Builder - params: - other: - annotation: [] - type: net.corda.data.flow.state.waiting.Wakeup - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.flow.state.waiting.Wakeup$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.waiting.Wakeup -net.corda.data.flow.state.waiting.external.ExternalEventResponse: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.state.waiting.external.ExternalEventResponse - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getRequestId: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.flow.state.waiting.external.ExternalEventResponse$Builder - params: - other: - annotation: [] - type: net.corda.data.flow.state.waiting.external.ExternalEventResponse - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setRequestId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.flow.state.waiting.external.ExternalEventResponse$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.waiting.external.ExternalEventResponse - clearRequestId: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.waiting.external.ExternalEventResponse$Builder - getRequestId: - annotations: [] - default: false - type: public - returnType: String - hasRequestId: - annotations: [] - default: false - type: public - returnType: boolean - setRequestId: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.state.waiting.external.ExternalEventResponse$Builder - params: - value: - annotation: [] - type: String -net.corda.data.identity.HoldingIdentity: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.identity.HoldingIdentity - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getGroupId: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getX500Name: - annotations: [] - default: false - type: public - returnType: String - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.identity.HoldingIdentity$Builder - params: - other: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setGroupId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setX500Name: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.identity.HoldingIdentity$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - clearGroupId: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - clearX500Name: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - getGroupId: - annotations: [] - default: false - type: public - returnType: String - getX500Name: - annotations: [] - default: false - type: public - returnType: String - hasGroupId: - annotations: [] - default: false - type: public - returnType: boolean - hasX500Name: - annotations: [] - default: false - type: public - returnType: boolean - setGroupId: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - params: - value: - annotation: [] - type: String - setX500Name: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - params: - value: - annotation: [] - type: String -net.corda.data.ledger.persistence.FindSignedGroupParameters: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.persistence.FindSignedGroupParameters - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getHash: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.persistence.FindSignedGroupParameters$Builder - params: - other: - annotation: [] - type: net.corda.data.ledger.persistence.FindSignedGroupParameters - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setHash: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.ledger.persistence.FindSignedGroupParameters$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.FindSignedGroupParameters - clearHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.FindSignedGroupParameters$Builder - getHash: - annotations: [] - default: false - type: public - returnType: String - hasHash: - annotations: [] - default: false - type: public - returnType: boolean - setHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.FindSignedGroupParameters$Builder - params: - value: - annotation: [] - type: String -net.corda.data.ledger.persistence.FindSignedGroupParametersResponse: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.persistence.FindSignedGroupParametersResponse - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getResults: - annotations: [] - default: false - type: public - returnType: java.util.List - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.persistence.FindSignedGroupParametersResponse$Builder - params: - other: - annotation: [] - type: net.corda.data.ledger.persistence.FindSignedGroupParametersResponse - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setResults: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.ledger.persistence.FindSignedGroupParametersResponse$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.FindSignedGroupParametersResponse - clearResults: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.FindSignedGroupParametersResponse$Builder - getResults: - annotations: [] - default: false - type: public - returnType: java.util.List - hasResults: - annotations: [] - default: false - type: public - returnType: boolean - setResults: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.FindSignedGroupParametersResponse$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.ledger.persistence.FindSignedLedgerTransaction: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.persistence.FindSignedLedgerTransaction - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getId: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getTransactionStatus: - annotations: [] - default: false - type: public - returnType: String - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.persistence.FindSignedLedgerTransaction$Builder - params: - other: - annotation: [] - type: net.corda.data.ledger.persistence.FindSignedLedgerTransaction - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setTransactionStatus: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.ledger.persistence.FindSignedLedgerTransaction$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.FindSignedLedgerTransaction - clearId: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.FindSignedLedgerTransaction$Builder - clearTransactionStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.FindSignedLedgerTransaction$Builder - getId: - annotations: [] - default: false - type: public - returnType: String - getTransactionStatus: - annotations: [] - default: false - type: public - returnType: String - hasId: - annotations: [] - default: false - type: public - returnType: boolean - hasTransactionStatus: - annotations: [] - default: false - type: public - returnType: boolean - setId: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.FindSignedLedgerTransaction$Builder - params: - value: - annotation: [] - type: String - setTransactionStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.FindSignedLedgerTransaction$Builder - params: - value: - annotation: [] - type: String -net.corda.data.ledger.persistence.FindTransaction: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.persistence.FindTransaction - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getId: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getTransactionStatus: - annotations: [] - default: false - type: public - returnType: String - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.persistence.FindTransaction$Builder - params: - other: - annotation: [] - type: net.corda.data.ledger.persistence.FindTransaction - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setTransactionStatus: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.ledger.persistence.FindTransaction$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.FindTransaction - clearId: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.FindTransaction$Builder - clearTransactionStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.FindTransaction$Builder - getId: - annotations: [] - default: false - type: public - returnType: String - getTransactionStatus: - annotations: [] - default: false - type: public - returnType: String - hasId: - annotations: [] - default: false - type: public - returnType: boolean - hasTransactionStatus: - annotations: [] - default: false - type: public - returnType: boolean - setId: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.FindTransaction$Builder - params: - value: - annotation: [] - type: String - setTransactionStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.FindTransaction$Builder - params: - value: - annotation: [] - type: String -net.corda.data.ledger.persistence.FindTransactionIdsAndStatuses: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.persistence.FindTransactionIdsAndStatuses - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getIds: - annotations: [] - default: false - type: public - returnType: java.util.List - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.persistence.FindTransactionIdsAndStatuses$Builder - params: - other: - annotation: [] - type: net.corda.data.ledger.persistence.FindTransactionIdsAndStatuses - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setIds: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.ledger.persistence.FindTransactionIdsAndStatuses$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.FindTransactionIdsAndStatuses - clearIds: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.FindTransactionIdsAndStatuses$Builder - getIds: - annotations: [] - default: false - type: public - returnType: java.util.List - hasIds: - annotations: [] - default: false - type: public - returnType: boolean - setIds: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.FindTransactionIdsAndStatuses$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.ledger.persistence.FindUnconsumedStatesByExactType: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.persistence.FindUnconsumedStatesByExactType - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getStateClassName: - annotations: [] - default: false - type: public - returnType: String - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.persistence.FindUnconsumedStatesByExactType$Builder - params: - other: - annotation: [] - type: net.corda.data.ledger.persistence.FindUnconsumedStatesByExactType - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setStateClassName: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.ledger.persistence.FindUnconsumedStatesByExactType$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.FindUnconsumedStatesByExactType - clearStateClassName: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.FindUnconsumedStatesByExactType$Builder - getStateClassName: - annotations: [] - default: false - type: public - returnType: String - hasStateClassName: - annotations: [] - default: false - type: public - returnType: boolean - setStateClassName: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.FindUnconsumedStatesByExactType$Builder - params: - value: - annotation: [] - type: String -net.corda.data.ledger.persistence.FindUnconsumedStatesByType: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.persistence.FindUnconsumedStatesByType - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getStateClassName: - annotations: [] - default: false - type: public - returnType: String - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.persistence.FindUnconsumedStatesByType$Builder - params: - other: - annotation: [] - type: net.corda.data.ledger.persistence.FindUnconsumedStatesByType - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setStateClassName: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.ledger.persistence.FindUnconsumedStatesByType$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.FindUnconsumedStatesByType - clearStateClassName: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.FindUnconsumedStatesByType$Builder - getStateClassName: - annotations: [] - default: false - type: public - returnType: String - hasStateClassName: - annotations: [] - default: false - type: public - returnType: boolean - setStateClassName: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.FindUnconsumedStatesByType$Builder - params: - value: - annotation: [] - type: String -net.corda.data.ledger.persistence.LedgerPersistenceRequest: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.persistence.LedgerPersistenceRequest - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getFlowExternalEventContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventContext - getHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getLedgerType: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.LedgerTypes - getRequest: - annotations: [] - default: false - type: public - returnType: Object - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.persistence.LedgerPersistenceRequest$Builder - params: - other: - annotation: [] - type: net.corda.data.ledger.persistence.LedgerPersistenceRequest - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setFlowExternalEventContext: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.flow.event.external.ExternalEventContext - setHoldingIdentity: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setLedgerType: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.ledger.persistence.LedgerTypes - setRequest: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Object - setTimestamp: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.ledger.persistence.LedgerPersistenceRequest$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.LedgerPersistenceRequest - clearFlowExternalEventContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.LedgerPersistenceRequest$Builder - clearHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.LedgerPersistenceRequest$Builder - clearLedgerType: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.LedgerPersistenceRequest$Builder - clearRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.LedgerPersistenceRequest$Builder - clearTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.LedgerPersistenceRequest$Builder - getFlowExternalEventContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventContext - getFlowExternalEventContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventContext$Builder - getHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getHoldingIdentityBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - getLedgerType: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.LedgerTypes - getRequest: - annotations: [] - default: false - type: public - returnType: Object - getTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - hasFlowExternalEventContext: - annotations: [] - default: false - type: public - returnType: boolean - hasFlowExternalEventContextBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasHoldingIdentity: - annotations: [] - default: false - type: public - returnType: boolean - hasHoldingIdentityBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasLedgerType: - annotations: [] - default: false - type: public - returnType: boolean - hasRequest: - annotations: [] - default: false - type: public - returnType: boolean - hasTimestamp: - annotations: [] - default: false - type: public - returnType: boolean - setFlowExternalEventContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.LedgerPersistenceRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.event.external.ExternalEventContext - setFlowExternalEventContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.LedgerPersistenceRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.event.external.ExternalEventContext$Builder - setHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.LedgerPersistenceRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setHoldingIdentityBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.LedgerPersistenceRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder - setLedgerType: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.LedgerPersistenceRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.ledger.persistence.LedgerTypes - setRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.LedgerPersistenceRequest$Builder - params: - value: - annotation: [] - type: Object - setTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.LedgerPersistenceRequest$Builder - params: - value: - annotation: [] - type: java.time.Instant -net.corda.data.ledger.persistence.LedgerTypes: - annotations: - - AvroGenerated - type: public final class - extends: java.lang.Enum - implements: - - org.apache.avro.generic.GenericEnumSymbol - interface: false - methods: - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - valueOf: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.persistence.LedgerTypes - params: {} - values: - annotations: [] - default: false - type: public static - returnType: "net.corda.data.ledger.persistence.LedgerTypes[]" - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.ledger.persistence.PersistSignedGroupParametersIfDoNotExist: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.persistence.PersistSignedGroupParametersIfDoNotExist - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSignedGroupParameters: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedGroupParameters - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.persistence.PersistSignedGroupParametersIfDoNotExist$Builder - params: - other: - annotation: [] - type: net.corda.data.ledger.persistence.PersistSignedGroupParametersIfDoNotExist - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setSignedGroupParameters: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.SignedGroupParameters - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.ledger.persistence.PersistSignedGroupParametersIfDoNotExist$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.PersistSignedGroupParametersIfDoNotExist - clearSignedGroupParameters: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.PersistSignedGroupParametersIfDoNotExist$Builder - getSignedGroupParameters: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedGroupParameters - getSignedGroupParametersBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedGroupParameters$Builder - hasSignedGroupParameters: - annotations: [] - default: false - type: public - returnType: boolean - hasSignedGroupParametersBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setSignedGroupParameters: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.PersistSignedGroupParametersIfDoNotExist$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.SignedGroupParameters - setSignedGroupParametersBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.PersistSignedGroupParametersIfDoNotExist$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.SignedGroupParameters$Builder -net.corda.data.ledger.persistence.PersistTransaction: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.persistence.PersistTransaction - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getStatus: - annotations: [] - default: false - type: public - returnType: String - getTransaction: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getVisibleStatesIndexes: - annotations: [] - default: false - type: public - returnType: java.util.List - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.persistence.PersistTransaction$Builder - params: - other: - annotation: [] - type: net.corda.data.ledger.persistence.PersistTransaction - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setStatus: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setTransaction: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setVisibleStatesIndexes: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.ledger.persistence.PersistTransaction$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.PersistTransaction - clearStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.PersistTransaction$Builder - clearTransaction: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.PersistTransaction$Builder - clearVisibleStatesIndexes: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.PersistTransaction$Builder - getStatus: - annotations: [] - default: false - type: public - returnType: String - getTransaction: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getVisibleStatesIndexes: - annotations: [] - default: false - type: public - returnType: java.util.List - hasStatus: - annotations: [] - default: false - type: public - returnType: boolean - hasTransaction: - annotations: [] - default: false - type: public - returnType: boolean - hasVisibleStatesIndexes: - annotations: [] - default: false - type: public - returnType: boolean - setStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.PersistTransaction$Builder - params: - value: - annotation: [] - type: String - setTransaction: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.PersistTransaction$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setVisibleStatesIndexes: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.PersistTransaction$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.ledger.persistence.PersistTransactionIfDoesNotExist: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.persistence.PersistTransactionIfDoesNotExist - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getStatus: - annotations: [] - default: false - type: public - returnType: String - getTransaction: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.persistence.PersistTransactionIfDoesNotExist$Builder - params: - other: - annotation: [] - type: net.corda.data.ledger.persistence.PersistTransactionIfDoesNotExist - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setStatus: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setTransaction: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.ledger.persistence.PersistTransactionIfDoesNotExist$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.PersistTransactionIfDoesNotExist - clearStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.PersistTransactionIfDoesNotExist$Builder - clearTransaction: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.PersistTransactionIfDoesNotExist$Builder - getStatus: - annotations: [] - default: false - type: public - returnType: String - getTransaction: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - hasStatus: - annotations: [] - default: false - type: public - returnType: boolean - hasTransaction: - annotations: [] - default: false - type: public - returnType: boolean - setStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.PersistTransactionIfDoesNotExist$Builder - params: - value: - annotation: [] - type: String - setTransaction: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.PersistTransactionIfDoesNotExist$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer -net.corda.data.ledger.persistence.ResolveStateRefs: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.persistence.ResolveStateRefs - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getStateRefs: - annotations: [] - default: false - type: public - returnType: java.util.List - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.persistence.ResolveStateRefs$Builder - params: - other: - annotation: [] - type: net.corda.data.ledger.persistence.ResolveStateRefs - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setStateRefs: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.ledger.persistence.ResolveStateRefs$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.ResolveStateRefs - clearStateRefs: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.ResolveStateRefs$Builder - getStateRefs: - annotations: [] - default: false - type: public - returnType: java.util.List - hasStateRefs: - annotations: [] - default: false - type: public - returnType: boolean - setStateRefs: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.ResolveStateRefs$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.ledger.persistence.UpdateTransactionStatus: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.persistence.UpdateTransactionStatus - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getId: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getTransactionStatus: - annotations: [] - default: false - type: public - returnType: String - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.persistence.UpdateTransactionStatus$Builder - params: - other: - annotation: [] - type: net.corda.data.ledger.persistence.UpdateTransactionStatus - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setTransactionStatus: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.ledger.persistence.UpdateTransactionStatus$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.UpdateTransactionStatus - clearId: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.UpdateTransactionStatus$Builder - clearTransactionStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.UpdateTransactionStatus$Builder - getId: - annotations: [] - default: false - type: public - returnType: String - getTransactionStatus: - annotations: [] - default: false - type: public - returnType: String - hasId: - annotations: [] - default: false - type: public - returnType: boolean - hasTransactionStatus: - annotations: [] - default: false - type: public - returnType: boolean - setId: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.UpdateTransactionStatus$Builder - params: - value: - annotation: [] - type: String - setTransactionStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.UpdateTransactionStatus$Builder - params: - value: - annotation: [] - type: String -net.corda.data.ledger.persistence.UtxoTransactionOutput: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.persistence.UtxoTransactionOutput - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getData: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getIndex: - annotations: [] - default: false - type: public - returnType: int - getInfo: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getTransactionId: - annotations: [] - default: false - type: public - returnType: String - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.persistence.UtxoTransactionOutput$Builder - params: - other: - annotation: [] - type: net.corda.data.ledger.persistence.UtxoTransactionOutput - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setData: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setIndex: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - setInfo: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setTransactionId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.ledger.persistence.UtxoTransactionOutput$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.UtxoTransactionOutput - clearData: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.UtxoTransactionOutput$Builder - clearIndex: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.UtxoTransactionOutput$Builder - clearInfo: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.UtxoTransactionOutput$Builder - clearTransactionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.UtxoTransactionOutput$Builder - getData: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getIndex: - annotations: [] - default: false - type: public - returnType: int - getInfo: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getTransactionId: - annotations: [] - default: false - type: public - returnType: String - hasData: - annotations: [] - default: false - type: public - returnType: boolean - hasIndex: - annotations: [] - default: false - type: public - returnType: boolean - hasInfo: - annotations: [] - default: false - type: public - returnType: boolean - hasTransactionId: - annotations: [] - default: false - type: public - returnType: boolean - setData: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.UtxoTransactionOutput$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setIndex: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.UtxoTransactionOutput$Builder - params: - value: - annotation: [] - type: int - setInfo: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.UtxoTransactionOutput$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setTransactionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.UtxoTransactionOutput$Builder - params: - value: - annotation: [] - type: String -net.corda.data.ledger.persistence.UtxoTransactionOutputs: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.persistence.UtxoTransactionOutputs - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getTransactionOutputs: - annotations: [] - default: false - type: public - returnType: java.util.List - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.persistence.UtxoTransactionOutputs$Builder - params: - other: - annotation: [] - type: net.corda.data.ledger.persistence.UtxoTransactionOutputs - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setTransactionOutputs: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.ledger.persistence.UtxoTransactionOutputs$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.UtxoTransactionOutputs - clearTransactionOutputs: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.UtxoTransactionOutputs$Builder - getTransactionOutputs: - annotations: [] - default: false - type: public - returnType: java.util.List - hasTransactionOutputs: - annotations: [] - default: false - type: public - returnType: boolean - setTransactionOutputs: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.persistence.UtxoTransactionOutputs$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.ledger.utxo.StateRef: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.utxo.StateRef - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getIndex: - annotations: [] - default: false - type: public - returnType: int - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getTransactionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.SecureHash - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.utxo.StateRef$Builder - params: - other: - annotation: [] - type: net.corda.data.ledger.utxo.StateRef - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setIndex: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - setTransactionId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.crypto.SecureHash - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.ledger.utxo.StateRef$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.StateRef - clearIndex: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.StateRef$Builder - clearTransactionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.StateRef$Builder - getIndex: - annotations: [] - default: false - type: public - returnType: int - getTransactionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.SecureHash - getTransactionIdBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.SecureHash$Builder - hasIndex: - annotations: [] - default: false - type: public - returnType: boolean - hasTransactionId: - annotations: [] - default: false - type: public - returnType: boolean - hasTransactionIdBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setIndex: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.StateRef$Builder - params: - value: - annotation: [] - type: int - setTransactionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.StateRef$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.SecureHash - setTransactionIdBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.StateRef$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.SecureHash$Builder -net.corda.data.ledger.utxo.token.selection.data.Token: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.utxo.token.selection.data.Token - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getAmount: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenAmount - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getOwnerHash: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getStateRef: - annotations: [] - default: false - type: public - returnType: String - getTag: - annotations: [] - default: false - type: public - returnType: String - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.utxo.token.selection.data.Token$Builder - params: - other: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.data.Token - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setAmount: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.data.TokenAmount - setOwnerHash: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setStateRef: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setTag: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.ledger.utxo.token.selection.data.Token$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.Token - clearAmount: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.Token$Builder - clearOwnerHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.Token$Builder - clearStateRef: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.Token$Builder - clearTag: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.Token$Builder - getAmount: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenAmount - getAmountBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenAmount$Builder - getOwnerHash: - annotations: [] - default: false - type: public - returnType: String - getStateRef: - annotations: [] - default: false - type: public - returnType: String - getTag: - annotations: [] - default: false - type: public - returnType: String - hasAmount: - annotations: [] - default: false - type: public - returnType: boolean - hasAmountBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasOwnerHash: - annotations: [] - default: false - type: public - returnType: boolean - hasStateRef: - annotations: [] - default: false - type: public - returnType: boolean - hasTag: - annotations: [] - default: false - type: public - returnType: boolean - setAmount: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.Token$Builder - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.data.TokenAmount - setAmountBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.Token$Builder - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.data.TokenAmount$Builder - setOwnerHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.Token$Builder - params: - value: - annotation: [] - type: String - setStateRef: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.Token$Builder - params: - value: - annotation: [] - type: String - setTag: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.Token$Builder - params: - value: - annotation: [] - type: String -net.corda.data.ledger.utxo.token.selection.data.TokenAmount: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenAmount - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getScale: - annotations: [] - default: false - type: public - returnType: int - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getUnscaledValue: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenAmount$Builder - params: - other: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.data.TokenAmount - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setScale: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - setUnscaledValue: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.ledger.utxo.token.selection.data.TokenAmount$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenAmount - clearScale: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenAmount$Builder - clearUnscaledValue: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenAmount$Builder - getScale: - annotations: [] - default: false - type: public - returnType: int - getUnscaledValue: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - hasScale: - annotations: [] - default: false - type: public - returnType: boolean - hasUnscaledValue: - annotations: [] - default: false - type: public - returnType: boolean - setScale: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenAmount$Builder - params: - value: - annotation: [] - type: int - setUnscaledValue: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenAmount$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer -net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQuery: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQuery - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getOwnerHash: - annotations: [] - default: false - type: public - returnType: String - getPoolKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey - getRequestContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventContext - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getTagRegex: - annotations: [] - default: false - type: public - returnType: String - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQuery$Builder - params: - other: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQuery - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setOwnerHash: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setPoolKey: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey - setRequestContext: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.flow.event.external.ExternalEventContext - setTagRegex: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQuery$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQuery - clearOwnerHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQuery$Builder - clearPoolKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQuery$Builder - clearRequestContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQuery$Builder - clearTagRegex: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQuery$Builder - getOwnerHash: - annotations: [] - default: false - type: public - returnType: String - getPoolKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey - getPoolKeyBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder - getRequestContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventContext - getRequestContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventContext$Builder - getTagRegex: - annotations: [] - default: false - type: public - returnType: String - hasOwnerHash: - annotations: [] - default: false - type: public - returnType: boolean - hasPoolKey: - annotations: [] - default: false - type: public - returnType: boolean - hasPoolKeyBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasRequestContext: - annotations: [] - default: false - type: public - returnType: boolean - hasRequestContextBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasTagRegex: - annotations: [] - default: false - type: public - returnType: boolean - setOwnerHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQuery$Builder - params: - value: - annotation: [] - type: String - setPoolKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQuery$Builder - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey - setPoolKeyBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQuery$Builder - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder - setRequestContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQuery$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.event.external.ExternalEventContext - setRequestContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQuery$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.event.external.ExternalEventContext$Builder - setTagRegex: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQuery$Builder - params: - value: - annotation: [] - type: String -net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQueryResult: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQueryResult - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getAvailableBalance: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenAmount - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getPoolKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getTotalBalance: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenAmount - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQueryResult$Builder - params: - other: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQueryResult - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setAvailableBalance: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.data.TokenAmount - setPoolKey: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey - setTotalBalance: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.data.TokenAmount - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQueryResult$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQueryResult - clearAvailableBalance: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQueryResult$Builder - clearPoolKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQueryResult$Builder - clearTotalBalance: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQueryResult$Builder - getAvailableBalance: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenAmount - getAvailableBalanceBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenAmount$Builder - getPoolKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey - getPoolKeyBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder - getTotalBalance: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenAmount - getTotalBalanceBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenAmount$Builder - hasAvailableBalance: - annotations: [] - default: false - type: public - returnType: boolean - hasAvailableBalanceBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasPoolKey: - annotations: [] - default: false - type: public - returnType: boolean - hasPoolKeyBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasTotalBalance: - annotations: [] - default: false - type: public - returnType: boolean - hasTotalBalanceBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setAvailableBalance: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQueryResult$Builder - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.data.TokenAmount - setAvailableBalanceBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQueryResult$Builder - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.data.TokenAmount$Builder - setPoolKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQueryResult$Builder - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey - setPoolKeyBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQueryResult$Builder - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder - setTotalBalance: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQueryResult$Builder - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.data.TokenAmount - setTotalBalanceBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenBalanceQueryResult$Builder - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.data.TokenAmount$Builder -net.corda.data.ledger.utxo.token.selection.data.TokenCachedSyncCheck: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenCachedSyncCheck - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getPoolKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getTokenRefs: - annotations: [] - default: false - type: public - returnType: java.util.List - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenCachedSyncCheck$Builder - params: - other: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.data.TokenCachedSyncCheck - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setPoolKey: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey - setTokenRefs: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.ledger.utxo.token.selection.data.TokenCachedSyncCheck$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenCachedSyncCheck - clearPoolKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenCachedSyncCheck$Builder - clearTokenRefs: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenCachedSyncCheck$Builder - getPoolKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey - getPoolKeyBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder - getTokenRefs: - annotations: [] - default: false - type: public - returnType: java.util.List - hasPoolKey: - annotations: [] - default: false - type: public - returnType: boolean - hasPoolKeyBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasTokenRefs: - annotations: [] - default: false - type: public - returnType: boolean - setPoolKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenCachedSyncCheck$Builder - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey - setPoolKeyBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenCachedSyncCheck$Builder - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder - setTokenRefs: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenCachedSyncCheck$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.ledger.utxo.token.selection.data.TokenClaim: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaim - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClaimId: - annotations: [] - default: false - type: public - returnType: String - getClaimTimestamp: - annotations: [] - default: false - type: public - returnType: Long - getClaimedTokenStateRefs: - annotations: [] - default: false - type: public - returnType: java.util.List - getClaimedTokens: - annotations: [] - default: false - type: public - returnType: java.util.List - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaim$Builder - params: - other: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.data.TokenClaim - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setClaimId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setClaimTimestamp: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Long - setClaimedTokenStateRefs: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - setClaimedTokens: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.ledger.utxo.token.selection.data.TokenClaim$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaim - clearClaimId: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaim$Builder - clearClaimTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaim$Builder - clearClaimedTokenStateRefs: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaim$Builder - clearClaimedTokens: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaim$Builder - getClaimId: - annotations: [] - default: false - type: public - returnType: String - getClaimTimestamp: - annotations: [] - default: false - type: public - returnType: Long - getClaimedTokenStateRefs: - annotations: [] - default: false - type: public - returnType: java.util.List - getClaimedTokens: - annotations: [] - default: false - type: public - returnType: java.util.List - hasClaimId: - annotations: [] - default: false - type: public - returnType: boolean - hasClaimTimestamp: - annotations: [] - default: false - type: public - returnType: boolean - hasClaimedTokenStateRefs: - annotations: [] - default: false - type: public - returnType: boolean - hasClaimedTokens: - annotations: [] - default: false - type: public - returnType: boolean - setClaimId: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaim$Builder - params: - value: - annotation: [] - type: String - setClaimTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaim$Builder - params: - value: - annotation: [] - type: Long - setClaimedTokenStateRefs: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaim$Builder - params: - value: - annotation: [] - type: java.util.List - setClaimedTokens: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaim$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.ledger.utxo.token.selection.data.TokenClaimQuery: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQuery - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getOwnerHash: - annotations: [] - default: false - type: public - returnType: String - getPoolKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey - getRequestContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventContext - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getTagRegex: - annotations: [] - default: false - type: public - returnType: String - getTargetAmount: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenAmount - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQuery$Builder - params: - other: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQuery - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setOwnerHash: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setPoolKey: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey - setRequestContext: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.flow.event.external.ExternalEventContext - setTagRegex: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setTargetAmount: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.data.TokenAmount - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.ledger.utxo.token.selection.data.TokenClaimQuery$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQuery - clearOwnerHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQuery$Builder - clearPoolKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQuery$Builder - clearRequestContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQuery$Builder - clearTagRegex: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQuery$Builder - clearTargetAmount: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQuery$Builder - getOwnerHash: - annotations: [] - default: false - type: public - returnType: String - getPoolKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey - getPoolKeyBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder - getRequestContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventContext - getRequestContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventContext$Builder - getTagRegex: - annotations: [] - default: false - type: public - returnType: String - getTargetAmount: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenAmount - getTargetAmountBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenAmount$Builder - hasOwnerHash: - annotations: [] - default: false - type: public - returnType: boolean - hasPoolKey: - annotations: [] - default: false - type: public - returnType: boolean - hasPoolKeyBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasRequestContext: - annotations: [] - default: false - type: public - returnType: boolean - hasRequestContextBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasTagRegex: - annotations: [] - default: false - type: public - returnType: boolean - hasTargetAmount: - annotations: [] - default: false - type: public - returnType: boolean - hasTargetAmountBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setOwnerHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQuery$Builder - params: - value: - annotation: [] - type: String - setPoolKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQuery$Builder - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey - setPoolKeyBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQuery$Builder - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder - setRequestContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQuery$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.event.external.ExternalEventContext - setRequestContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQuery$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.event.external.ExternalEventContext$Builder - setTagRegex: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQuery$Builder - params: - value: - annotation: [] - type: String - setTargetAmount: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQuery$Builder - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.data.TokenAmount - setTargetAmountBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQuery$Builder - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.data.TokenAmount$Builder -net.corda.data.ledger.utxo.token.selection.data.TokenClaimQueryResult: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQueryResult - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClaimId: - annotations: [] - default: false - type: public - returnType: String - getClaimedTokens: - annotations: [] - default: false - type: public - returnType: java.util.List - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getPoolKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey - getResultType: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimResultStatus - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQueryResult$Builder - params: - other: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQueryResult - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setClaimId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setClaimedTokens: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - setPoolKey: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey - setResultType: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.data.TokenClaimResultStatus - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.ledger.utxo.token.selection.data.TokenClaimQueryResult$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQueryResult - clearClaimId: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQueryResult$Builder - clearClaimedTokens: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQueryResult$Builder - clearPoolKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQueryResult$Builder - clearResultType: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQueryResult$Builder - getClaimId: - annotations: [] - default: false - type: public - returnType: String - getClaimedTokens: - annotations: [] - default: false - type: public - returnType: java.util.List - getPoolKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey - getPoolKeyBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder - getResultType: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimResultStatus - hasClaimId: - annotations: [] - default: false - type: public - returnType: boolean - hasClaimedTokens: - annotations: [] - default: false - type: public - returnType: boolean - hasPoolKey: - annotations: [] - default: false - type: public - returnType: boolean - hasPoolKeyBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasResultType: - annotations: [] - default: false - type: public - returnType: boolean - setClaimId: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQueryResult$Builder - params: - value: - annotation: [] - type: String - setClaimedTokens: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQueryResult$Builder - params: - value: - annotation: [] - type: java.util.List - setPoolKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQueryResult$Builder - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey - setPoolKeyBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQueryResult$Builder - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder - setResultType: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimQueryResult$Builder - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.data.TokenClaimResultStatus -net.corda.data.ledger.utxo.token.selection.data.TokenClaimRelease: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimRelease - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClaimId: - annotations: [] - default: false - type: public - returnType: String - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getPoolKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey - getRequestContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventContext - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getUsedTokenStateRefs: - annotations: [] - default: false - type: public - returnType: java.util.List - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimRelease$Builder - params: - other: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.data.TokenClaimRelease - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setClaimId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setPoolKey: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey - setRequestContext: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.flow.event.external.ExternalEventContext - setUsedTokenStateRefs: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.ledger.utxo.token.selection.data.TokenClaimRelease$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimRelease - clearClaimId: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimRelease$Builder - clearPoolKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimRelease$Builder - clearRequestContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimRelease$Builder - clearUsedTokenStateRefs: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimRelease$Builder - getClaimId: - annotations: [] - default: false - type: public - returnType: String - getPoolKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey - getPoolKeyBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder - getRequestContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventContext - getRequestContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventContext$Builder - getUsedTokenStateRefs: - annotations: [] - default: false - type: public - returnType: java.util.List - hasClaimId: - annotations: [] - default: false - type: public - returnType: boolean - hasPoolKey: - annotations: [] - default: false - type: public - returnType: boolean - hasPoolKeyBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasRequestContext: - annotations: [] - default: false - type: public - returnType: boolean - hasRequestContextBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasUsedTokenStateRefs: - annotations: [] - default: false - type: public - returnType: boolean - setClaimId: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimRelease$Builder - params: - value: - annotation: [] - type: String - setPoolKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimRelease$Builder - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey - setPoolKeyBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimRelease$Builder - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder - setRequestContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimRelease$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.event.external.ExternalEventContext - setRequestContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimRelease$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.event.external.ExternalEventContext$Builder - setUsedTokenStateRefs: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimRelease$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.ledger.utxo.token.selection.data.TokenClaimReleaseAck: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimReleaseAck - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimReleaseAck$Builder - params: - other: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.data.TokenClaimReleaseAck - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.ledger.utxo.token.selection.data.TokenClaimReleaseAck$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimReleaseAck -net.corda.data.ledger.utxo.token.selection.data.TokenClaimResultStatus: - annotations: - - AvroGenerated - type: public final class - extends: java.lang.Enum - implements: - - org.apache.avro.generic.GenericEnumSymbol - interface: false - methods: - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - valueOf: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenClaimResultStatus - params: {} - values: - annotations: [] - default: false - type: public static - returnType: "net.corda.data.ledger.utxo.token.selection.data.TokenClaimResultStatus[]" - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.ledger.utxo.token.selection.data.TokenForceClaimRelease: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenForceClaimRelease - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClaimId: - annotations: [] - default: false - type: public - returnType: String - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getPoolKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenForceClaimRelease$Builder - params: - other: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.data.TokenForceClaimRelease - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setClaimId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setPoolKey: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.ledger.utxo.token.selection.data.TokenForceClaimRelease$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenForceClaimRelease - clearClaimId: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenForceClaimRelease$Builder - clearPoolKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenForceClaimRelease$Builder - getClaimId: - annotations: [] - default: false - type: public - returnType: String - getPoolKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey - getPoolKeyBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder - hasClaimId: - annotations: [] - default: false - type: public - returnType: boolean - hasPoolKey: - annotations: [] - default: false - type: public - returnType: boolean - hasPoolKeyBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setClaimId: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenForceClaimRelease$Builder - params: - value: - annotation: [] - type: String - setPoolKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenForceClaimRelease$Builder - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey - setPoolKeyBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenForceClaimRelease$Builder - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder -net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncRequest: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncRequest - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncRequest$Builder - params: - other: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncRequest - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncRequest$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncRequest -net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncState: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncState - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getBlocksCompleted: - annotations: [] - default: false - type: public - returnType: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getLastBlockCompletedTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getNextBlockStartOffset: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getRecordsCompleted: - annotations: [] - default: false - type: public - returnType: int - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getStartedTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncState$Builder - params: - other: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncState - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setBlocksCompleted: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - setLastBlockCompletedTimestamp: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - setNextBlockStartOffset: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - setRecordsCompleted: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - setStartedTimestamp: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncState$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncState - clearBlocksCompleted: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncState$Builder - clearLastBlockCompletedTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncState$Builder - clearNextBlockStartOffset: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncState$Builder - clearRecordsCompleted: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncState$Builder - clearStartedTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncState$Builder - getBlocksCompleted: - annotations: [] - default: false - type: public - returnType: int - getLastBlockCompletedTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getNextBlockStartOffset: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getRecordsCompleted: - annotations: [] - default: false - type: public - returnType: int - getStartedTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - hasBlocksCompleted: - annotations: [] - default: false - type: public - returnType: boolean - hasLastBlockCompletedTimestamp: - annotations: [] - default: false - type: public - returnType: boolean - hasNextBlockStartOffset: - annotations: [] - default: false - type: public - returnType: boolean - hasRecordsCompleted: - annotations: [] - default: false - type: public - returnType: boolean - hasStartedTimestamp: - annotations: [] - default: false - type: public - returnType: boolean - setBlocksCompleted: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncState$Builder - params: - value: - annotation: [] - type: int - setLastBlockCompletedTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncState$Builder - params: - value: - annotation: [] - type: java.time.Instant - setNextBlockStartOffset: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncState$Builder - params: - value: - annotation: [] - type: java.time.Instant - setRecordsCompleted: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncState$Builder - params: - value: - annotation: [] - type: int - setStartedTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncState$Builder - params: - value: - annotation: [] - type: java.time.Instant -net.corda.data.ledger.utxo.token.selection.data.TokenLedgerChange: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenLedgerChange - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConsumedTokens: - annotations: [] - default: false - type: public - returnType: java.util.List - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getPoolKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey - getProducedTokens: - annotations: [] - default: false - type: public - returnType: java.util.List - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenLedgerChange$Builder - params: - other: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.data.TokenLedgerChange - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setConsumedTokens: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - setPoolKey: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey - setProducedTokens: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.ledger.utxo.token.selection.data.TokenLedgerChange$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenLedgerChange - clearConsumedTokens: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenLedgerChange$Builder - clearPoolKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenLedgerChange$Builder - clearProducedTokens: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenLedgerChange$Builder - getConsumedTokens: - annotations: [] - default: false - type: public - returnType: java.util.List - getPoolKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey - getPoolKeyBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder - getProducedTokens: - annotations: [] - default: false - type: public - returnType: java.util.List - hasConsumedTokens: - annotations: [] - default: false - type: public - returnType: boolean - hasPoolKey: - annotations: [] - default: false - type: public - returnType: boolean - hasPoolKeyBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasProducedTokens: - annotations: [] - default: false - type: public - returnType: boolean - setConsumedTokens: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenLedgerChange$Builder - params: - value: - annotation: [] - type: java.util.List - setPoolKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenLedgerChange$Builder - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey - setPoolKeyBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenLedgerChange$Builder - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder - setProducedTokens: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenLedgerChange$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.ledger.utxo.token.selection.data.TokenPoolPeriodicSyncState: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenPoolPeriodicSyncState - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getNextBlockStartOffset: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getPoolKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenPoolPeriodicSyncState$Builder - params: - other: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.data.TokenPoolPeriodicSyncState - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setNextBlockStartOffset: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - setPoolKey: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.ledger.utxo.token.selection.data.TokenPoolPeriodicSyncState$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenPoolPeriodicSyncState - clearNextBlockStartOffset: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenPoolPeriodicSyncState$Builder - clearPoolKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenPoolPeriodicSyncState$Builder - getNextBlockStartOffset: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getPoolKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey - getPoolKeyBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder - hasNextBlockStartOffset: - annotations: [] - default: false - type: public - returnType: boolean - hasPoolKey: - annotations: [] - default: false - type: public - returnType: boolean - hasPoolKeyBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setNextBlockStartOffset: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenPoolPeriodicSyncState$Builder - params: - value: - annotation: [] - type: java.time.Instant - setPoolKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenPoolPeriodicSyncState$Builder - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey - setPoolKeyBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenPoolPeriodicSyncState$Builder - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder -net.corda.data.ledger.utxo.token.selection.data.TokenSyncWakeUp: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenSyncWakeUp - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenSyncWakeUp$Builder - params: - other: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.data.TokenSyncWakeUp - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.ledger.utxo.token.selection.data.TokenSyncWakeUp$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenSyncWakeUp -net.corda.data.ledger.utxo.token.selection.data.TokenUnspentSyncCheck: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenUnspentSyncCheck - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getTokenRefs: - annotations: [] - default: false - type: public - returnType: java.util.List - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenUnspentSyncCheck$Builder - params: - other: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.data.TokenUnspentSyncCheck - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setTokenRefs: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.ledger.utxo.token.selection.data.TokenUnspentSyncCheck$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenUnspentSyncCheck - clearTokenRefs: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenUnspentSyncCheck$Builder - getTokenRefs: - annotations: [] - default: false - type: public - returnType: java.util.List - hasTokenRefs: - annotations: [] - default: false - type: public - returnType: boolean - setTokenRefs: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenUnspentSyncCheck$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.ledger.utxo.token.selection.event.TokenPoolCacheEvent: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.utxo.token.selection.event.TokenPoolCacheEvent - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getPayload: - annotations: [] - default: false - type: public - returnType: Object - getPoolKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.utxo.token.selection.event.TokenPoolCacheEvent$Builder - params: - other: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.event.TokenPoolCacheEvent - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setPayload: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Object - setPoolKey: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.ledger.utxo.token.selection.event.TokenPoolCacheEvent$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.event.TokenPoolCacheEvent - clearPayload: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.event.TokenPoolCacheEvent$Builder - clearPoolKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.event.TokenPoolCacheEvent$Builder - getPayload: - annotations: [] - default: false - type: public - returnType: Object - getPoolKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey - getPoolKeyBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder - hasPayload: - annotations: [] - default: false - type: public - returnType: boolean - hasPoolKey: - annotations: [] - default: false - type: public - returnType: boolean - hasPoolKeyBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setPayload: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.event.TokenPoolCacheEvent$Builder - params: - value: - annotation: [] - type: Object - setPoolKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.event.TokenPoolCacheEvent$Builder - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey - setPoolKeyBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.event.TokenPoolCacheEvent$Builder - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder -net.corda.data.ledger.utxo.token.selection.event.TokenSyncEvent: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.utxo.token.selection.event.TokenSyncEvent - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getPayload: - annotations: [] - default: false - type: public - returnType: Object - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.utxo.token.selection.event.TokenSyncEvent$Builder - params: - other: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.event.TokenSyncEvent - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setHoldingIdentity: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setPayload: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Object - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.ledger.utxo.token.selection.event.TokenSyncEvent$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.event.TokenSyncEvent - clearHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.event.TokenSyncEvent$Builder - clearPayload: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.event.TokenSyncEvent$Builder - getHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getHoldingIdentityBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - getPayload: - annotations: [] - default: false - type: public - returnType: Object - hasHoldingIdentity: - annotations: [] - default: false - type: public - returnType: boolean - hasHoldingIdentityBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasPayload: - annotations: [] - default: false - type: public - returnType: boolean - setHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.event.TokenSyncEvent$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setHoldingIdentityBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.event.TokenSyncEvent$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder - setPayload: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.event.TokenSyncEvent$Builder - params: - value: - annotation: [] - type: Object -net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getIssuerHash: - annotations: [] - default: false - type: public - returnType: String - getNotaryX500Name: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getShortHolderId: - annotations: [] - default: false - type: public - returnType: String - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getSymbol: - annotations: [] - default: false - type: public - returnType: String - getTokenType: - annotations: [] - default: false - type: public - returnType: String - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder - params: - other: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setIssuerHash: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setNotaryX500Name: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setShortHolderId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setSymbol: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setTokenType: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey - clearIssuerHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder - clearNotaryX500Name: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder - clearShortHolderId: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder - clearSymbol: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder - clearTokenType: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder - getIssuerHash: - annotations: [] - default: false - type: public - returnType: String - getNotaryX500Name: - annotations: [] - default: false - type: public - returnType: String - getShortHolderId: - annotations: [] - default: false - type: public - returnType: String - getSymbol: - annotations: [] - default: false - type: public - returnType: String - getTokenType: - annotations: [] - default: false - type: public - returnType: String - hasIssuerHash: - annotations: [] - default: false - type: public - returnType: boolean - hasNotaryX500Name: - annotations: [] - default: false - type: public - returnType: boolean - hasShortHolderId: - annotations: [] - default: false - type: public - returnType: boolean - hasSymbol: - annotations: [] - default: false - type: public - returnType: boolean - hasTokenType: - annotations: [] - default: false - type: public - returnType: boolean - setIssuerHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder - params: - value: - annotation: [] - type: String - setNotaryX500Name: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder - params: - value: - annotation: [] - type: String - setShortHolderId: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder - params: - value: - annotation: [] - type: String - setSymbol: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder - params: - value: - annotation: [] - type: String - setTokenType: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder - params: - value: - annotation: [] - type: String -net.corda.data.ledger.utxo.token.selection.state.TokenPoolCacheState: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.utxo.token.selection.state.TokenPoolCacheState - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getAvailableTokens: - annotations: [] - default: false - type: public - returnType: java.util.List - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getPoolKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getTokenClaims: - annotations: [] - default: false - type: public - returnType: java.util.List - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.utxo.token.selection.state.TokenPoolCacheState$Builder - params: - other: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.state.TokenPoolCacheState - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setAvailableTokens: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - setPoolKey: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey - setTokenClaims: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.ledger.utxo.token.selection.state.TokenPoolCacheState$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.state.TokenPoolCacheState - clearAvailableTokens: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.state.TokenPoolCacheState$Builder - clearPoolKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.state.TokenPoolCacheState$Builder - clearTokenClaims: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.state.TokenPoolCacheState$Builder - getAvailableTokens: - annotations: [] - default: false - type: public - returnType: java.util.List - getPoolKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey - getPoolKeyBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder - getTokenClaims: - annotations: [] - default: false - type: public - returnType: java.util.List - hasAvailableTokens: - annotations: [] - default: false - type: public - returnType: boolean - hasPoolKey: - annotations: [] - default: false - type: public - returnType: boolean - hasPoolKeyBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasTokenClaims: - annotations: [] - default: false - type: public - returnType: boolean - setAvailableTokens: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.state.TokenPoolCacheState$Builder - params: - value: - annotation: [] - type: java.util.List - setPoolKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.state.TokenPoolCacheState$Builder - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey - setPoolKeyBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.state.TokenPoolCacheState$Builder - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.key.TokenPoolCacheKey$Builder - setTokenClaims: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.state.TokenPoolCacheState$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.ledger.utxo.token.selection.state.TokenSyncMode: - annotations: - - AvroGenerated - type: public final class - extends: java.lang.Enum - implements: - - org.apache.avro.generic.GenericEnumSymbol - interface: false - methods: - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - valueOf: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.utxo.token.selection.state.TokenSyncMode - params: {} - values: - annotations: [] - default: false - type: public static - returnType: "net.corda.data.ledger.utxo.token.selection.state.TokenSyncMode[]" - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.ledger.utxo.token.selection.state.TokenSyncState: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.utxo.token.selection.state.TokenSyncState - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getFullSyncState: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncState - getHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getMode: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.state.TokenSyncMode - getNextWakeup: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getPeriodicSyncState: - annotations: [] - default: false - type: public - returnType: java.util.List - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getTransientFailureCount: - annotations: [] - default: false - type: public - returnType: int - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.ledger.utxo.token.selection.state.TokenSyncState$Builder - params: - other: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.state.TokenSyncState - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setFullSyncState: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncState - setHoldingIdentity: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setMode: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.state.TokenSyncMode - setNextWakeup: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - setPeriodicSyncState: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - setTransientFailureCount: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.ledger.utxo.token.selection.state.TokenSyncState$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.state.TokenSyncState - clearFullSyncState: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.state.TokenSyncState$Builder - clearHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.state.TokenSyncState$Builder - clearMode: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.state.TokenSyncState$Builder - clearNextWakeup: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.state.TokenSyncState$Builder - clearPeriodicSyncState: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.state.TokenSyncState$Builder - clearTransientFailureCount: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.state.TokenSyncState$Builder - getFullSyncState: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncState - getFullSyncStateBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncState$Builder - getHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getHoldingIdentityBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - getMode: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.state.TokenSyncMode - getNextWakeup: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getPeriodicSyncState: - annotations: [] - default: false - type: public - returnType: java.util.List - getTransientFailureCount: - annotations: [] - default: false - type: public - returnType: int - hasFullSyncState: - annotations: [] - default: false - type: public - returnType: boolean - hasFullSyncStateBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasHoldingIdentity: - annotations: [] - default: false - type: public - returnType: boolean - hasHoldingIdentityBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasMode: - annotations: [] - default: false - type: public - returnType: boolean - hasNextWakeup: - annotations: [] - default: false - type: public - returnType: boolean - hasPeriodicSyncState: - annotations: [] - default: false - type: public - returnType: boolean - hasTransientFailureCount: - annotations: [] - default: false - type: public - returnType: boolean - setFullSyncState: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.state.TokenSyncState$Builder - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncState - setFullSyncStateBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.state.TokenSyncState$Builder - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.data.TokenFullSyncState$Builder - setHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.state.TokenSyncState$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setHoldingIdentityBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.state.TokenSyncState$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder - setMode: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.state.TokenSyncState$Builder - params: - value: - annotation: [] - type: net.corda.data.ledger.utxo.token.selection.state.TokenSyncMode - setNextWakeup: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.state.TokenSyncState$Builder - params: - value: - annotation: [] - type: java.time.Instant - setPeriodicSyncState: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.state.TokenSyncState$Builder - params: - value: - annotation: [] - type: java.util.List - setTransientFailureCount: - annotations: [] - default: false - type: public - returnType: net.corda.data.ledger.utxo.token.selection.state.TokenSyncState$Builder - params: - value: - annotation: [] - type: int -net.corda.data.membership.PersistentGroupParameters: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.PersistentGroupParameters - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getGroupParameters: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedGroupParameters - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getViewOwner: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.PersistentGroupParameters$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.PersistentGroupParameters - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setGroupParameters: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.SignedGroupParameters - setViewOwner: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.PersistentGroupParameters$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.PersistentGroupParameters - clearGroupParameters: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.PersistentGroupParameters$Builder - clearViewOwner: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.PersistentGroupParameters$Builder - getGroupParameters: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedGroupParameters - getGroupParametersBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedGroupParameters$Builder - getViewOwner: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getViewOwnerBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - hasGroupParameters: - annotations: [] - default: false - type: public - returnType: boolean - hasGroupParametersBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasViewOwner: - annotations: [] - default: false - type: public - returnType: boolean - hasViewOwnerBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setGroupParameters: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.PersistentGroupParameters$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.SignedGroupParameters - setGroupParametersBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.PersistentGroupParameters$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.SignedGroupParameters$Builder - setViewOwner: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.PersistentGroupParameters$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setViewOwnerBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.PersistentGroupParameters$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder -net.corda.data.membership.PersistentMemberInfo: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.PersistentMemberInfo - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getMemberContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getMgmContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSerializedMgmContext: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getSignedMemberContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedData - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getViewOwningMember: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.PersistentMemberInfo$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.PersistentMemberInfo - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setMemberContext: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setMgmContext: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setSerializedMgmContext: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setSignedMemberContext: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.SignedData - setViewOwningMember: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.PersistentMemberInfo$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.PersistentMemberInfo - clearMemberContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.PersistentMemberInfo$Builder - clearMgmContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.PersistentMemberInfo$Builder - clearSerializedMgmContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.PersistentMemberInfo$Builder - clearSignedMemberContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.PersistentMemberInfo$Builder - clearViewOwningMember: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.PersistentMemberInfo$Builder - getMemberContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getMemberContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList$Builder - getMgmContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getMgmContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList$Builder - getSerializedMgmContext: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getSignedMemberContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedData - getSignedMemberContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedData$Builder - getViewOwningMember: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getViewOwningMemberBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - hasMemberContext: - annotations: [] - default: false - type: public - returnType: boolean - hasMemberContextBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasMgmContext: - annotations: [] - default: false - type: public - returnType: boolean - hasMgmContextBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasSerializedMgmContext: - annotations: [] - default: false - type: public - returnType: boolean - hasSignedMemberContext: - annotations: [] - default: false - type: public - returnType: boolean - hasSignedMemberContextBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasViewOwningMember: - annotations: [] - default: false - type: public - returnType: boolean - hasViewOwningMemberBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setMemberContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.PersistentMemberInfo$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setMemberContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.PersistentMemberInfo$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList$Builder - setMgmContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.PersistentMemberInfo$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setMgmContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.PersistentMemberInfo$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList$Builder - setSerializedMgmContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.PersistentMemberInfo$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setSignedMemberContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.PersistentMemberInfo$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.SignedData - setSignedMemberContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.PersistentMemberInfo$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.SignedData$Builder - setViewOwningMember: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.PersistentMemberInfo$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setViewOwningMemberBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.PersistentMemberInfo$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder -net.corda.data.membership.PersistentSignedMemberInfo: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.PersistentSignedMemberInfo - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getMemberSignature: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureWithKey - getMemberSignatureSpec: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureSpec - getPersistentMemberInfo: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.PersistentMemberInfo - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.PersistentSignedMemberInfo$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.PersistentSignedMemberInfo - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setMemberSignature: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoSignatureWithKey - setMemberSignatureSpec: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoSignatureSpec - setPersistentMemberInfo: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.PersistentMemberInfo - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.PersistentSignedMemberInfo$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.PersistentSignedMemberInfo - clearMemberSignature: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.PersistentSignedMemberInfo$Builder - clearMemberSignatureSpec: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.PersistentSignedMemberInfo$Builder - clearPersistentMemberInfo: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.PersistentSignedMemberInfo$Builder - getMemberSignature: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureWithKey - getMemberSignatureBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureWithKey$Builder - getMemberSignatureSpec: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureSpec - getMemberSignatureSpecBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureSpec$Builder - getPersistentMemberInfo: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.PersistentMemberInfo - getPersistentMemberInfoBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.PersistentMemberInfo$Builder - hasMemberSignature: - annotations: [] - default: false - type: public - returnType: boolean - hasMemberSignatureBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasMemberSignatureSpec: - annotations: [] - default: false - type: public - returnType: boolean - hasMemberSignatureSpecBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasPersistentMemberInfo: - annotations: [] - default: false - type: public - returnType: boolean - hasPersistentMemberInfoBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setMemberSignature: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.PersistentSignedMemberInfo$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoSignatureWithKey - setMemberSignatureBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.PersistentSignedMemberInfo$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoSignatureWithKey$Builder - setMemberSignatureSpec: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.PersistentSignedMemberInfo$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoSignatureSpec - setMemberSignatureSpecBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.PersistentSignedMemberInfo$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoSignatureSpec$Builder - setPersistentMemberInfo: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.PersistentSignedMemberInfo$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.PersistentMemberInfo - setPersistentMemberInfoBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.PersistentSignedMemberInfo$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.PersistentMemberInfo$Builder -net.corda.data.membership.SignedData: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.SignedData - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getData: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSignature: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureWithKey - getSignatureSpec: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureSpec - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.SignedData$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.SignedData - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setData: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setSignature: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoSignatureWithKey - setSignatureSpec: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoSignatureSpec - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.SignedData$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedData - clearData: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedData$Builder - clearSignature: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedData$Builder - clearSignatureSpec: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedData$Builder - getData: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getSignature: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureWithKey - getSignatureBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureWithKey$Builder - getSignatureSpec: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureSpec - getSignatureSpecBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureSpec$Builder - hasData: - annotations: [] - default: false - type: public - returnType: boolean - hasSignature: - annotations: [] - default: false - type: public - returnType: boolean - hasSignatureBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasSignatureSpec: - annotations: [] - default: false - type: public - returnType: boolean - hasSignatureSpecBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setData: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedData$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setSignature: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedData$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoSignatureWithKey - setSignatureBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedData$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoSignatureWithKey$Builder - setSignatureSpec: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedData$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoSignatureSpec - setSignatureSpecBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedData$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoSignatureSpec$Builder -net.corda.data.membership.SignedGroupParameters: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.SignedGroupParameters - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getGroupParameters: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getMgmSignature: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureWithKey - getMgmSignatureSpec: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureSpec - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.SignedGroupParameters$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.SignedGroupParameters - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setGroupParameters: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setMgmSignature: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoSignatureWithKey - setMgmSignatureSpec: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoSignatureSpec - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.SignedGroupParameters$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedGroupParameters - clearGroupParameters: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedGroupParameters$Builder - clearMgmSignature: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedGroupParameters$Builder - clearMgmSignatureSpec: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedGroupParameters$Builder - getGroupParameters: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getMgmSignature: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureWithKey - getMgmSignatureBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureWithKey$Builder - getMgmSignatureSpec: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureSpec - getMgmSignatureSpecBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureSpec$Builder - hasGroupParameters: - annotations: [] - default: false - type: public - returnType: boolean - hasMgmSignature: - annotations: [] - default: false - type: public - returnType: boolean - hasMgmSignatureBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasMgmSignatureSpec: - annotations: [] - default: false - type: public - returnType: boolean - hasMgmSignatureSpecBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setGroupParameters: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedGroupParameters$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setMgmSignature: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedGroupParameters$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoSignatureWithKey - setMgmSignatureBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedGroupParameters$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoSignatureWithKey$Builder - setMgmSignatureSpec: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedGroupParameters$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoSignatureSpec - setMgmSignatureSpecBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedGroupParameters$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoSignatureSpec$Builder -net.corda.data.membership.SignedMemberInfo: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.SignedMemberInfo - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getMemberContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedData - getMgmContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedData - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.SignedMemberInfo$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.SignedMemberInfo - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setMemberContext: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.SignedData - setMgmContext: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.SignedData - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.SignedMemberInfo$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedMemberInfo - clearMemberContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedMemberInfo$Builder - clearMgmContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedMemberInfo$Builder - getMemberContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedData - getMemberContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedData$Builder - getMgmContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedData - getMgmContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedData$Builder - hasMemberContext: - annotations: [] - default: false - type: public - returnType: boolean - hasMemberContextBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasMgmContext: - annotations: [] - default: false - type: public - returnType: boolean - hasMgmContextBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setMemberContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedMemberInfo$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.SignedData - setMemberContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedMemberInfo$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.SignedData$Builder - setMgmContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedMemberInfo$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.SignedData - setMgmContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedMemberInfo$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.SignedData$Builder -net.corda.data.membership.StaticNetworkInfo: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.StaticNetworkInfo - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getGroupId: - annotations: [] - default: false - type: public - returnType: String - getGroupParameters: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getMgmPrivateSigningKey: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getMgmPublicSigningKey: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getVersion: - annotations: [] - default: false - type: public - returnType: int - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.StaticNetworkInfo$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.StaticNetworkInfo - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setGroupId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setGroupParameters: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setMgmPrivateSigningKey: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setMgmPublicSigningKey: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setVersion: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.StaticNetworkInfo$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.StaticNetworkInfo - clearGroupId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.StaticNetworkInfo$Builder - clearGroupParameters: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.StaticNetworkInfo$Builder - clearMgmPrivateSigningKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.StaticNetworkInfo$Builder - clearMgmPublicSigningKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.StaticNetworkInfo$Builder - clearVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.StaticNetworkInfo$Builder - getGroupId: - annotations: [] - default: false - type: public - returnType: String - getGroupParameters: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getGroupParametersBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList$Builder - getMgmPrivateSigningKey: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getMgmPublicSigningKey: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getVersion: - annotations: [] - default: false - type: public - returnType: int - hasGroupId: - annotations: [] - default: false - type: public - returnType: boolean - hasGroupParameters: - annotations: [] - default: false - type: public - returnType: boolean - hasGroupParametersBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasMgmPrivateSigningKey: - annotations: [] - default: false - type: public - returnType: boolean - hasMgmPublicSigningKey: - annotations: [] - default: false - type: public - returnType: boolean - hasVersion: - annotations: [] - default: false - type: public - returnType: boolean - setGroupId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.StaticNetworkInfo$Builder - params: - value: - annotation: [] - type: String - setGroupParameters: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.StaticNetworkInfo$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setGroupParametersBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.StaticNetworkInfo$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList$Builder - setMgmPrivateSigningKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.StaticNetworkInfo$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setMgmPublicSigningKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.StaticNetworkInfo$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.StaticNetworkInfo$Builder - params: - value: - annotation: [] - type: int -net.corda.data.membership.actions.request.DistributeGroupParameters: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.actions.request.DistributeGroupParameters - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getMgm: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getMinimumGroupParametersEpoch: - annotations: [] - default: false - type: public - returnType: Integer - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.actions.request.DistributeGroupParameters$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.actions.request.DistributeGroupParameters - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setMgm: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setMinimumGroupParametersEpoch: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Integer - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.actions.request.DistributeGroupParameters$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.actions.request.DistributeGroupParameters - clearMgm: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.actions.request.DistributeGroupParameters$Builder - clearMinimumGroupParametersEpoch: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.actions.request.DistributeGroupParameters$Builder - getMgm: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getMgmBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - getMinimumGroupParametersEpoch: - annotations: [] - default: false - type: public - returnType: Integer - hasMgm: - annotations: [] - default: false - type: public - returnType: boolean - hasMgmBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasMinimumGroupParametersEpoch: - annotations: [] - default: false - type: public - returnType: boolean - setMgm: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.actions.request.DistributeGroupParameters$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setMgmBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.actions.request.DistributeGroupParameters$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder - setMinimumGroupParametersEpoch: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.actions.request.DistributeGroupParameters$Builder - params: - value: - annotation: [] - type: Integer -net.corda.data.membership.actions.request.DistributeMemberInfo: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.actions.request.DistributeMemberInfo - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getMgm: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getMinimumGroupParametersEpoch: - annotations: [] - default: false - type: public - returnType: Integer - getMinimumUpdatedMemberSerial: - annotations: [] - default: false - type: public - returnType: Long - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getUpdatedMember: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.actions.request.DistributeMemberInfo$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.actions.request.DistributeMemberInfo - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setMgm: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setMinimumGroupParametersEpoch: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Integer - setMinimumUpdatedMemberSerial: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Long - setUpdatedMember: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.actions.request.DistributeMemberInfo$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.actions.request.DistributeMemberInfo - clearMgm: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.actions.request.DistributeMemberInfo$Builder - clearMinimumGroupParametersEpoch: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.actions.request.DistributeMemberInfo$Builder - clearMinimumUpdatedMemberSerial: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.actions.request.DistributeMemberInfo$Builder - clearUpdatedMember: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.actions.request.DistributeMemberInfo$Builder - getMgm: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getMgmBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - getMinimumGroupParametersEpoch: - annotations: [] - default: false - type: public - returnType: Integer - getMinimumUpdatedMemberSerial: - annotations: [] - default: false - type: public - returnType: Long - getUpdatedMember: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getUpdatedMemberBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - hasMgm: - annotations: [] - default: false - type: public - returnType: boolean - hasMgmBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasMinimumGroupParametersEpoch: - annotations: [] - default: false - type: public - returnType: boolean - hasMinimumUpdatedMemberSerial: - annotations: [] - default: false - type: public - returnType: boolean - hasUpdatedMember: - annotations: [] - default: false - type: public - returnType: boolean - hasUpdatedMemberBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setMgm: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.actions.request.DistributeMemberInfo$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setMgmBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.actions.request.DistributeMemberInfo$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder - setMinimumGroupParametersEpoch: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.actions.request.DistributeMemberInfo$Builder - params: - value: - annotation: [] - type: Integer - setMinimumUpdatedMemberSerial: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.actions.request.DistributeMemberInfo$Builder - params: - value: - annotation: [] - type: Long - setUpdatedMember: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.actions.request.DistributeMemberInfo$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setUpdatedMemberBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.actions.request.DistributeMemberInfo$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder -net.corda.data.membership.actions.request.MembershipActionsRequest: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.actions.request.MembershipActionsRequest - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getRequest: - annotations: [] - default: false - type: public - returnType: Object - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.actions.request.MembershipActionsRequest$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.actions.request.MembershipActionsRequest - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setRequest: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Object - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.actions.request.MembershipActionsRequest$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.actions.request.MembershipActionsRequest - clearRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.actions.request.MembershipActionsRequest$Builder - getRequest: - annotations: [] - default: false - type: public - returnType: Object - hasRequest: - annotations: [] - default: false - type: public - returnType: boolean - setRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.actions.request.MembershipActionsRequest$Builder - params: - value: - annotation: [] - type: Object -net.corda.data.membership.async.request.MembershipAsyncRequest: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.async.request.MembershipAsyncRequest - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.async.request.RegistrationAsyncRequest - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getState: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.async.request.MembershipAsyncRequestState - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.async.request.MembershipAsyncRequest$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.async.request.MembershipAsyncRequest - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setRequest: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.async.request.RegistrationAsyncRequest - setState: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.async.request.MembershipAsyncRequestState - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.async.request.MembershipAsyncRequest$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.async.request.MembershipAsyncRequest - clearRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.async.request.MembershipAsyncRequest$Builder - clearState: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.async.request.MembershipAsyncRequest$Builder - getRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.async.request.RegistrationAsyncRequest - getRequestBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.async.request.RegistrationAsyncRequest$Builder - getState: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.async.request.MembershipAsyncRequestState - getStateBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.async.request.MembershipAsyncRequestState$Builder - hasRequest: - annotations: [] - default: false - type: public - returnType: boolean - hasRequestBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasState: - annotations: [] - default: false - type: public - returnType: boolean - hasStateBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.async.request.MembershipAsyncRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.async.request.RegistrationAsyncRequest - setRequestBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.async.request.MembershipAsyncRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.async.request.RegistrationAsyncRequest$Builder - setState: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.async.request.MembershipAsyncRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.async.request.MembershipAsyncRequestState - setStateBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.async.request.MembershipAsyncRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.async.request.MembershipAsyncRequestState$Builder -net.corda.data.membership.async.request.MembershipAsyncRequestState: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.async.request.MembershipAsyncRequestState - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getCause: - annotations: [] - default: false - type: public - returnType: Object - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.async.request.RegistrationAsyncRequest - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.async.request.MembershipAsyncRequestState$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.async.request.MembershipAsyncRequestState - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setCause: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Object - setRequest: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.async.request.RegistrationAsyncRequest - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.async.request.MembershipAsyncRequestState$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.async.request.MembershipAsyncRequestState - clearCause: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.async.request.MembershipAsyncRequestState$Builder - clearRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.async.request.MembershipAsyncRequestState$Builder - getCause: - annotations: [] - default: false - type: public - returnType: Object - getRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.async.request.RegistrationAsyncRequest - getRequestBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.async.request.RegistrationAsyncRequest$Builder - hasCause: - annotations: [] - default: false - type: public - returnType: boolean - hasRequest: - annotations: [] - default: false - type: public - returnType: boolean - hasRequestBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setCause: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.async.request.MembershipAsyncRequestState$Builder - params: - value: - annotation: [] - type: Object - setRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.async.request.MembershipAsyncRequestState$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.async.request.RegistrationAsyncRequest - setRequestBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.async.request.MembershipAsyncRequestState$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.async.request.RegistrationAsyncRequest$Builder -net.corda.data.membership.async.request.RegistrationAsyncRequest: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.async.request.RegistrationAsyncRequest - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getHoldingIdentityId: - annotations: [] - default: false - type: public - returnType: String - getRequestId: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.async.request.RegistrationAsyncRequest$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.async.request.RegistrationAsyncRequest - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setContext: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setHoldingIdentityId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setRequestId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.async.request.RegistrationAsyncRequest$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.async.request.RegistrationAsyncRequest - clearContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.async.request.RegistrationAsyncRequest$Builder - clearHoldingIdentityId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.async.request.RegistrationAsyncRequest$Builder - clearRequestId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.async.request.RegistrationAsyncRequest$Builder - getContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList$Builder - getHoldingIdentityId: - annotations: [] - default: false - type: public - returnType: String - getRequestId: - annotations: [] - default: false - type: public - returnType: String - hasContext: - annotations: [] - default: false - type: public - returnType: boolean - hasContextBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasHoldingIdentityId: - annotations: [] - default: false - type: public - returnType: boolean - hasRequestId: - annotations: [] - default: false - type: public - returnType: boolean - setContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.async.request.RegistrationAsyncRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.async.request.RegistrationAsyncRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList$Builder - setHoldingIdentityId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.async.request.RegistrationAsyncRequest$Builder - params: - value: - annotation: [] - type: String - setRequestId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.async.request.RegistrationAsyncRequest$Builder - params: - value: - annotation: [] - type: String -net.corda.data.membership.async.request.RetriableFailure: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.async.request.RetriableFailure - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getNextTryAt: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getNumberOfRemainingRetries: - annotations: [] - default: false - type: public - returnType: int - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.async.request.RetriableFailure$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.async.request.RetriableFailure - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setNextTryAt: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - setNumberOfRemainingRetries: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.async.request.RetriableFailure$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.async.request.RetriableFailure - clearNextTryAt: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.async.request.RetriableFailure$Builder - clearNumberOfRemainingRetries: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.async.request.RetriableFailure$Builder - getNextTryAt: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getNumberOfRemainingRetries: - annotations: [] - default: false - type: public - returnType: int - hasNextTryAt: - annotations: [] - default: false - type: public - returnType: boolean - hasNumberOfRemainingRetries: - annotations: [] - default: false - type: public - returnType: boolean - setNextTryAt: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.async.request.RetriableFailure$Builder - params: - value: - annotation: [] - type: java.time.Instant - setNumberOfRemainingRetries: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.async.request.RetriableFailure$Builder - params: - value: - annotation: [] - type: int -net.corda.data.membership.async.request.SentToMgmWaitingForNetwork: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.async.request.SentToMgmWaitingForNetwork - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getStopRetriesAfter: - annotations: [] - default: false - type: public - returnType: java.time.Instant - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.async.request.SentToMgmWaitingForNetwork$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.async.request.SentToMgmWaitingForNetwork - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setStopRetriesAfter: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.async.request.SentToMgmWaitingForNetwork$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.async.request.SentToMgmWaitingForNetwork - clearStopRetriesAfter: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.async.request.SentToMgmWaitingForNetwork$Builder - getStopRetriesAfter: - annotations: [] - default: false - type: public - returnType: java.time.Instant - hasStopRetriesAfter: - annotations: [] - default: false - type: public - returnType: boolean - setStopRetriesAfter: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.async.request.SentToMgmWaitingForNetwork$Builder - params: - value: - annotation: [] - type: java.time.Instant -net.corda.data.membership.command.registration.RegistrationCommand: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.command.registration.RegistrationCommand - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getCommand: - annotations: [] - default: false - type: public - returnType: Object - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.command.registration.RegistrationCommand$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.command.registration.RegistrationCommand - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setCommand: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Object - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.command.registration.RegistrationCommand$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.RegistrationCommand - clearCommand: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.RegistrationCommand$Builder - getCommand: - annotations: [] - default: false - type: public - returnType: Object - hasCommand: - annotations: [] - default: false - type: public - returnType: boolean - setCommand: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.RegistrationCommand$Builder - params: - value: - annotation: [] - type: Object -net.corda.data.membership.command.registration.member.PersistMemberRegistrationState: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.command.registration.member.PersistMemberRegistrationState - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getMember: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSetStatusRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.v2.SetOwnRegistrationStatus - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.command.registration.member.PersistMemberRegistrationState$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.command.registration.member.PersistMemberRegistrationState - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setMember: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setSetStatusRequest: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.p2p.v2.SetOwnRegistrationStatus - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.command.registration.member.PersistMemberRegistrationState$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.member.PersistMemberRegistrationState - clearMember: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.member.PersistMemberRegistrationState$Builder - clearSetStatusRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.member.PersistMemberRegistrationState$Builder - getMember: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getMemberBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - getSetStatusRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.v2.SetOwnRegistrationStatus - getSetStatusRequestBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.v2.SetOwnRegistrationStatus$Builder - hasMember: - annotations: [] - default: false - type: public - returnType: boolean - hasMemberBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasSetStatusRequest: - annotations: [] - default: false - type: public - returnType: boolean - hasSetStatusRequestBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setMember: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.member.PersistMemberRegistrationState$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setMemberBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.member.PersistMemberRegistrationState$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder - setSetStatusRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.member.PersistMemberRegistrationState$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.p2p.v2.SetOwnRegistrationStatus - setSetStatusRequestBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.member.PersistMemberRegistrationState$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.p2p.v2.SetOwnRegistrationStatus$Builder -net.corda.data.membership.command.registration.member.ProcessMemberVerificationRequest: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.command.registration.member.ProcessMemberVerificationRequest - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getDestination: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSource: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getVerificationRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.VerificationRequest - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.command.registration.member.ProcessMemberVerificationRequest$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.command.registration.member.ProcessMemberVerificationRequest - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setDestination: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setSource: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setVerificationRequest: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.p2p.VerificationRequest - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.command.registration.member.ProcessMemberVerificationRequest$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.member.ProcessMemberVerificationRequest - clearDestination: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.member.ProcessMemberVerificationRequest$Builder - clearSource: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.member.ProcessMemberVerificationRequest$Builder - clearVerificationRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.member.ProcessMemberVerificationRequest$Builder - getDestination: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getDestinationBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - getSource: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getSourceBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - getVerificationRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.VerificationRequest - getVerificationRequestBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.VerificationRequest$Builder - hasDestination: - annotations: [] - default: false - type: public - returnType: boolean - hasDestinationBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasSource: - annotations: [] - default: false - type: public - returnType: boolean - hasSourceBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasVerificationRequest: - annotations: [] - default: false - type: public - returnType: boolean - hasVerificationRequestBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setDestination: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.member.ProcessMemberVerificationRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setDestinationBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.member.ProcessMemberVerificationRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder - setSource: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.member.ProcessMemberVerificationRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setSourceBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.member.ProcessMemberVerificationRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder - setVerificationRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.member.ProcessMemberVerificationRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.p2p.VerificationRequest - setVerificationRequestBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.member.ProcessMemberVerificationRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.p2p.VerificationRequest$Builder -net.corda.data.membership.command.registration.mgm.ApproveRegistration: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.command.registration.mgm.ApproveRegistration - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.command.registration.mgm.ApproveRegistration$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.command.registration.mgm.ApproveRegistration - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.command.registration.mgm.ApproveRegistration$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.mgm.ApproveRegistration -net.corda.data.membership.command.registration.mgm.CheckForPendingRegistration: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.command.registration.mgm.CheckForPendingRegistration - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getMember: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getMgm: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getNumberOfRetriesSoFar: - annotations: [] - default: false - type: public - returnType: int - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.command.registration.mgm.CheckForPendingRegistration$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.command.registration.mgm.CheckForPendingRegistration - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setMember: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setMgm: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setNumberOfRetriesSoFar: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.command.registration.mgm.CheckForPendingRegistration$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.mgm.CheckForPendingRegistration - clearMember: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.mgm.CheckForPendingRegistration$Builder - clearMgm: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.mgm.CheckForPendingRegistration$Builder - clearNumberOfRetriesSoFar: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.mgm.CheckForPendingRegistration$Builder - getMember: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getMemberBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - getMgm: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getMgmBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - getNumberOfRetriesSoFar: - annotations: [] - default: false - type: public - returnType: int - hasMember: - annotations: [] - default: false - type: public - returnType: boolean - hasMemberBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasMgm: - annotations: [] - default: false - type: public - returnType: boolean - hasMgmBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasNumberOfRetriesSoFar: - annotations: [] - default: false - type: public - returnType: boolean - setMember: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.mgm.CheckForPendingRegistration$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setMemberBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.mgm.CheckForPendingRegistration$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder - setMgm: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.mgm.CheckForPendingRegistration$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setMgmBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.mgm.CheckForPendingRegistration$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder - setNumberOfRetriesSoFar: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.mgm.CheckForPendingRegistration$Builder - params: - value: - annotation: [] - type: int -net.corda.data.membership.command.registration.mgm.DeclineRegistration: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.command.registration.mgm.DeclineRegistration - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getReason: - annotations: [] - default: false - type: public - returnType: String - getReasonForUser: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.command.registration.mgm.DeclineRegistration$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.command.registration.mgm.DeclineRegistration - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setReason: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setReasonForUser: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.command.registration.mgm.DeclineRegistration$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.mgm.DeclineRegistration - clearReason: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.mgm.DeclineRegistration$Builder - clearReasonForUser: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.mgm.DeclineRegistration$Builder - getReason: - annotations: [] - default: false - type: public - returnType: String - getReasonForUser: - annotations: [] - default: false - type: public - returnType: String - hasReason: - annotations: [] - default: false - type: public - returnType: boolean - hasReasonForUser: - annotations: [] - default: false - type: public - returnType: boolean - setReason: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.mgm.DeclineRegistration$Builder - params: - value: - annotation: [] - type: String - setReasonForUser: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.mgm.DeclineRegistration$Builder - params: - value: - annotation: [] - type: String -net.corda.data.membership.command.registration.mgm.ProcessMemberVerificationResponse: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.command.registration.mgm.ProcessMemberVerificationResponse - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getVerificationResponse: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.VerificationResponse - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.command.registration.mgm.ProcessMemberVerificationResponse$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.command.registration.mgm.ProcessMemberVerificationResponse - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setVerificationResponse: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.p2p.VerificationResponse - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.command.registration.mgm.ProcessMemberVerificationResponse$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.mgm.ProcessMemberVerificationResponse - clearVerificationResponse: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.mgm.ProcessMemberVerificationResponse$Builder - getVerificationResponse: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.VerificationResponse - getVerificationResponseBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.VerificationResponse$Builder - hasVerificationResponse: - annotations: [] - default: false - type: public - returnType: boolean - hasVerificationResponseBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setVerificationResponse: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.mgm.ProcessMemberVerificationResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.p2p.VerificationResponse - setVerificationResponseBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.mgm.ProcessMemberVerificationResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.p2p.VerificationResponse$Builder -net.corda.data.membership.command.registration.mgm.QueueRegistration: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.command.registration.mgm.QueueRegistration - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getMember: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getMemberRegistrationRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipRegistrationRequest - getMgm: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getNumberOfRetriesSoFar: - annotations: [] - default: false - type: public - returnType: int - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.command.registration.mgm.QueueRegistration$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.command.registration.mgm.QueueRegistration - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setMember: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setMemberRegistrationRequest: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.p2p.MembershipRegistrationRequest - setMgm: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setNumberOfRetriesSoFar: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.command.registration.mgm.QueueRegistration$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.mgm.QueueRegistration - clearMember: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.mgm.QueueRegistration$Builder - clearMemberRegistrationRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.mgm.QueueRegistration$Builder - clearMgm: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.mgm.QueueRegistration$Builder - clearNumberOfRetriesSoFar: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.mgm.QueueRegistration$Builder - getMember: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getMemberBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - getMemberRegistrationRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipRegistrationRequest - getMemberRegistrationRequestBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipRegistrationRequest$Builder - getMgm: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getMgmBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - getNumberOfRetriesSoFar: - annotations: [] - default: false - type: public - returnType: int - hasMember: - annotations: [] - default: false - type: public - returnType: boolean - hasMemberBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasMemberRegistrationRequest: - annotations: [] - default: false - type: public - returnType: boolean - hasMemberRegistrationRequestBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasMgm: - annotations: [] - default: false - type: public - returnType: boolean - hasMgmBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasNumberOfRetriesSoFar: - annotations: [] - default: false - type: public - returnType: boolean - setMember: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.mgm.QueueRegistration$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setMemberBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.mgm.QueueRegistration$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder - setMemberRegistrationRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.mgm.QueueRegistration$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.p2p.MembershipRegistrationRequest - setMemberRegistrationRequestBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.mgm.QueueRegistration$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.p2p.MembershipRegistrationRequest$Builder - setMgm: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.mgm.QueueRegistration$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setMgmBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.mgm.QueueRegistration$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder - setNumberOfRetriesSoFar: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.mgm.QueueRegistration$Builder - params: - value: - annotation: [] - type: int -net.corda.data.membership.command.registration.mgm.StartRegistration: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.command.registration.mgm.StartRegistration - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.command.registration.mgm.StartRegistration$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.command.registration.mgm.StartRegistration - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.command.registration.mgm.StartRegistration$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.mgm.StartRegistration -net.corda.data.membership.command.registration.mgm.VerifyMember: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.command.registration.mgm.VerifyMember - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.command.registration.mgm.VerifyMember$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.command.registration.mgm.VerifyMember - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.command.registration.mgm.VerifyMember$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.registration.mgm.VerifyMember -net.corda.data.membership.command.synchronisation.SynchronisationCommand: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.command.synchronisation.SynchronisationCommand - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getCommand: - annotations: [] - default: false - type: public - returnType: Object - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.command.synchronisation.SynchronisationCommand$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.command.synchronisation.SynchronisationCommand - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setCommand: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Object - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.command.synchronisation.SynchronisationCommand$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.synchronisation.SynchronisationCommand - clearCommand: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.synchronisation.SynchronisationCommand$Builder - getCommand: - annotations: [] - default: false - type: public - returnType: Object - hasCommand: - annotations: [] - default: false - type: public - returnType: boolean - setCommand: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.synchronisation.SynchronisationCommand$Builder - params: - value: - annotation: [] - type: Object -net.corda.data.membership.command.synchronisation.SynchronisationMetaData: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.command.synchronisation.SynchronisationMetaData - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getMember: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getMgm: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.command.synchronisation.SynchronisationMetaData$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.command.synchronisation.SynchronisationMetaData - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setMember: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setMgm: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.command.synchronisation.SynchronisationMetaData$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.synchronisation.SynchronisationMetaData - clearMember: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.synchronisation.SynchronisationMetaData$Builder - clearMgm: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.synchronisation.SynchronisationMetaData$Builder - getMember: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getMemberBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - getMgm: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getMgmBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - hasMember: - annotations: [] - default: false - type: public - returnType: boolean - hasMemberBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasMgm: - annotations: [] - default: false - type: public - returnType: boolean - hasMgmBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setMember: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.synchronisation.SynchronisationMetaData$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setMemberBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.synchronisation.SynchronisationMetaData$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder - setMgm: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.synchronisation.SynchronisationMetaData$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setMgmBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.synchronisation.SynchronisationMetaData$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder -net.corda.data.membership.command.synchronisation.member.ProcessMembershipUpdates: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.command.synchronisation.member.ProcessMembershipUpdates - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getMembershipPackage: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipPackage - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getSynchronisationMetaData: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.synchronisation.SynchronisationMetaData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.command.synchronisation.member.ProcessMembershipUpdates$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.command.synchronisation.member.ProcessMembershipUpdates - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setMembershipPackage: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.p2p.MembershipPackage - setSynchronisationMetaData: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.command.synchronisation.SynchronisationMetaData - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.command.synchronisation.member.ProcessMembershipUpdates$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.synchronisation.member.ProcessMembershipUpdates - clearMembershipPackage: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.synchronisation.member.ProcessMembershipUpdates$Builder - clearSynchronisationMetaData: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.synchronisation.member.ProcessMembershipUpdates$Builder - getMembershipPackage: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipPackage - getMembershipPackageBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipPackage$Builder - getSynchronisationMetaData: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.synchronisation.SynchronisationMetaData - getSynchronisationMetaDataBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.synchronisation.SynchronisationMetaData$Builder - hasMembershipPackage: - annotations: [] - default: false - type: public - returnType: boolean - hasMembershipPackageBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasSynchronisationMetaData: - annotations: [] - default: false - type: public - returnType: boolean - hasSynchronisationMetaDataBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setMembershipPackage: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.synchronisation.member.ProcessMembershipUpdates$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.p2p.MembershipPackage - setMembershipPackageBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.synchronisation.member.ProcessMembershipUpdates$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.p2p.MembershipPackage$Builder - setSynchronisationMetaData: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.synchronisation.member.ProcessMembershipUpdates$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.command.synchronisation.SynchronisationMetaData - setSynchronisationMetaDataBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.synchronisation.member.ProcessMembershipUpdates$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.command.synchronisation.SynchronisationMetaData$Builder -net.corda.data.membership.command.synchronisation.mgm.ProcessSyncRequest: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.command.synchronisation.mgm.ProcessSyncRequest - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getSyncRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipSyncRequest - getSynchronisationMetaData: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.synchronisation.SynchronisationMetaData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.command.synchronisation.mgm.ProcessSyncRequest$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.command.synchronisation.mgm.ProcessSyncRequest - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setSyncRequest: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.p2p.MembershipSyncRequest - setSynchronisationMetaData: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.command.synchronisation.SynchronisationMetaData - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.command.synchronisation.mgm.ProcessSyncRequest$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.synchronisation.mgm.ProcessSyncRequest - clearSyncRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.synchronisation.mgm.ProcessSyncRequest$Builder - clearSynchronisationMetaData: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.synchronisation.mgm.ProcessSyncRequest$Builder - getSyncRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipSyncRequest - getSyncRequestBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipSyncRequest$Builder - getSynchronisationMetaData: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.synchronisation.SynchronisationMetaData - getSynchronisationMetaDataBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.synchronisation.SynchronisationMetaData$Builder - hasSyncRequest: - annotations: [] - default: false - type: public - returnType: boolean - hasSyncRequestBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasSynchronisationMetaData: - annotations: [] - default: false - type: public - returnType: boolean - hasSynchronisationMetaDataBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setSyncRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.synchronisation.mgm.ProcessSyncRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.p2p.MembershipSyncRequest - setSyncRequestBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.synchronisation.mgm.ProcessSyncRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.p2p.MembershipSyncRequest$Builder - setSynchronisationMetaData: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.synchronisation.mgm.ProcessSyncRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.command.synchronisation.SynchronisationMetaData - setSynchronisationMetaDataBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.command.synchronisation.mgm.ProcessSyncRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.command.synchronisation.SynchronisationMetaData$Builder -net.corda.data.membership.common.ApprovalRuleDetails: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.common.ApprovalRuleDetails - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getRuleId: - annotations: [] - default: false - type: public - returnType: String - getRuleLabel: - annotations: [] - default: false - type: public - returnType: String - getRuleRegex: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.common.ApprovalRuleDetails$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.common.ApprovalRuleDetails - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setRuleId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setRuleLabel: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setRuleRegex: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.common.ApprovalRuleDetails$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.ApprovalRuleDetails - clearRuleId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.ApprovalRuleDetails$Builder - clearRuleLabel: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.ApprovalRuleDetails$Builder - clearRuleRegex: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.ApprovalRuleDetails$Builder - getRuleId: - annotations: [] - default: false - type: public - returnType: String - getRuleLabel: - annotations: [] - default: false - type: public - returnType: String - getRuleRegex: - annotations: [] - default: false - type: public - returnType: String - hasRuleId: - annotations: [] - default: false - type: public - returnType: boolean - hasRuleLabel: - annotations: [] - default: false - type: public - returnType: boolean - hasRuleRegex: - annotations: [] - default: false - type: public - returnType: boolean - setRuleId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.ApprovalRuleDetails$Builder - params: - value: - annotation: [] - type: String - setRuleLabel: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.ApprovalRuleDetails$Builder - params: - value: - annotation: [] - type: String - setRuleRegex: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.ApprovalRuleDetails$Builder - params: - value: - annotation: [] - type: String -net.corda.data.membership.common.ApprovalRuleType: - annotations: - - AvroGenerated - type: public final class - extends: java.lang.Enum - implements: - - org.apache.avro.generic.GenericEnumSymbol - interface: false - methods: - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - valueOf: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.common.ApprovalRuleType - params: {} - values: - annotations: [] - default: false - type: public static - returnType: "net.corda.data.membership.common.ApprovalRuleType[]" - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.common.RegistrationRequestDetails: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.common.RegistrationRequestDetails - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getHoldingIdentityId: - annotations: [] - default: false - type: public - returnType: String - getMemberProvidedContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedData - getReason: - annotations: [] - default: false - type: public - returnType: String - getRegistrationContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedData - getRegistrationId: - annotations: [] - default: false - type: public - returnType: String - getRegistrationLastModified: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getRegistrationProtocolVersion: - annotations: [] - default: false - type: public - returnType: int - getRegistrationSent: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getRegistrationStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.v2.RegistrationStatus - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSerial: - annotations: [] - default: false - type: public - returnType: Long - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.common.RegistrationRequestDetails$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.common.RegistrationRequestDetails - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setHoldingIdentityId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setMemberProvidedContext: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.SignedData - setReason: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setRegistrationContext: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.SignedData - setRegistrationId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setRegistrationLastModified: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - setRegistrationProtocolVersion: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - setRegistrationSent: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - setRegistrationStatus: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.common.v2.RegistrationStatus - setSerial: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Long - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.common.RegistrationRequestDetails$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.RegistrationRequestDetails - clearHoldingIdentityId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.RegistrationRequestDetails$Builder - clearMemberProvidedContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.RegistrationRequestDetails$Builder - clearReason: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.RegistrationRequestDetails$Builder - clearRegistrationContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.RegistrationRequestDetails$Builder - clearRegistrationId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.RegistrationRequestDetails$Builder - clearRegistrationLastModified: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.RegistrationRequestDetails$Builder - clearRegistrationProtocolVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.RegistrationRequestDetails$Builder - clearRegistrationSent: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.RegistrationRequestDetails$Builder - clearRegistrationStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.RegistrationRequestDetails$Builder - clearSerial: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.RegistrationRequestDetails$Builder - getHoldingIdentityId: - annotations: [] - default: false - type: public - returnType: String - getMemberProvidedContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedData - getMemberProvidedContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedData$Builder - getReason: - annotations: [] - default: false - type: public - returnType: String - getRegistrationContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedData - getRegistrationContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedData$Builder - getRegistrationId: - annotations: [] - default: false - type: public - returnType: String - getRegistrationLastModified: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getRegistrationProtocolVersion: - annotations: [] - default: false - type: public - returnType: int - getRegistrationSent: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getRegistrationStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.v2.RegistrationStatus - getSerial: - annotations: [] - default: false - type: public - returnType: Long - hasHoldingIdentityId: - annotations: [] - default: false - type: public - returnType: boolean - hasMemberProvidedContext: - annotations: [] - default: false - type: public - returnType: boolean - hasMemberProvidedContextBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasReason: - annotations: [] - default: false - type: public - returnType: boolean - hasRegistrationContext: - annotations: [] - default: false - type: public - returnType: boolean - hasRegistrationContextBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasRegistrationId: - annotations: [] - default: false - type: public - returnType: boolean - hasRegistrationLastModified: - annotations: [] - default: false - type: public - returnType: boolean - hasRegistrationProtocolVersion: - annotations: [] - default: false - type: public - returnType: boolean - hasRegistrationSent: - annotations: [] - default: false - type: public - returnType: boolean - hasRegistrationStatus: - annotations: [] - default: false - type: public - returnType: boolean - hasSerial: - annotations: [] - default: false - type: public - returnType: boolean - setHoldingIdentityId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.RegistrationRequestDetails$Builder - params: - value: - annotation: [] - type: String - setMemberProvidedContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.RegistrationRequestDetails$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.SignedData - setMemberProvidedContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.RegistrationRequestDetails$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.SignedData$Builder - setReason: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.RegistrationRequestDetails$Builder - params: - value: - annotation: [] - type: String - setRegistrationContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.RegistrationRequestDetails$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.SignedData - setRegistrationContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.RegistrationRequestDetails$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.SignedData$Builder - setRegistrationId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.RegistrationRequestDetails$Builder - params: - value: - annotation: [] - type: String - setRegistrationLastModified: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.RegistrationRequestDetails$Builder - params: - value: - annotation: [] - type: java.time.Instant - setRegistrationProtocolVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.RegistrationRequestDetails$Builder - params: - value: - annotation: [] - type: int - setRegistrationSent: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.RegistrationRequestDetails$Builder - params: - value: - annotation: [] - type: java.time.Instant - setRegistrationStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.RegistrationRequestDetails$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.common.v2.RegistrationStatus - setSerial: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.RegistrationRequestDetails$Builder - params: - value: - annotation: [] - type: Long -net.corda.data.membership.common.RegistrationStatus: - annotations: - - AvroGenerated - type: public final class - extends: java.lang.Enum - implements: - - org.apache.avro.generic.GenericEnumSymbol - interface: false - methods: - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - valueOf: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.common.RegistrationStatus - params: {} - values: - annotations: [] - default: false - type: public static - returnType: "net.corda.data.membership.common.RegistrationStatus[]" - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.common.v2.RegistrationStatus: - annotations: - - AvroGenerated - type: public final class - extends: java.lang.Enum - implements: - - org.apache.avro.generic.GenericEnumSymbol - interface: false - methods: - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - valueOf: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.common.v2.RegistrationStatus - params: {} - values: - annotations: [] - default: false - type: public static - returnType: "net.corda.data.membership.common.v2.RegistrationStatus[]" - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.request.MembershipPersistenceRequest: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.MembershipPersistenceRequest - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.MembershipRequestContext - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getRequest: - annotations: [] - default: false - type: public - returnType: Object - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.MembershipPersistenceRequest$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.request.MembershipPersistenceRequest - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setContext: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.db.request.MembershipRequestContext - setRequest: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Object - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.request.MembershipPersistenceRequest$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.MembershipPersistenceRequest - clearContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.MembershipPersistenceRequest$Builder - clearRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.MembershipPersistenceRequest$Builder - getContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.MembershipRequestContext - getContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.MembershipRequestContext$Builder - getRequest: - annotations: [] - default: false - type: public - returnType: Object - hasContext: - annotations: [] - default: false - type: public - returnType: boolean - hasContextBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasRequest: - annotations: [] - default: false - type: public - returnType: boolean - setContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.MembershipPersistenceRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.db.request.MembershipRequestContext - setContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.MembershipPersistenceRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.db.request.MembershipRequestContext$Builder - setRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.MembershipPersistenceRequest$Builder - params: - value: - annotation: [] - type: Object -net.corda.data.membership.db.request.MembershipRequestContext: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.MembershipRequestContext - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getRequestId: - annotations: [] - default: false - type: public - returnType: String - getRequestTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.MembershipRequestContext$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.request.MembershipRequestContext - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setHoldingIdentity: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setRequestId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setRequestTimestamp: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.request.MembershipRequestContext$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.MembershipRequestContext - clearHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.MembershipRequestContext$Builder - clearRequestId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.MembershipRequestContext$Builder - clearRequestTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.MembershipRequestContext$Builder - getHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getHoldingIdentityBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - getRequestId: - annotations: [] - default: false - type: public - returnType: String - getRequestTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - hasHoldingIdentity: - annotations: [] - default: false - type: public - returnType: boolean - hasHoldingIdentityBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasRequestId: - annotations: [] - default: false - type: public - returnType: boolean - hasRequestTimestamp: - annotations: [] - default: false - type: public - returnType: boolean - setHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.MembershipRequestContext$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setHoldingIdentityBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.MembershipRequestContext$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder - setRequestId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.MembershipRequestContext$Builder - params: - value: - annotation: [] - type: String - setRequestTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.MembershipRequestContext$Builder - params: - value: - annotation: [] - type: java.time.Instant -net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequest: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequest - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.MembershipPersistenceRequest - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequest$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequest - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setRequest: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.db.request.MembershipPersistenceRequest - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequest$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequest - clearRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequest$Builder - getRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.MembershipPersistenceRequest - getRequestBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.MembershipPersistenceRequest$Builder - hasRequest: - annotations: [] - default: false - type: public - returnType: boolean - hasRequestBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.db.request.MembershipPersistenceRequest - setRequestBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.db.request.MembershipPersistenceRequest$Builder -net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequestState: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequestState - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getLastFailedOn: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getNumberOfRetriesSoFar: - annotations: [] - default: false - type: public - returnType: int - getRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequest - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequestState$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequestState - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setLastFailedOn: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - setNumberOfRetriesSoFar: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - setRequest: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequest - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequestState$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequestState - clearLastFailedOn: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequestState$Builder - clearNumberOfRetriesSoFar: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequestState$Builder - clearRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequestState$Builder - getLastFailedOn: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getNumberOfRetriesSoFar: - annotations: [] - default: false - type: public - returnType: int - getRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequest - getRequestBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequest$Builder - hasLastFailedOn: - annotations: [] - default: false - type: public - returnType: boolean - hasNumberOfRetriesSoFar: - annotations: [] - default: false - type: public - returnType: boolean - hasRequest: - annotations: [] - default: false - type: public - returnType: boolean - hasRequestBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setLastFailedOn: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequestState$Builder - params: - value: - annotation: [] - type: java.time.Instant - setNumberOfRetriesSoFar: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequestState$Builder - params: - value: - annotation: [] - type: int - setRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequestState$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequest - setRequestBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequestState$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.db.request.async.MembershipPersistenceAsyncRequest$Builder -net.corda.data.membership.db.request.command.ActivateMember: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.command.ActivateMember - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getActivatedMember: - annotations: [] - default: false - type: public - returnType: String - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getReason: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSerialNumber: - annotations: [] - default: false - type: public - returnType: Long - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.command.ActivateMember$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.request.command.ActivateMember - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setActivatedMember: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setReason: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setSerialNumber: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Long - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.request.command.ActivateMember$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.ActivateMember - clearActivatedMember: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.ActivateMember$Builder - clearReason: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.ActivateMember$Builder - clearSerialNumber: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.ActivateMember$Builder - getActivatedMember: - annotations: [] - default: false - type: public - returnType: String - getReason: - annotations: [] - default: false - type: public - returnType: String - getSerialNumber: - annotations: [] - default: false - type: public - returnType: Long - hasActivatedMember: - annotations: [] - default: false - type: public - returnType: boolean - hasReason: - annotations: [] - default: false - type: public - returnType: boolean - hasSerialNumber: - annotations: [] - default: false - type: public - returnType: boolean - setActivatedMember: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.ActivateMember$Builder - params: - value: - annotation: [] - type: String - setReason: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.ActivateMember$Builder - params: - value: - annotation: [] - type: String - setSerialNumber: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.ActivateMember$Builder - params: - value: - annotation: [] - type: Long -net.corda.data.membership.db.request.command.AddNotaryToGroupParameters: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.command.AddNotaryToGroupParameters - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getNotary: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.PersistentMemberInfo - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.command.AddNotaryToGroupParameters$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.request.command.AddNotaryToGroupParameters - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setNotary: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.PersistentMemberInfo - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.request.command.AddNotaryToGroupParameters$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.AddNotaryToGroupParameters - clearNotary: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.AddNotaryToGroupParameters$Builder - getNotary: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.PersistentMemberInfo - getNotaryBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.PersistentMemberInfo$Builder - hasNotary: - annotations: [] - default: false - type: public - returnType: boolean - hasNotaryBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setNotary: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.AddNotaryToGroupParameters$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.PersistentMemberInfo - setNotaryBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.AddNotaryToGroupParameters$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.PersistentMemberInfo$Builder -net.corda.data.membership.db.request.command.AddPreAuthToken: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.command.AddPreAuthToken - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getOwnerX500Name: - annotations: [] - default: false - type: public - returnType: String - getRemark: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getTokenId: - annotations: [] - default: false - type: public - returnType: String - getTtl: - annotations: [] - default: false - type: public - returnType: java.time.Instant - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.command.AddPreAuthToken$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.request.command.AddPreAuthToken - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setOwnerX500Name: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setRemark: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setTokenId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setTtl: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.request.command.AddPreAuthToken$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.AddPreAuthToken - clearOwnerX500Name: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.AddPreAuthToken$Builder - clearRemark: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.AddPreAuthToken$Builder - clearTokenId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.AddPreAuthToken$Builder - clearTtl: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.AddPreAuthToken$Builder - getOwnerX500Name: - annotations: [] - default: false - type: public - returnType: String - getRemark: - annotations: [] - default: false - type: public - returnType: String - getTokenId: - annotations: [] - default: false - type: public - returnType: String - getTtl: - annotations: [] - default: false - type: public - returnType: java.time.Instant - hasOwnerX500Name: - annotations: [] - default: false - type: public - returnType: boolean - hasRemark: - annotations: [] - default: false - type: public - returnType: boolean - hasTokenId: - annotations: [] - default: false - type: public - returnType: boolean - hasTtl: - annotations: [] - default: false - type: public - returnType: boolean - setOwnerX500Name: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.AddPreAuthToken$Builder - params: - value: - annotation: [] - type: String - setRemark: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.AddPreAuthToken$Builder - params: - value: - annotation: [] - type: String - setTokenId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.AddPreAuthToken$Builder - params: - value: - annotation: [] - type: String - setTtl: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.AddPreAuthToken$Builder - params: - value: - annotation: [] - type: java.time.Instant -net.corda.data.membership.db.request.command.ConsumePreAuthToken: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.command.ConsumePreAuthToken - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getOwnerX500Name: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getTokenId: - annotations: [] - default: false - type: public - returnType: String - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.command.ConsumePreAuthToken$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.request.command.ConsumePreAuthToken - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setOwnerX500Name: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setTokenId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.request.command.ConsumePreAuthToken$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.ConsumePreAuthToken - clearOwnerX500Name: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.ConsumePreAuthToken$Builder - clearTokenId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.ConsumePreAuthToken$Builder - getOwnerX500Name: - annotations: [] - default: false - type: public - returnType: String - getTokenId: - annotations: [] - default: false - type: public - returnType: String - hasOwnerX500Name: - annotations: [] - default: false - type: public - returnType: boolean - hasTokenId: - annotations: [] - default: false - type: public - returnType: boolean - setOwnerX500Name: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.ConsumePreAuthToken$Builder - params: - value: - annotation: [] - type: String - setTokenId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.ConsumePreAuthToken$Builder - params: - value: - annotation: [] - type: String -net.corda.data.membership.db.request.command.DeleteApprovalRule: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.command.DeleteApprovalRule - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getRuleId: - annotations: [] - default: false - type: public - returnType: String - getRuleType: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.ApprovalRuleType - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.command.DeleteApprovalRule$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.request.command.DeleteApprovalRule - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setRuleId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setRuleType: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.common.ApprovalRuleType - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.request.command.DeleteApprovalRule$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.DeleteApprovalRule - clearRuleId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.DeleteApprovalRule$Builder - clearRuleType: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.DeleteApprovalRule$Builder - getRuleId: - annotations: [] - default: false - type: public - returnType: String - getRuleType: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.ApprovalRuleType - hasRuleId: - annotations: [] - default: false - type: public - returnType: boolean - hasRuleType: - annotations: [] - default: false - type: public - returnType: boolean - setRuleId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.DeleteApprovalRule$Builder - params: - value: - annotation: [] - type: String - setRuleType: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.DeleteApprovalRule$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.common.ApprovalRuleType -net.corda.data.membership.db.request.command.MutualTlsAddToAllowedCertificates: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.command.MutualTlsAddToAllowedCertificates - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getSubject: - annotations: [] - default: false - type: public - returnType: String - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.command.MutualTlsAddToAllowedCertificates$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.request.command.MutualTlsAddToAllowedCertificates - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setSubject: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.request.command.MutualTlsAddToAllowedCertificates$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.MutualTlsAddToAllowedCertificates - clearSubject: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.MutualTlsAddToAllowedCertificates$Builder - getSubject: - annotations: [] - default: false - type: public - returnType: String - hasSubject: - annotations: [] - default: false - type: public - returnType: boolean - setSubject: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.MutualTlsAddToAllowedCertificates$Builder - params: - value: - annotation: [] - type: String -net.corda.data.membership.db.request.command.MutualTlsRemoveFromAllowedCertificates: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.command.MutualTlsRemoveFromAllowedCertificates - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getSubject: - annotations: [] - default: false - type: public - returnType: String - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.command.MutualTlsRemoveFromAllowedCertificates$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.request.command.MutualTlsRemoveFromAllowedCertificates - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setSubject: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.request.command.MutualTlsRemoveFromAllowedCertificates$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.MutualTlsRemoveFromAllowedCertificates - clearSubject: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.MutualTlsRemoveFromAllowedCertificates$Builder - getSubject: - annotations: [] - default: false - type: public - returnType: String - hasSubject: - annotations: [] - default: false - type: public - returnType: boolean - setSubject: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.MutualTlsRemoveFromAllowedCertificates$Builder - params: - value: - annotation: [] - type: String -net.corda.data.membership.db.request.command.PersistApprovalRule: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.command.PersistApprovalRule - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getLabel: - annotations: [] - default: false - type: public - returnType: String - getRule: - annotations: [] - default: false - type: public - returnType: String - getRuleId: - annotations: [] - default: false - type: public - returnType: String - getRuleType: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.ApprovalRuleType - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.command.PersistApprovalRule$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.request.command.PersistApprovalRule - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setLabel: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setRule: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setRuleId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setRuleType: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.common.ApprovalRuleType - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.request.command.PersistApprovalRule$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.PersistApprovalRule - clearLabel: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.PersistApprovalRule$Builder - clearRule: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.PersistApprovalRule$Builder - clearRuleId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.PersistApprovalRule$Builder - clearRuleType: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.PersistApprovalRule$Builder - getLabel: - annotations: [] - default: false - type: public - returnType: String - getRule: - annotations: [] - default: false - type: public - returnType: String - getRuleId: - annotations: [] - default: false - type: public - returnType: String - getRuleType: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.ApprovalRuleType - hasLabel: - annotations: [] - default: false - type: public - returnType: boolean - hasRule: - annotations: [] - default: false - type: public - returnType: boolean - hasRuleId: - annotations: [] - default: false - type: public - returnType: boolean - hasRuleType: - annotations: [] - default: false - type: public - returnType: boolean - setLabel: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.PersistApprovalRule$Builder - params: - value: - annotation: [] - type: String - setRule: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.PersistApprovalRule$Builder - params: - value: - annotation: [] - type: String - setRuleId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.PersistApprovalRule$Builder - params: - value: - annotation: [] - type: String - setRuleType: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.PersistApprovalRule$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.common.ApprovalRuleType -net.corda.data.membership.db.request.command.PersistGroupParameters: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.command.PersistGroupParameters - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getGroupParameters: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedGroupParameters - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.command.PersistGroupParameters$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.request.command.PersistGroupParameters - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setGroupParameters: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.SignedGroupParameters - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.request.command.PersistGroupParameters$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.PersistGroupParameters - clearGroupParameters: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.PersistGroupParameters$Builder - getGroupParameters: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedGroupParameters - getGroupParametersBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedGroupParameters$Builder - hasGroupParameters: - annotations: [] - default: false - type: public - returnType: boolean - hasGroupParametersBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setGroupParameters: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.PersistGroupParameters$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.SignedGroupParameters - setGroupParametersBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.PersistGroupParameters$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.SignedGroupParameters$Builder -net.corda.data.membership.db.request.command.PersistGroupParametersInitialSnapshot: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.command.PersistGroupParametersInitialSnapshot - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.command.PersistGroupParametersInitialSnapshot$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.request.command.PersistGroupParametersInitialSnapshot - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.request.command.PersistGroupParametersInitialSnapshot$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.PersistGroupParametersInitialSnapshot -net.corda.data.membership.db.request.command.PersistGroupPolicy: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.command.PersistGroupPolicy - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getProperties: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getVersion: - annotations: [] - default: false - type: public - returnType: long - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.command.PersistGroupPolicy$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.request.command.PersistGroupPolicy - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setProperties: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setVersion: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: long - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.request.command.PersistGroupPolicy$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.PersistGroupPolicy - clearProperties: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.PersistGroupPolicy$Builder - clearVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.PersistGroupPolicy$Builder - getProperties: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getPropertiesBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList$Builder - getVersion: - annotations: [] - default: false - type: public - returnType: long - hasProperties: - annotations: [] - default: false - type: public - returnType: boolean - hasPropertiesBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasVersion: - annotations: [] - default: false - type: public - returnType: boolean - setProperties: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.PersistGroupPolicy$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setPropertiesBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.PersistGroupPolicy$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList$Builder - setVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.PersistGroupPolicy$Builder - params: - value: - annotation: [] - type: long -net.corda.data.membership.db.request.command.PersistMemberInfo: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.command.PersistMemberInfo - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getMembers: - annotations: [] - default: false - type: public - returnType: java.util.List - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSignedMembers: - annotations: [] - default: false - type: public - returnType: java.util.List - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.command.PersistMemberInfo$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.request.command.PersistMemberInfo - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setMembers: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - setSignedMembers: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.request.command.PersistMemberInfo$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.PersistMemberInfo - clearMembers: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.PersistMemberInfo$Builder - clearSignedMembers: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.PersistMemberInfo$Builder - getMembers: - annotations: [] - default: false - type: public - returnType: java.util.List - getSignedMembers: - annotations: [] - default: false - type: public - returnType: java.util.List - hasMembers: - annotations: [] - default: false - type: public - returnType: boolean - hasSignedMembers: - annotations: [] - default: false - type: public - returnType: boolean - setMembers: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.PersistMemberInfo$Builder - params: - value: - annotation: [] - type: java.util.List - setSignedMembers: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.PersistMemberInfo$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.membership.db.request.command.PersistRegistrationRequest: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.command.PersistRegistrationRequest - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getRegisteringHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getRegistrationRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipRegistrationRequest - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.v2.RegistrationStatus - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.command.PersistRegistrationRequest$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.request.command.PersistRegistrationRequest - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setRegisteringHoldingIdentity: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setRegistrationRequest: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.p2p.MembershipRegistrationRequest - setStatus: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.common.v2.RegistrationStatus - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.request.command.PersistRegistrationRequest$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.PersistRegistrationRequest - clearRegisteringHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.PersistRegistrationRequest$Builder - clearRegistrationRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.PersistRegistrationRequest$Builder - clearStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.PersistRegistrationRequest$Builder - getRegisteringHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getRegisteringHoldingIdentityBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - getRegistrationRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipRegistrationRequest - getRegistrationRequestBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipRegistrationRequest$Builder - getStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.v2.RegistrationStatus - hasRegisteringHoldingIdentity: - annotations: [] - default: false - type: public - returnType: boolean - hasRegisteringHoldingIdentityBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasRegistrationRequest: - annotations: [] - default: false - type: public - returnType: boolean - hasRegistrationRequestBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasStatus: - annotations: [] - default: false - type: public - returnType: boolean - setRegisteringHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.PersistRegistrationRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setRegisteringHoldingIdentityBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.PersistRegistrationRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder - setRegistrationRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.PersistRegistrationRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.p2p.MembershipRegistrationRequest - setRegistrationRequestBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.PersistRegistrationRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.p2p.MembershipRegistrationRequest$Builder - setStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.PersistRegistrationRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.common.v2.RegistrationStatus -net.corda.data.membership.db.request.command.RevokePreAuthToken: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.command.RevokePreAuthToken - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getRemark: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getTokenId: - annotations: [] - default: false - type: public - returnType: String - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.command.RevokePreAuthToken$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.request.command.RevokePreAuthToken - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setRemark: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setTokenId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.request.command.RevokePreAuthToken$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.RevokePreAuthToken - clearRemark: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.RevokePreAuthToken$Builder - clearTokenId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.RevokePreAuthToken$Builder - getRemark: - annotations: [] - default: false - type: public - returnType: String - getTokenId: - annotations: [] - default: false - type: public - returnType: String - hasRemark: - annotations: [] - default: false - type: public - returnType: boolean - hasTokenId: - annotations: [] - default: false - type: public - returnType: boolean - setRemark: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.RevokePreAuthToken$Builder - params: - value: - annotation: [] - type: String - setTokenId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.RevokePreAuthToken$Builder - params: - value: - annotation: [] - type: String -net.corda.data.membership.db.request.command.SuspendMember: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.command.SuspendMember - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getReason: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSerialNumber: - annotations: [] - default: false - type: public - returnType: Long - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getSuspendedMember: - annotations: [] - default: false - type: public - returnType: String - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.command.SuspendMember$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.request.command.SuspendMember - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setReason: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setSerialNumber: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Long - setSuspendedMember: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.request.command.SuspendMember$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.SuspendMember - clearReason: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.SuspendMember$Builder - clearSerialNumber: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.SuspendMember$Builder - clearSuspendedMember: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.SuspendMember$Builder - getReason: - annotations: [] - default: false - type: public - returnType: String - getSerialNumber: - annotations: [] - default: false - type: public - returnType: Long - getSuspendedMember: - annotations: [] - default: false - type: public - returnType: String - hasReason: - annotations: [] - default: false - type: public - returnType: boolean - hasSerialNumber: - annotations: [] - default: false - type: public - returnType: boolean - hasSuspendedMember: - annotations: [] - default: false - type: public - returnType: boolean - setReason: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.SuspendMember$Builder - params: - value: - annotation: [] - type: String - setSerialNumber: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.SuspendMember$Builder - params: - value: - annotation: [] - type: Long - setSuspendedMember: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.SuspendMember$Builder - params: - value: - annotation: [] - type: String -net.corda.data.membership.db.request.command.UpdateGroupParameters: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.command.UpdateGroupParameters - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getUpdate: - annotations: [] - default: false - type: public - returnType: "java.util.Map" - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.command.UpdateGroupParameters$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.request.command.UpdateGroupParameters - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setUpdate: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: "java.util.Map" - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.request.command.UpdateGroupParameters$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.UpdateGroupParameters - clearUpdate: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.UpdateGroupParameters$Builder - getUpdate: - annotations: [] - default: false - type: public - returnType: "java.util.Map" - hasUpdate: - annotations: [] - default: false - type: public - returnType: boolean - setUpdate: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.UpdateGroupParameters$Builder - params: - value: - annotation: [] - type: "java.util.Map" -net.corda.data.membership.db.request.command.UpdateMemberAndRegistrationRequestToApproved: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.command.UpdateMemberAndRegistrationRequestToApproved - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getMember: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getRegistrationId: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.command.UpdateMemberAndRegistrationRequestToApproved$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.request.command.UpdateMemberAndRegistrationRequestToApproved - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setMember: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setRegistrationId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.request.command.UpdateMemberAndRegistrationRequestToApproved$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.UpdateMemberAndRegistrationRequestToApproved - clearMember: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.UpdateMemberAndRegistrationRequestToApproved$Builder - clearRegistrationId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.UpdateMemberAndRegistrationRequestToApproved$Builder - getMember: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getMemberBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - getRegistrationId: - annotations: [] - default: false - type: public - returnType: String - hasMember: - annotations: [] - default: false - type: public - returnType: boolean - hasMemberBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasRegistrationId: - annotations: [] - default: false - type: public - returnType: boolean - setMember: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.UpdateMemberAndRegistrationRequestToApproved$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setMemberBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.UpdateMemberAndRegistrationRequestToApproved$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder - setRegistrationId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.UpdateMemberAndRegistrationRequestToApproved$Builder - params: - value: - annotation: [] - type: String -net.corda.data.membership.db.request.command.UpdateMemberAndRegistrationRequestToDeclined: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.command.UpdateMemberAndRegistrationRequestToDeclined - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getMember: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getRegistrationId: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.command.UpdateMemberAndRegistrationRequestToDeclined$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.request.command.UpdateMemberAndRegistrationRequestToDeclined - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setMember: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setRegistrationId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.request.command.UpdateMemberAndRegistrationRequestToDeclined$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.UpdateMemberAndRegistrationRequestToDeclined - clearMember: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.UpdateMemberAndRegistrationRequestToDeclined$Builder - clearRegistrationId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.UpdateMemberAndRegistrationRequestToDeclined$Builder - getMember: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getMemberBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - getRegistrationId: - annotations: [] - default: false - type: public - returnType: String - hasMember: - annotations: [] - default: false - type: public - returnType: boolean - hasMemberBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasRegistrationId: - annotations: [] - default: false - type: public - returnType: boolean - setMember: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.UpdateMemberAndRegistrationRequestToDeclined$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setMemberBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.UpdateMemberAndRegistrationRequestToDeclined$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder - setRegistrationId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.UpdateMemberAndRegistrationRequestToDeclined$Builder - params: - value: - annotation: [] - type: String -net.corda.data.membership.db.request.command.UpdateRegistrationRequestStatus: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.command.UpdateRegistrationRequestStatus - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getReason: - annotations: [] - default: false - type: public - returnType: String - getRegistrationId: - annotations: [] - default: false - type: public - returnType: String - getRegistrationStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.v2.RegistrationStatus - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.command.UpdateRegistrationRequestStatus$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.request.command.UpdateRegistrationRequestStatus - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setReason: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setRegistrationId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setRegistrationStatus: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.common.v2.RegistrationStatus - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.request.command.UpdateRegistrationRequestStatus$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.UpdateRegistrationRequestStatus - clearReason: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.UpdateRegistrationRequestStatus$Builder - clearRegistrationId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.UpdateRegistrationRequestStatus$Builder - clearRegistrationStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.UpdateRegistrationRequestStatus$Builder - getReason: - annotations: [] - default: false - type: public - returnType: String - getRegistrationId: - annotations: [] - default: false - type: public - returnType: String - getRegistrationStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.v2.RegistrationStatus - hasReason: - annotations: [] - default: false - type: public - returnType: boolean - hasRegistrationId: - annotations: [] - default: false - type: public - returnType: boolean - hasRegistrationStatus: - annotations: [] - default: false - type: public - returnType: boolean - setReason: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.UpdateRegistrationRequestStatus$Builder - params: - value: - annotation: [] - type: String - setRegistrationId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.UpdateRegistrationRequestStatus$Builder - params: - value: - annotation: [] - type: String - setRegistrationStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.UpdateRegistrationRequestStatus$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.common.v2.RegistrationStatus -net.corda.data.membership.db.request.command.UpdateStaticNetworkInfo: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.command.UpdateStaticNetworkInfo - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getInfo: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.StaticNetworkInfo - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.command.UpdateStaticNetworkInfo$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.request.command.UpdateStaticNetworkInfo - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setInfo: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.StaticNetworkInfo - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.request.command.UpdateStaticNetworkInfo$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.UpdateStaticNetworkInfo - clearInfo: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.UpdateStaticNetworkInfo$Builder - getInfo: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.StaticNetworkInfo - getInfoBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.StaticNetworkInfo$Builder - hasInfo: - annotations: [] - default: false - type: public - returnType: boolean - hasInfoBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setInfo: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.UpdateStaticNetworkInfo$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.StaticNetworkInfo - setInfoBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.command.UpdateStaticNetworkInfo$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.StaticNetworkInfo$Builder -net.corda.data.membership.db.request.query.MutualTlsListAllowedCertificates: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.query.MutualTlsListAllowedCertificates - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.query.MutualTlsListAllowedCertificates$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.request.query.MutualTlsListAllowedCertificates - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.request.query.MutualTlsListAllowedCertificates$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.query.MutualTlsListAllowedCertificates -net.corda.data.membership.db.request.query.QueryApprovalRules: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.query.QueryApprovalRules - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getRuleType: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.ApprovalRuleType - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.query.QueryApprovalRules$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.request.query.QueryApprovalRules - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setRuleType: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.common.ApprovalRuleType - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.request.query.QueryApprovalRules$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.query.QueryApprovalRules - clearRuleType: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.query.QueryApprovalRules$Builder - getRuleType: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.ApprovalRuleType - hasRuleType: - annotations: [] - default: false - type: public - returnType: boolean - setRuleType: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.query.QueryApprovalRules$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.common.ApprovalRuleType -net.corda.data.membership.db.request.query.QueryGroupPolicy: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.query.QueryGroupPolicy - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.query.QueryGroupPolicy$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.request.query.QueryGroupPolicy - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.request.query.QueryGroupPolicy$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.query.QueryGroupPolicy -net.corda.data.membership.db.request.query.QueryMemberInfo: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.query.QueryMemberInfo - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getQueryIdentities: - annotations: [] - default: false - type: public - returnType: java.util.List - getQueryStatuses: - annotations: [] - default: false - type: public - returnType: java.util.List - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.query.QueryMemberInfo$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.request.query.QueryMemberInfo - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setQueryIdentities: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - setQueryStatuses: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.request.query.QueryMemberInfo$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.query.QueryMemberInfo - clearQueryIdentities: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.query.QueryMemberInfo$Builder - clearQueryStatuses: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.query.QueryMemberInfo$Builder - getQueryIdentities: - annotations: [] - default: false - type: public - returnType: java.util.List - getQueryStatuses: - annotations: [] - default: false - type: public - returnType: java.util.List - hasQueryIdentities: - annotations: [] - default: false - type: public - returnType: boolean - hasQueryStatuses: - annotations: [] - default: false - type: public - returnType: boolean - setQueryIdentities: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.query.QueryMemberInfo$Builder - params: - value: - annotation: [] - type: java.util.List - setQueryStatuses: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.query.QueryMemberInfo$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.membership.db.request.query.QueryMemberSignature: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.query.QueryMemberSignature - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getQueryIdentities: - annotations: [] - default: false - type: public - returnType: java.util.List - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.query.QueryMemberSignature$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.request.query.QueryMemberSignature - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setQueryIdentities: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.request.query.QueryMemberSignature$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.query.QueryMemberSignature - clearQueryIdentities: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.query.QueryMemberSignature$Builder - getQueryIdentities: - annotations: [] - default: false - type: public - returnType: java.util.List - hasQueryIdentities: - annotations: [] - default: false - type: public - returnType: boolean - setQueryIdentities: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.query.QueryMemberSignature$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.membership.db.request.query.QueryPreAuthToken: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.query.QueryPreAuthToken - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getOwnerX500Name: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getStatuses: - annotations: [] - default: false - type: public - returnType: java.util.List - getTokenId: - annotations: [] - default: false - type: public - returnType: String - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.query.QueryPreAuthToken$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.request.query.QueryPreAuthToken - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setOwnerX500Name: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setStatuses: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - setTokenId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.request.query.QueryPreAuthToken$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.query.QueryPreAuthToken - clearOwnerX500Name: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.query.QueryPreAuthToken$Builder - clearStatuses: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.query.QueryPreAuthToken$Builder - clearTokenId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.query.QueryPreAuthToken$Builder - getOwnerX500Name: - annotations: [] - default: false - type: public - returnType: String - getStatuses: - annotations: [] - default: false - type: public - returnType: java.util.List - getTokenId: - annotations: [] - default: false - type: public - returnType: String - hasOwnerX500Name: - annotations: [] - default: false - type: public - returnType: boolean - hasStatuses: - annotations: [] - default: false - type: public - returnType: boolean - hasTokenId: - annotations: [] - default: false - type: public - returnType: boolean - setOwnerX500Name: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.query.QueryPreAuthToken$Builder - params: - value: - annotation: [] - type: String - setStatuses: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.query.QueryPreAuthToken$Builder - params: - value: - annotation: [] - type: java.util.List - setTokenId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.query.QueryPreAuthToken$Builder - params: - value: - annotation: [] - type: String -net.corda.data.membership.db.request.query.QueryRegistrationRequest: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.query.QueryRegistrationRequest - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getRegistrationRequestId: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.query.QueryRegistrationRequest$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.request.query.QueryRegistrationRequest - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setRegistrationRequestId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.request.query.QueryRegistrationRequest$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.query.QueryRegistrationRequest - clearRegistrationRequestId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.query.QueryRegistrationRequest$Builder - getRegistrationRequestId: - annotations: [] - default: false - type: public - returnType: String - hasRegistrationRequestId: - annotations: [] - default: false - type: public - returnType: boolean - setRegistrationRequestId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.query.QueryRegistrationRequest$Builder - params: - value: - annotation: [] - type: String -net.corda.data.membership.db.request.query.QueryRegistrationRequests: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.query.QueryRegistrationRequests - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getLimit: - annotations: [] - default: false - type: public - returnType: Integer - getRequestSubjectX500Name: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getStatuses: - annotations: [] - default: false - type: public - returnType: java.util.List - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.query.QueryRegistrationRequests$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.request.query.QueryRegistrationRequests - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setLimit: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Integer - setRequestSubjectX500Name: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setStatuses: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.request.query.QueryRegistrationRequests$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.query.QueryRegistrationRequests - clearLimit: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.query.QueryRegistrationRequests$Builder - clearRequestSubjectX500Name: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.query.QueryRegistrationRequests$Builder - clearStatuses: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.query.QueryRegistrationRequests$Builder - getLimit: - annotations: [] - default: false - type: public - returnType: Integer - getRequestSubjectX500Name: - annotations: [] - default: false - type: public - returnType: String - getStatuses: - annotations: [] - default: false - type: public - returnType: java.util.List - hasLimit: - annotations: [] - default: false - type: public - returnType: boolean - hasRequestSubjectX500Name: - annotations: [] - default: false - type: public - returnType: boolean - hasStatuses: - annotations: [] - default: false - type: public - returnType: boolean - setLimit: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.query.QueryRegistrationRequests$Builder - params: - value: - annotation: [] - type: Integer - setRequestSubjectX500Name: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.query.QueryRegistrationRequests$Builder - params: - value: - annotation: [] - type: String - setStatuses: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.query.QueryRegistrationRequests$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.membership.db.request.query.QueryStaticNetworkInfo: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.query.QueryStaticNetworkInfo - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getGroupId: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.request.query.QueryStaticNetworkInfo$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.request.query.QueryStaticNetworkInfo - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setGroupId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.request.query.QueryStaticNetworkInfo$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.query.QueryStaticNetworkInfo - clearGroupId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.query.QueryStaticNetworkInfo$Builder - getGroupId: - annotations: [] - default: false - type: public - returnType: String - hasGroupId: - annotations: [] - default: false - type: public - returnType: boolean - setGroupId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.request.query.QueryStaticNetworkInfo$Builder - params: - value: - annotation: [] - type: String -net.corda.data.membership.db.response.MembershipPersistenceResponse: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.response.MembershipPersistenceResponse - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.MembershipResponseContext - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getPayload: - annotations: [] - default: false - type: public - returnType: Object - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.response.MembershipPersistenceResponse$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.response.MembershipPersistenceResponse - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setContext: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.db.response.MembershipResponseContext - setPayload: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Object - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.response.MembershipPersistenceResponse$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.MembershipPersistenceResponse - clearContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.MembershipPersistenceResponse$Builder - clearPayload: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.MembershipPersistenceResponse$Builder - getContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.MembershipResponseContext - getContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.MembershipResponseContext$Builder - getPayload: - annotations: [] - default: false - type: public - returnType: Object - hasContext: - annotations: [] - default: false - type: public - returnType: boolean - hasContextBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasPayload: - annotations: [] - default: false - type: public - returnType: boolean - setContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.MembershipPersistenceResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.db.response.MembershipResponseContext - setContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.MembershipPersistenceResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.db.response.MembershipResponseContext$Builder - setPayload: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.MembershipPersistenceResponse$Builder - params: - value: - annotation: [] - type: Object -net.corda.data.membership.db.response.MembershipResponseContext: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.response.MembershipResponseContext - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getRequestId: - annotations: [] - default: false - type: public - returnType: String - getRequestTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getResponseTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.response.MembershipResponseContext$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.response.MembershipResponseContext - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setHoldingIdentity: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setRequestId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setRequestTimestamp: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - setResponseTimestamp: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.response.MembershipResponseContext$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.MembershipResponseContext - clearHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.MembershipResponseContext$Builder - clearRequestId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.MembershipResponseContext$Builder - clearRequestTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.MembershipResponseContext$Builder - clearResponseTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.MembershipResponseContext$Builder - getHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getHoldingIdentityBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - getRequestId: - annotations: [] - default: false - type: public - returnType: String - getRequestTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getResponseTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - hasHoldingIdentity: - annotations: [] - default: false - type: public - returnType: boolean - hasHoldingIdentityBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasRequestId: - annotations: [] - default: false - type: public - returnType: boolean - hasRequestTimestamp: - annotations: [] - default: false - type: public - returnType: boolean - hasResponseTimestamp: - annotations: [] - default: false - type: public - returnType: boolean - setHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.MembershipResponseContext$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setHoldingIdentityBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.MembershipResponseContext$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder - setRequestId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.MembershipResponseContext$Builder - params: - value: - annotation: [] - type: String - setRequestTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.MembershipResponseContext$Builder - params: - value: - annotation: [] - type: java.time.Instant - setResponseTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.MembershipResponseContext$Builder - params: - value: - annotation: [] - type: java.time.Instant -net.corda.data.membership.db.response.command.ActivateMemberResponse: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.response.command.ActivateMemberResponse - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getGroupParameters: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedGroupParameters - getMemberInfo: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.PersistentMemberInfo - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.response.command.ActivateMemberResponse$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.response.command.ActivateMemberResponse - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setGroupParameters: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.SignedGroupParameters - setMemberInfo: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.PersistentMemberInfo - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.response.command.ActivateMemberResponse$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.command.ActivateMemberResponse - clearGroupParameters: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.command.ActivateMemberResponse$Builder - clearMemberInfo: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.command.ActivateMemberResponse$Builder - getGroupParameters: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedGroupParameters - getGroupParametersBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedGroupParameters$Builder - getMemberInfo: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.PersistentMemberInfo - getMemberInfoBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.PersistentMemberInfo$Builder - hasGroupParameters: - annotations: [] - default: false - type: public - returnType: boolean - hasGroupParametersBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasMemberInfo: - annotations: [] - default: false - type: public - returnType: boolean - hasMemberInfoBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setGroupParameters: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.command.ActivateMemberResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.SignedGroupParameters - setGroupParametersBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.command.ActivateMemberResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.SignedGroupParameters$Builder - setMemberInfo: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.command.ActivateMemberResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.PersistentMemberInfo - setMemberInfoBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.command.ActivateMemberResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.PersistentMemberInfo$Builder -net.corda.data.membership.db.response.command.DeleteApprovalRuleResponse: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.response.command.DeleteApprovalRuleResponse - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.response.command.DeleteApprovalRuleResponse$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.response.command.DeleteApprovalRuleResponse - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.response.command.DeleteApprovalRuleResponse$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.command.DeleteApprovalRuleResponse -net.corda.data.membership.db.response.command.PersistApprovalRuleResponse: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.response.command.PersistApprovalRuleResponse - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getPersistedRule: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.ApprovalRuleDetails - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.response.command.PersistApprovalRuleResponse$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.response.command.PersistApprovalRuleResponse - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setPersistedRule: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.common.ApprovalRuleDetails - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.response.command.PersistApprovalRuleResponse$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.command.PersistApprovalRuleResponse - clearPersistedRule: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.command.PersistApprovalRuleResponse$Builder - getPersistedRule: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.ApprovalRuleDetails - getPersistedRuleBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.ApprovalRuleDetails$Builder - hasPersistedRule: - annotations: [] - default: false - type: public - returnType: boolean - hasPersistedRuleBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setPersistedRule: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.command.PersistApprovalRuleResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.common.ApprovalRuleDetails - setPersistedRuleBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.command.PersistApprovalRuleResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.common.ApprovalRuleDetails$Builder -net.corda.data.membership.db.response.command.PersistGroupParametersResponse: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.response.command.PersistGroupParametersResponse - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getGroupParameters: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedGroupParameters - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.response.command.PersistGroupParametersResponse$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.response.command.PersistGroupParametersResponse - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setGroupParameters: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.SignedGroupParameters - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.response.command.PersistGroupParametersResponse$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.command.PersistGroupParametersResponse - clearGroupParameters: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.command.PersistGroupParametersResponse$Builder - getGroupParameters: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedGroupParameters - getGroupParametersBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedGroupParameters$Builder - hasGroupParameters: - annotations: [] - default: false - type: public - returnType: boolean - hasGroupParametersBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setGroupParameters: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.command.PersistGroupParametersResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.SignedGroupParameters - setGroupParametersBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.command.PersistGroupParametersResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.SignedGroupParameters$Builder -net.corda.data.membership.db.response.command.RevokePreAuthTokenResponse: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.response.command.RevokePreAuthTokenResponse - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getPreAuthToken: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.preauth.PreAuthToken - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.response.command.RevokePreAuthTokenResponse$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.response.command.RevokePreAuthTokenResponse - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setPreAuthToken: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.preauth.PreAuthToken - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.response.command.RevokePreAuthTokenResponse$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.command.RevokePreAuthTokenResponse - clearPreAuthToken: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.command.RevokePreAuthTokenResponse$Builder - getPreAuthToken: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.preauth.PreAuthToken - getPreAuthTokenBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.preauth.PreAuthToken$Builder - hasPreAuthToken: - annotations: [] - default: false - type: public - returnType: boolean - hasPreAuthTokenBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setPreAuthToken: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.command.RevokePreAuthTokenResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.preauth.PreAuthToken - setPreAuthTokenBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.command.RevokePreAuthTokenResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.preauth.PreAuthToken$Builder -net.corda.data.membership.db.response.command.SuspendMemberResponse: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.response.command.SuspendMemberResponse - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getGroupParameters: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedGroupParameters - getMemberInfo: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.PersistentMemberInfo - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.response.command.SuspendMemberResponse$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.response.command.SuspendMemberResponse - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setGroupParameters: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.SignedGroupParameters - setMemberInfo: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.PersistentMemberInfo - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.response.command.SuspendMemberResponse$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.command.SuspendMemberResponse - clearGroupParameters: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.command.SuspendMemberResponse$Builder - clearMemberInfo: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.command.SuspendMemberResponse$Builder - getGroupParameters: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedGroupParameters - getGroupParametersBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedGroupParameters$Builder - getMemberInfo: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.PersistentMemberInfo - getMemberInfoBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.PersistentMemberInfo$Builder - hasGroupParameters: - annotations: [] - default: false - type: public - returnType: boolean - hasGroupParametersBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasMemberInfo: - annotations: [] - default: false - type: public - returnType: boolean - hasMemberInfoBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setGroupParameters: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.command.SuspendMemberResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.SignedGroupParameters - setGroupParametersBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.command.SuspendMemberResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.SignedGroupParameters$Builder - setMemberInfo: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.command.SuspendMemberResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.PersistentMemberInfo - setMemberInfoBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.command.SuspendMemberResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.PersistentMemberInfo$Builder -net.corda.data.membership.db.response.query.ApprovalRulesQueryResponse: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.response.query.ApprovalRulesQueryResponse - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getRules: - annotations: [] - default: false - type: public - returnType: java.util.List - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.response.query.ApprovalRulesQueryResponse$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.response.query.ApprovalRulesQueryResponse - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setRules: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.response.query.ApprovalRulesQueryResponse$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.ApprovalRulesQueryResponse - clearRules: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.ApprovalRulesQueryResponse$Builder - getRules: - annotations: [] - default: false - type: public - returnType: java.util.List - hasRules: - annotations: [] - default: false - type: public - returnType: boolean - setRules: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.ApprovalRulesQueryResponse$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.membership.db.response.query.ErrorKind: - annotations: - - AvroGenerated - type: public final class - extends: java.lang.Enum - implements: - - org.apache.avro.generic.GenericEnumSymbol - interface: false - methods: - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - valueOf: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.response.query.ErrorKind - params: {} - values: - annotations: [] - default: false - type: public static - returnType: "net.corda.data.membership.db.response.query.ErrorKind[]" - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.response.query.GroupPolicyQueryResponse: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.response.query.GroupPolicyQueryResponse - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getProperties: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getVersion: - annotations: [] - default: false - type: public - returnType: long - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.response.query.GroupPolicyQueryResponse$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.response.query.GroupPolicyQueryResponse - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setProperties: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setVersion: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: long - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.response.query.GroupPolicyQueryResponse$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.GroupPolicyQueryResponse - clearProperties: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.GroupPolicyQueryResponse$Builder - clearVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.GroupPolicyQueryResponse$Builder - getProperties: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getPropertiesBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList$Builder - getVersion: - annotations: [] - default: false - type: public - returnType: long - hasProperties: - annotations: [] - default: false - type: public - returnType: boolean - hasPropertiesBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasVersion: - annotations: [] - default: false - type: public - returnType: boolean - setProperties: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.GroupPolicyQueryResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setPropertiesBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.GroupPolicyQueryResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList$Builder - setVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.GroupPolicyQueryResponse$Builder - params: - value: - annotation: [] - type: long -net.corda.data.membership.db.response.query.MemberInfoQueryResponse: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.response.query.MemberInfoQueryResponse - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getMembers: - annotations: [] - default: false - type: public - returnType: java.util.List - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.response.query.MemberInfoQueryResponse$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.response.query.MemberInfoQueryResponse - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setMembers: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.response.query.MemberInfoQueryResponse$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.MemberInfoQueryResponse - clearMembers: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.MemberInfoQueryResponse$Builder - getMembers: - annotations: [] - default: false - type: public - returnType: java.util.List - hasMembers: - annotations: [] - default: false - type: public - returnType: boolean - setMembers: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.MemberInfoQueryResponse$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.membership.db.response.query.MemberSignature: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.response.query.MemberSignature - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSignature: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureWithKey - getSignatureSpec: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureSpec - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.response.query.MemberSignature$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.response.query.MemberSignature - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setHoldingIdentity: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setSignature: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoSignatureWithKey - setSignatureSpec: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoSignatureSpec - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.response.query.MemberSignature$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.MemberSignature - clearHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.MemberSignature$Builder - clearSignature: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.MemberSignature$Builder - clearSignatureSpec: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.MemberSignature$Builder - getHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getHoldingIdentityBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - getSignature: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureWithKey - getSignatureBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureWithKey$Builder - getSignatureSpec: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureSpec - getSignatureSpecBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.wire.CryptoSignatureSpec$Builder - hasHoldingIdentity: - annotations: [] - default: false - type: public - returnType: boolean - hasHoldingIdentityBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasSignature: - annotations: [] - default: false - type: public - returnType: boolean - hasSignatureBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasSignatureSpec: - annotations: [] - default: false - type: public - returnType: boolean - hasSignatureSpecBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.MemberSignature$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setHoldingIdentityBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.MemberSignature$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder - setSignature: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.MemberSignature$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoSignatureWithKey - setSignatureBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.MemberSignature$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoSignatureWithKey$Builder - setSignatureSpec: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.MemberSignature$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoSignatureSpec - setSignatureSpecBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.MemberSignature$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.wire.CryptoSignatureSpec$Builder -net.corda.data.membership.db.response.query.MemberSignatureQueryResponse: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.response.query.MemberSignatureQueryResponse - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getMembersSignatures: - annotations: [] - default: false - type: public - returnType: java.util.List - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.response.query.MemberSignatureQueryResponse$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.response.query.MemberSignatureQueryResponse - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setMembersSignatures: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.response.query.MemberSignatureQueryResponse$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.MemberSignatureQueryResponse - clearMembersSignatures: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.MemberSignatureQueryResponse$Builder - getMembersSignatures: - annotations: [] - default: false - type: public - returnType: java.util.List - hasMembersSignatures: - annotations: [] - default: false - type: public - returnType: boolean - setMembersSignatures: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.MemberSignatureQueryResponse$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.membership.db.response.query.MutualTlsListAllowedCertificatesResponse: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.response.query.MutualTlsListAllowedCertificatesResponse - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getSubjects: - annotations: [] - default: false - type: public - returnType: java.util.List - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.response.query.MutualTlsListAllowedCertificatesResponse$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.response.query.MutualTlsListAllowedCertificatesResponse - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setSubjects: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.response.query.MutualTlsListAllowedCertificatesResponse$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.MutualTlsListAllowedCertificatesResponse - clearSubjects: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.MutualTlsListAllowedCertificatesResponse$Builder - getSubjects: - annotations: [] - default: false - type: public - returnType: java.util.List - hasSubjects: - annotations: [] - default: false - type: public - returnType: boolean - setSubjects: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.MutualTlsListAllowedCertificatesResponse$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.membership.db.response.query.PersistenceFailedResponse: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.response.query.PersistenceFailedResponse - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getErrorKind: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.ErrorKind - getErrorMessage: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.response.query.PersistenceFailedResponse$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.response.query.PersistenceFailedResponse - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setErrorKind: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.db.response.query.ErrorKind - setErrorMessage: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.response.query.PersistenceFailedResponse$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.PersistenceFailedResponse - clearErrorKind: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.PersistenceFailedResponse$Builder - clearErrorMessage: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.PersistenceFailedResponse$Builder - getErrorKind: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.ErrorKind - getErrorMessage: - annotations: [] - default: false - type: public - returnType: String - hasErrorKind: - annotations: [] - default: false - type: public - returnType: boolean - hasErrorMessage: - annotations: [] - default: false - type: public - returnType: boolean - setErrorKind: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.PersistenceFailedResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.db.response.query.ErrorKind - setErrorMessage: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.PersistenceFailedResponse$Builder - params: - value: - annotation: [] - type: String -net.corda.data.membership.db.response.query.PreAuthTokenQueryResponse: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.response.query.PreAuthTokenQueryResponse - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getTokens: - annotations: [] - default: false - type: public - returnType: java.util.List - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.response.query.PreAuthTokenQueryResponse$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.response.query.PreAuthTokenQueryResponse - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setTokens: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.response.query.PreAuthTokenQueryResponse$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.PreAuthTokenQueryResponse - clearTokens: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.PreAuthTokenQueryResponse$Builder - getTokens: - annotations: [] - default: false - type: public - returnType: java.util.List - hasTokens: - annotations: [] - default: false - type: public - returnType: boolean - setTokens: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.PreAuthTokenQueryResponse$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.membership.db.response.query.RegistrationRequestQueryResponse: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.response.query.RegistrationRequestQueryResponse - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getRegistrationRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.RegistrationRequestDetails - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.response.query.RegistrationRequestQueryResponse$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.response.query.RegistrationRequestQueryResponse - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setRegistrationRequest: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.common.RegistrationRequestDetails - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.response.query.RegistrationRequestQueryResponse$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.RegistrationRequestQueryResponse - clearRegistrationRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.RegistrationRequestQueryResponse$Builder - getRegistrationRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.RegistrationRequestDetails - getRegistrationRequestBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.RegistrationRequestDetails$Builder - hasRegistrationRequest: - annotations: [] - default: false - type: public - returnType: boolean - hasRegistrationRequestBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setRegistrationRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.RegistrationRequestQueryResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.common.RegistrationRequestDetails - setRegistrationRequestBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.RegistrationRequestQueryResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.common.RegistrationRequestDetails$Builder -net.corda.data.membership.db.response.query.RegistrationRequestsQueryResponse: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.response.query.RegistrationRequestsQueryResponse - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getRegistrationRequests: - annotations: [] - default: false - type: public - returnType: java.util.List - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.response.query.RegistrationRequestsQueryResponse$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.response.query.RegistrationRequestsQueryResponse - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setRegistrationRequests: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.response.query.RegistrationRequestsQueryResponse$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.RegistrationRequestsQueryResponse - clearRegistrationRequests: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.RegistrationRequestsQueryResponse$Builder - getRegistrationRequests: - annotations: [] - default: false - type: public - returnType: java.util.List - hasRegistrationRequests: - annotations: [] - default: false - type: public - returnType: boolean - setRegistrationRequests: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.RegistrationRequestsQueryResponse$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.membership.db.response.query.StaticNetworkInfoQueryResponse: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.response.query.StaticNetworkInfoQueryResponse - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getInfo: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.StaticNetworkInfo - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.response.query.StaticNetworkInfoQueryResponse$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.response.query.StaticNetworkInfoQueryResponse - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setInfo: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.StaticNetworkInfo - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.response.query.StaticNetworkInfoQueryResponse$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.StaticNetworkInfoQueryResponse - clearInfo: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.StaticNetworkInfoQueryResponse$Builder - getInfo: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.StaticNetworkInfo - getInfoBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.StaticNetworkInfo$Builder - hasInfo: - annotations: [] - default: false - type: public - returnType: boolean - hasInfoBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setInfo: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.StaticNetworkInfoQueryResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.StaticNetworkInfo - setInfoBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.StaticNetworkInfoQueryResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.StaticNetworkInfo$Builder -net.corda.data.membership.db.response.query.UpdateMemberAndRegistrationRequestResponse: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.response.query.UpdateMemberAndRegistrationRequestResponse - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getMemberInfo: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.PersistentMemberInfo - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.db.response.query.UpdateMemberAndRegistrationRequestResponse$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.db.response.query.UpdateMemberAndRegistrationRequestResponse - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setMemberInfo: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.PersistentMemberInfo - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.db.response.query.UpdateMemberAndRegistrationRequestResponse$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.UpdateMemberAndRegistrationRequestResponse - clearMemberInfo: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.UpdateMemberAndRegistrationRequestResponse$Builder - getMemberInfo: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.PersistentMemberInfo - getMemberInfoBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.PersistentMemberInfo$Builder - hasMemberInfo: - annotations: [] - default: false - type: public - returnType: boolean - hasMemberInfoBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setMemberInfo: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.UpdateMemberAndRegistrationRequestResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.PersistentMemberInfo - setMemberInfoBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.db.response.query.UpdateMemberAndRegistrationRequestResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.PersistentMemberInfo$Builder -net.corda.data.membership.event.MembershipEvent: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.event.MembershipEvent - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getEvent: - annotations: [] - default: false - type: public - returnType: Object - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.event.MembershipEvent$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.event.MembershipEvent - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setEvent: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Object - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.event.MembershipEvent$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.event.MembershipEvent - clearEvent: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.event.MembershipEvent$Builder - getEvent: - annotations: [] - default: false - type: public - returnType: Object - hasEvent: - annotations: [] - default: false - type: public - returnType: boolean - setEvent: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.event.MembershipEvent$Builder - params: - value: - annotation: [] - type: Object -net.corda.data.membership.event.registration.MemberRegistrationApproved: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.event.registration.MemberRegistrationApproved - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getApprovedMember: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.event.registration.MemberRegistrationApproved$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.event.registration.MemberRegistrationApproved - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setApprovedMember: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.event.registration.MemberRegistrationApproved$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.event.registration.MemberRegistrationApproved - clearApprovedMember: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.event.registration.MemberRegistrationApproved$Builder - getApprovedMember: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getApprovedMemberBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - hasApprovedMember: - annotations: [] - default: false - type: public - returnType: boolean - hasApprovedMemberBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setApprovedMember: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.event.registration.MemberRegistrationApproved$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setApprovedMemberBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.event.registration.MemberRegistrationApproved$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder -net.corda.data.membership.event.registration.MemberRegistrationDeclined: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.event.registration.MemberRegistrationDeclined - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDeclinedMember: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.event.registration.MemberRegistrationDeclined$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.event.registration.MemberRegistrationDeclined - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setDeclinedMember: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.event.registration.MemberRegistrationDeclined$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.event.registration.MemberRegistrationDeclined - clearDeclinedMember: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.event.registration.MemberRegistrationDeclined$Builder - getDeclinedMember: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getDeclinedMemberBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - hasDeclinedMember: - annotations: [] - default: false - type: public - returnType: boolean - hasDeclinedMemberBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setDeclinedMember: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.event.registration.MemberRegistrationDeclined$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setDeclinedMemberBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.event.registration.MemberRegistrationDeclined$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder -net.corda.data.membership.event.registration.MgmOnboarded: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.event.registration.MgmOnboarded - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getOnboardedMgm: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.event.registration.MgmOnboarded$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.event.registration.MgmOnboarded - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setOnboardedMgm: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.event.registration.MgmOnboarded$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.event.registration.MgmOnboarded - clearOnboardedMgm: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.event.registration.MgmOnboarded$Builder - getOnboardedMgm: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getOnboardedMgmBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - hasOnboardedMgm: - annotations: [] - default: false - type: public - returnType: boolean - hasOnboardedMgmBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setOnboardedMgm: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.event.registration.MgmOnboarded$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setOnboardedMgmBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.event.registration.MgmOnboarded$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder -net.corda.data.membership.p2p.DistributionMetaData: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.p2p.DistributionMetaData - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getSyncId: - annotations: [] - default: false - type: public - returnType: String - getSyncRequested: - annotations: [] - default: false - type: public - returnType: java.time.Instant - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.p2p.DistributionMetaData$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.p2p.DistributionMetaData - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setSyncId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setSyncRequested: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.p2p.DistributionMetaData$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.DistributionMetaData - clearSyncId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.DistributionMetaData$Builder - clearSyncRequested: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.DistributionMetaData$Builder - getSyncId: - annotations: [] - default: false - type: public - returnType: String - getSyncRequested: - annotations: [] - default: false - type: public - returnType: java.time.Instant - hasSyncId: - annotations: [] - default: false - type: public - returnType: boolean - hasSyncRequested: - annotations: [] - default: false - type: public - returnType: boolean - setSyncId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.DistributionMetaData$Builder - params: - value: - annotation: [] - type: String - setSyncRequested: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.DistributionMetaData$Builder - params: - value: - annotation: [] - type: java.time.Instant -net.corda.data.membership.p2p.DistributionType: - annotations: - - AvroGenerated - type: public final class - extends: java.lang.Enum - implements: - - org.apache.avro.generic.GenericEnumSymbol - interface: false - methods: - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - valueOf: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.p2p.DistributionType - params: {} - values: - annotations: [] - default: false - type: public static - returnType: "net.corda.data.membership.p2p.DistributionType[]" - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.p2p.MembershipPackage: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.p2p.MembershipPackage - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getCurrentPage: - annotations: [] - default: false - type: public - returnType: int - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getDistributionMetaData: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.DistributionMetaData - getDistributionType: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.DistributionType - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getGroupParameters: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedGroupParameters - getMemberships: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.SignedMemberships - getPageCount: - annotations: [] - default: false - type: public - returnType: int - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.p2p.MembershipPackage$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.p2p.MembershipPackage - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setCurrentPage: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - setDistributionMetaData: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.p2p.DistributionMetaData - setDistributionType: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.p2p.DistributionType - setGroupParameters: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.SignedGroupParameters - setMemberships: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.p2p.SignedMemberships - setPageCount: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.p2p.MembershipPackage$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipPackage - clearCurrentPage: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipPackage$Builder - clearDistributionMetaData: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipPackage$Builder - clearDistributionType: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipPackage$Builder - clearGroupParameters: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipPackage$Builder - clearMemberships: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipPackage$Builder - clearPageCount: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipPackage$Builder - getCurrentPage: - annotations: [] - default: false - type: public - returnType: int - getDistributionMetaData: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.DistributionMetaData - getDistributionMetaDataBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.DistributionMetaData$Builder - getDistributionType: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.DistributionType - getGroupParameters: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedGroupParameters - getGroupParametersBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedGroupParameters$Builder - getMemberships: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.SignedMemberships - getMembershipsBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.SignedMemberships$Builder - getPageCount: - annotations: [] - default: false - type: public - returnType: int - hasCurrentPage: - annotations: [] - default: false - type: public - returnType: boolean - hasDistributionMetaData: - annotations: [] - default: false - type: public - returnType: boolean - hasDistributionMetaDataBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasDistributionType: - annotations: [] - default: false - type: public - returnType: boolean - hasGroupParameters: - annotations: [] - default: false - type: public - returnType: boolean - hasGroupParametersBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasMemberships: - annotations: [] - default: false - type: public - returnType: boolean - hasMembershipsBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasPageCount: - annotations: [] - default: false - type: public - returnType: boolean - setCurrentPage: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipPackage$Builder - params: - value: - annotation: [] - type: int - setDistributionMetaData: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipPackage$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.p2p.DistributionMetaData - setDistributionMetaDataBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipPackage$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.p2p.DistributionMetaData$Builder - setDistributionType: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipPackage$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.p2p.DistributionType - setGroupParameters: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipPackage$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.SignedGroupParameters - setGroupParametersBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipPackage$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.SignedGroupParameters$Builder - setMemberships: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipPackage$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.p2p.SignedMemberships - setMembershipsBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipPackage$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.p2p.SignedMemberships$Builder - setPageCount: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipPackage$Builder - params: - value: - annotation: [] - type: int -net.corda.data.membership.p2p.MembershipRegistrationRequest: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.p2p.MembershipRegistrationRequest - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getMemberContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedData - getRegistrationContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedData - getRegistrationId: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSerial: - annotations: [] - default: false - type: public - returnType: Long - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.p2p.MembershipRegistrationRequest$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.p2p.MembershipRegistrationRequest - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setMemberContext: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.SignedData - setRegistrationContext: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.SignedData - setRegistrationId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setSerial: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Long - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.p2p.MembershipRegistrationRequest$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipRegistrationRequest - clearMemberContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipRegistrationRequest$Builder - clearRegistrationContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipRegistrationRequest$Builder - clearRegistrationId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipRegistrationRequest$Builder - clearSerial: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipRegistrationRequest$Builder - getMemberContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedData - getMemberContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedData$Builder - getRegistrationContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedData - getRegistrationContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.SignedData$Builder - getRegistrationId: - annotations: [] - default: false - type: public - returnType: String - getSerial: - annotations: [] - default: false - type: public - returnType: Long - hasMemberContext: - annotations: [] - default: false - type: public - returnType: boolean - hasMemberContextBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasRegistrationContext: - annotations: [] - default: false - type: public - returnType: boolean - hasRegistrationContextBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasRegistrationId: - annotations: [] - default: false - type: public - returnType: boolean - hasSerial: - annotations: [] - default: false - type: public - returnType: boolean - setMemberContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipRegistrationRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.SignedData - setMemberContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipRegistrationRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.SignedData$Builder - setRegistrationContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipRegistrationRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.SignedData - setRegistrationContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipRegistrationRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.SignedData$Builder - setRegistrationId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipRegistrationRequest$Builder - params: - value: - annotation: [] - type: String - setSerial: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipRegistrationRequest$Builder - params: - value: - annotation: [] - type: Long -net.corda.data.membership.p2p.MembershipSyncRequest: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.p2p.MembershipSyncRequest - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getBloomFilter: - annotations: [] - default: false - type: public - returnType: net.corda.data.sync.BloomFilter - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getCpiAllowlistHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.SecureHash - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getDistributionMetaData: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.DistributionMetaData - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getGroupParametersHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.SecureHash - getMembersHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.SecureHash - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.p2p.MembershipSyncRequest$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.p2p.MembershipSyncRequest - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setBloomFilter: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.sync.BloomFilter - setCpiAllowlistHash: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.crypto.SecureHash - setDistributionMetaData: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.p2p.DistributionMetaData - setGroupParametersHash: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.crypto.SecureHash - setMembersHash: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.crypto.SecureHash - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.p2p.MembershipSyncRequest$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipSyncRequest - clearBloomFilter: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipSyncRequest$Builder - clearCpiAllowlistHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipSyncRequest$Builder - clearDistributionMetaData: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipSyncRequest$Builder - clearGroupParametersHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipSyncRequest$Builder - clearMembersHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipSyncRequest$Builder - getBloomFilter: - annotations: [] - default: false - type: public - returnType: net.corda.data.sync.BloomFilter - getBloomFilterBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.sync.BloomFilter$Builder - getCpiAllowlistHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.SecureHash - getCpiAllowlistHashBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.SecureHash$Builder - getDistributionMetaData: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.DistributionMetaData - getDistributionMetaDataBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.DistributionMetaData$Builder - getGroupParametersHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.SecureHash - getGroupParametersHashBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.SecureHash$Builder - getMembersHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.SecureHash - getMembersHashBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.SecureHash$Builder - hasBloomFilter: - annotations: [] - default: false - type: public - returnType: boolean - hasBloomFilterBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasCpiAllowlistHash: - annotations: [] - default: false - type: public - returnType: boolean - hasCpiAllowlistHashBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasDistributionMetaData: - annotations: [] - default: false - type: public - returnType: boolean - hasDistributionMetaDataBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasGroupParametersHash: - annotations: [] - default: false - type: public - returnType: boolean - hasGroupParametersHashBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasMembersHash: - annotations: [] - default: false - type: public - returnType: boolean - hasMembersHashBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setBloomFilter: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipSyncRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.sync.BloomFilter - setBloomFilterBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipSyncRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.sync.BloomFilter$Builder - setCpiAllowlistHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipSyncRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.SecureHash - setCpiAllowlistHashBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipSyncRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.SecureHash$Builder - setDistributionMetaData: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipSyncRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.p2p.DistributionMetaData - setDistributionMetaDataBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipSyncRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.p2p.DistributionMetaData$Builder - setGroupParametersHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipSyncRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.SecureHash - setGroupParametersHashBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipSyncRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.SecureHash$Builder - setMembersHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipSyncRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.SecureHash - setMembersHashBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.MembershipSyncRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.SecureHash$Builder -net.corda.data.membership.p2p.SetOwnRegistrationStatus: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.p2p.SetOwnRegistrationStatus - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getNewStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.RegistrationStatus - getRegistrationId: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.p2p.SetOwnRegistrationStatus$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.p2p.SetOwnRegistrationStatus - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setNewStatus: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.common.RegistrationStatus - setRegistrationId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.p2p.SetOwnRegistrationStatus$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.SetOwnRegistrationStatus - clearNewStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.SetOwnRegistrationStatus$Builder - clearRegistrationId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.SetOwnRegistrationStatus$Builder - getNewStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.RegistrationStatus - getRegistrationId: - annotations: [] - default: false - type: public - returnType: String - hasNewStatus: - annotations: [] - default: false - type: public - returnType: boolean - hasRegistrationId: - annotations: [] - default: false - type: public - returnType: boolean - setNewStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.SetOwnRegistrationStatus$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.common.RegistrationStatus - setRegistrationId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.SetOwnRegistrationStatus$Builder - params: - value: - annotation: [] - type: String -net.corda.data.membership.p2p.SignedMemberships: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.p2p.SignedMemberships - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getHashCheck: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.SecureHash - getMemberships: - annotations: [] - default: false - type: public - returnType: java.util.List - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.p2p.SignedMemberships$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.p2p.SignedMemberships - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setHashCheck: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.crypto.SecureHash - setMemberships: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.p2p.SignedMemberships$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.SignedMemberships - clearHashCheck: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.SignedMemberships$Builder - clearMemberships: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.SignedMemberships$Builder - getHashCheck: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.SecureHash - getHashCheckBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.SecureHash$Builder - getMemberships: - annotations: [] - default: false - type: public - returnType: java.util.List - hasHashCheck: - annotations: [] - default: false - type: public - returnType: boolean - hasHashCheckBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasMemberships: - annotations: [] - default: false - type: public - returnType: boolean - setHashCheck: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.SignedMemberships$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.SecureHash - setHashCheckBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.SignedMemberships$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.SecureHash$Builder - setMemberships: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.SignedMemberships$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.membership.p2p.UnauthenticatedRegistrationRequest: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequest - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getHeader: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequestHeader - getPayload: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequest$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequest - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setHeader: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequestHeader - setPayload: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.p2p.UnauthenticatedRegistrationRequest$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequest - clearHeader: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequest$Builder - clearPayload: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequest$Builder - getHeader: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequestHeader - getHeaderBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequestHeader$Builder - getPayload: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - hasHeader: - annotations: [] - default: false - type: public - returnType: boolean - hasHeaderBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasPayload: - annotations: [] - default: false - type: public - returnType: boolean - setHeader: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequestHeader - setHeaderBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequestHeader$Builder - setPayload: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequest$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer -net.corda.data.membership.p2p.UnauthenticatedRegistrationRequestHeader: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequestHeader - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getAad: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getKey: - annotations: [] - default: false - type: public - returnType: String - getMgm: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getSalt: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequestHeader$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequestHeader - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setAad: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setKey: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setMgm: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setSalt: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.p2p.UnauthenticatedRegistrationRequestHeader$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequestHeader - clearAad: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequestHeader$Builder - clearKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequestHeader$Builder - clearMgm: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequestHeader$Builder - clearSalt: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequestHeader$Builder - getAad: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getKey: - annotations: [] - default: false - type: public - returnType: String - getMgm: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getMgmBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - getSalt: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - hasAad: - annotations: [] - default: false - type: public - returnType: boolean - hasKey: - annotations: [] - default: false - type: public - returnType: boolean - hasMgm: - annotations: [] - default: false - type: public - returnType: boolean - hasMgmBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasSalt: - annotations: [] - default: false - type: public - returnType: boolean - setAad: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequestHeader$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequestHeader$Builder - params: - value: - annotation: [] - type: String - setMgm: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequestHeader$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setMgmBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequestHeader$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder - setSalt: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.UnauthenticatedRegistrationRequestHeader$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer -net.corda.data.membership.p2p.VerificationRequest: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.p2p.VerificationRequest - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getPayload: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getRegistrationId: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.p2p.VerificationRequest$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.p2p.VerificationRequest - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setPayload: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setRegistrationId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.p2p.VerificationRequest$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.VerificationRequest - clearPayload: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.VerificationRequest$Builder - clearRegistrationId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.VerificationRequest$Builder - getPayload: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getPayloadBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList$Builder - getRegistrationId: - annotations: [] - default: false - type: public - returnType: String - hasPayload: - annotations: [] - default: false - type: public - returnType: boolean - hasPayloadBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasRegistrationId: - annotations: [] - default: false - type: public - returnType: boolean - setPayload: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.VerificationRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setPayloadBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.VerificationRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList$Builder - setRegistrationId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.VerificationRequest$Builder - params: - value: - annotation: [] - type: String -net.corda.data.membership.p2p.VerificationResponse: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.p2p.VerificationResponse - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getPayload: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getRegistrationId: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.p2p.VerificationResponse$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.p2p.VerificationResponse - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setPayload: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setRegistrationId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.p2p.VerificationResponse$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.VerificationResponse - clearPayload: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.VerificationResponse$Builder - clearRegistrationId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.VerificationResponse$Builder - getPayload: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getPayloadBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList$Builder - getRegistrationId: - annotations: [] - default: false - type: public - returnType: String - hasPayload: - annotations: [] - default: false - type: public - returnType: boolean - hasPayloadBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasRegistrationId: - annotations: [] - default: false - type: public - returnType: boolean - setPayload: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.VerificationResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setPayloadBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.VerificationResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList$Builder - setRegistrationId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.VerificationResponse$Builder - params: - value: - annotation: [] - type: String -net.corda.data.membership.p2p.v2.SetOwnRegistrationStatus: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.p2p.v2.SetOwnRegistrationStatus - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getNewStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.v2.RegistrationStatus - getReason: - annotations: [] - default: false - type: public - returnType: String - getRegistrationId: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.p2p.v2.SetOwnRegistrationStatus$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.p2p.v2.SetOwnRegistrationStatus - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setNewStatus: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.common.v2.RegistrationStatus - setReason: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setRegistrationId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.p2p.v2.SetOwnRegistrationStatus$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.v2.SetOwnRegistrationStatus - clearNewStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.v2.SetOwnRegistrationStatus$Builder - clearReason: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.v2.SetOwnRegistrationStatus$Builder - clearRegistrationId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.v2.SetOwnRegistrationStatus$Builder - getNewStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.common.v2.RegistrationStatus - getReason: - annotations: [] - default: false - type: public - returnType: String - getRegistrationId: - annotations: [] - default: false - type: public - returnType: String - hasNewStatus: - annotations: [] - default: false - type: public - returnType: boolean - hasReason: - annotations: [] - default: false - type: public - returnType: boolean - hasRegistrationId: - annotations: [] - default: false - type: public - returnType: boolean - setNewStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.v2.SetOwnRegistrationStatus$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.common.v2.RegistrationStatus - setReason: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.v2.SetOwnRegistrationStatus$Builder - params: - value: - annotation: [] - type: String - setRegistrationId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.p2p.v2.SetOwnRegistrationStatus$Builder - params: - value: - annotation: [] - type: String -net.corda.data.membership.preauth.PreAuthToken: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.preauth.PreAuthToken - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getCreationRemark: - annotations: [] - default: false - type: public - returnType: String - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getId: - annotations: [] - default: false - type: public - returnType: String - getOwnerX500Name: - annotations: [] - default: false - type: public - returnType: String - getRemovalRemark: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.preauth.PreAuthTokenStatus - getTtl: - annotations: [] - default: false - type: public - returnType: java.time.Instant - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.preauth.PreAuthToken$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.preauth.PreAuthToken - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setCreationRemark: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setOwnerX500Name: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setRemovalRemark: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setStatus: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.preauth.PreAuthTokenStatus - setTtl: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.preauth.PreAuthToken$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.preauth.PreAuthToken - clearCreationRemark: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.preauth.PreAuthToken$Builder - clearId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.preauth.PreAuthToken$Builder - clearOwnerX500Name: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.preauth.PreAuthToken$Builder - clearRemovalRemark: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.preauth.PreAuthToken$Builder - clearStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.preauth.PreAuthToken$Builder - clearTtl: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.preauth.PreAuthToken$Builder - getCreationRemark: - annotations: [] - default: false - type: public - returnType: String - getId: - annotations: [] - default: false - type: public - returnType: String - getOwnerX500Name: - annotations: [] - default: false - type: public - returnType: String - getRemovalRemark: - annotations: [] - default: false - type: public - returnType: String - getStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.preauth.PreAuthTokenStatus - getTtl: - annotations: [] - default: false - type: public - returnType: java.time.Instant - hasCreationRemark: - annotations: [] - default: false - type: public - returnType: boolean - hasId: - annotations: [] - default: false - type: public - returnType: boolean - hasOwnerX500Name: - annotations: [] - default: false - type: public - returnType: boolean - hasRemovalRemark: - annotations: [] - default: false - type: public - returnType: boolean - hasStatus: - annotations: [] - default: false - type: public - returnType: boolean - hasTtl: - annotations: [] - default: false - type: public - returnType: boolean - setCreationRemark: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.preauth.PreAuthToken$Builder - params: - value: - annotation: [] - type: String - setId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.preauth.PreAuthToken$Builder - params: - value: - annotation: [] - type: String - setOwnerX500Name: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.preauth.PreAuthToken$Builder - params: - value: - annotation: [] - type: String - setRemovalRemark: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.preauth.PreAuthToken$Builder - params: - value: - annotation: [] - type: String - setStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.preauth.PreAuthToken$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.preauth.PreAuthTokenStatus - setTtl: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.preauth.PreAuthToken$Builder - params: - value: - annotation: [] - type: java.time.Instant -net.corda.data.membership.preauth.PreAuthTokenStatus: - annotations: - - AvroGenerated - type: public final class - extends: java.lang.Enum - implements: - - org.apache.avro.generic.GenericEnumSymbol - interface: false - methods: - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - valueOf: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.preauth.PreAuthTokenStatus - params: {} - values: - annotations: [] - default: false - type: public static - returnType: "net.corda.data.membership.preauth.PreAuthTokenStatus[]" - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.rpc.request.MGMGroupPolicyRequest: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.rpc.request.MGMGroupPolicyRequest - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getHoldingIdentityId: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.rpc.request.MGMGroupPolicyRequest$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.rpc.request.MGMGroupPolicyRequest - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setHoldingIdentityId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.rpc.request.MGMGroupPolicyRequest$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.rpc.request.MGMGroupPolicyRequest - clearHoldingIdentityId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.rpc.request.MGMGroupPolicyRequest$Builder - getHoldingIdentityId: - annotations: [] - default: false - type: public - returnType: String - hasHoldingIdentityId: - annotations: [] - default: false - type: public - returnType: boolean - setHoldingIdentityId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.rpc.request.MGMGroupPolicyRequest$Builder - params: - value: - annotation: [] - type: String -net.corda.data.membership.rpc.request.MembershipRpcRequest: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.rpc.request.MembershipRpcRequest - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getRequest: - annotations: [] - default: false - type: public - returnType: Object - getRequestContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.rpc.request.MembershipRpcRequestContext - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.rpc.request.MembershipRpcRequest$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.rpc.request.MembershipRpcRequest - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setRequest: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Object - setRequestContext: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.rpc.request.MembershipRpcRequestContext - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.rpc.request.MembershipRpcRequest$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.rpc.request.MembershipRpcRequest - clearRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.rpc.request.MembershipRpcRequest$Builder - clearRequestContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.rpc.request.MembershipRpcRequest$Builder - getRequest: - annotations: [] - default: false - type: public - returnType: Object - getRequestContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.rpc.request.MembershipRpcRequestContext - getRequestContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.rpc.request.MembershipRpcRequestContext$Builder - hasRequest: - annotations: [] - default: false - type: public - returnType: boolean - hasRequestContext: - annotations: [] - default: false - type: public - returnType: boolean - hasRequestContextBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.rpc.request.MembershipRpcRequest$Builder - params: - value: - annotation: [] - type: Object - setRequestContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.rpc.request.MembershipRpcRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.rpc.request.MembershipRpcRequestContext - setRequestContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.rpc.request.MembershipRpcRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.rpc.request.MembershipRpcRequestContext$Builder -net.corda.data.membership.rpc.request.MembershipRpcRequestContext: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.rpc.request.MembershipRpcRequestContext - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getRequestId: - annotations: [] - default: false - type: public - returnType: String - getRequestTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.rpc.request.MembershipRpcRequestContext$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.rpc.request.MembershipRpcRequestContext - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setRequestId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setRequestTimestamp: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.rpc.request.MembershipRpcRequestContext$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.rpc.request.MembershipRpcRequestContext - clearRequestId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.rpc.request.MembershipRpcRequestContext$Builder - clearRequestTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.rpc.request.MembershipRpcRequestContext$Builder - getRequestId: - annotations: [] - default: false - type: public - returnType: String - getRequestTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - hasRequestId: - annotations: [] - default: false - type: public - returnType: boolean - hasRequestTimestamp: - annotations: [] - default: false - type: public - returnType: boolean - setRequestId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.rpc.request.MembershipRpcRequestContext$Builder - params: - value: - annotation: [] - type: String - setRequestTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.rpc.request.MembershipRpcRequestContext$Builder - params: - value: - annotation: [] - type: java.time.Instant -net.corda.data.membership.rpc.response.MGMGroupPolicyResponse: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.rpc.response.MGMGroupPolicyResponse - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getGroupPolicy: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.rpc.response.MGMGroupPolicyResponse$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.rpc.response.MGMGroupPolicyResponse - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setGroupPolicy: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.rpc.response.MGMGroupPolicyResponse$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.rpc.response.MGMGroupPolicyResponse - clearGroupPolicy: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.rpc.response.MGMGroupPolicyResponse$Builder - getGroupPolicy: - annotations: [] - default: false - type: public - returnType: String - hasGroupPolicy: - annotations: [] - default: false - type: public - returnType: boolean - setGroupPolicy: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.rpc.response.MGMGroupPolicyResponse$Builder - params: - value: - annotation: [] - type: String -net.corda.data.membership.rpc.response.MembershipRpcResponse: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.rpc.response.MembershipRpcResponse - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getResponse: - annotations: [] - default: false - type: public - returnType: Object - getResponseContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.rpc.response.MembershipRpcResponseContext - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.rpc.response.MembershipRpcResponse$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.rpc.response.MembershipRpcResponse - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setResponse: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Object - setResponseContext: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.membership.rpc.response.MembershipRpcResponseContext - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.rpc.response.MembershipRpcResponse$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.rpc.response.MembershipRpcResponse - clearResponse: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.rpc.response.MembershipRpcResponse$Builder - clearResponseContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.rpc.response.MembershipRpcResponse$Builder - getResponse: - annotations: [] - default: false - type: public - returnType: Object - getResponseContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.rpc.response.MembershipRpcResponseContext - getResponseContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.rpc.response.MembershipRpcResponseContext$Builder - hasResponse: - annotations: [] - default: false - type: public - returnType: boolean - hasResponseContext: - annotations: [] - default: false - type: public - returnType: boolean - hasResponseContextBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setResponse: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.rpc.response.MembershipRpcResponse$Builder - params: - value: - annotation: [] - type: Object - setResponseContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.rpc.response.MembershipRpcResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.rpc.response.MembershipRpcResponseContext - setResponseContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.rpc.response.MembershipRpcResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.membership.rpc.response.MembershipRpcResponseContext$Builder -net.corda.data.membership.rpc.response.MembershipRpcResponseContext: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.rpc.response.MembershipRpcResponseContext - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getRequestId: - annotations: [] - default: false - type: public - returnType: String - getRequestTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getResponseTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.rpc.response.MembershipRpcResponseContext$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.rpc.response.MembershipRpcResponseContext - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setRequestId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setRequestTimestamp: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - setResponseTimestamp: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.rpc.response.MembershipRpcResponseContext$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.rpc.response.MembershipRpcResponseContext - clearRequestId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.rpc.response.MembershipRpcResponseContext$Builder - clearRequestTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.rpc.response.MembershipRpcResponseContext$Builder - clearResponseTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.rpc.response.MembershipRpcResponseContext$Builder - getRequestId: - annotations: [] - default: false - type: public - returnType: String - getRequestTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getResponseTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - hasRequestId: - annotations: [] - default: false - type: public - returnType: boolean - hasRequestTimestamp: - annotations: [] - default: false - type: public - returnType: boolean - hasResponseTimestamp: - annotations: [] - default: false - type: public - returnType: boolean - setRequestId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.rpc.response.MembershipRpcResponseContext$Builder - params: - value: - annotation: [] - type: String - setRequestTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.rpc.response.MembershipRpcResponseContext$Builder - params: - value: - annotation: [] - type: java.time.Instant - setResponseTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.rpc.response.MembershipRpcResponseContext$Builder - params: - value: - annotation: [] - type: java.time.Instant -net.corda.data.membership.state.CompletedCommandMetadata: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.state.CompletedCommandMetadata - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getCommand: - annotations: [] - default: false - type: public - returnType: String - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getIndex: - annotations: [] - default: false - type: public - returnType: int - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.state.CompletedCommandMetadata$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.state.CompletedCommandMetadata - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setCommand: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setIndex: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.state.CompletedCommandMetadata$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.state.CompletedCommandMetadata - clearCommand: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.state.CompletedCommandMetadata$Builder - clearIndex: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.state.CompletedCommandMetadata$Builder - getCommand: - annotations: [] - default: false - type: public - returnType: String - getIndex: - annotations: [] - default: false - type: public - returnType: int - hasCommand: - annotations: [] - default: false - type: public - returnType: boolean - hasIndex: - annotations: [] - default: false - type: public - returnType: boolean - setCommand: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.state.CompletedCommandMetadata$Builder - params: - value: - annotation: [] - type: String - setIndex: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.state.CompletedCommandMetadata$Builder - params: - value: - annotation: [] - type: int -net.corda.data.membership.state.RegistrationState: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.state.RegistrationState - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getMgm: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getPreviouslyCompletedCommands: - annotations: [] - default: false - type: public - returnType: java.util.List - getRegisteringMember: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getRegistrationId: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.membership.state.RegistrationState$Builder - params: - other: - annotation: [] - type: net.corda.data.membership.state.RegistrationState - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setMgm: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setPreviouslyCompletedCommands: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - setRegisteringMember: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setRegistrationId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.membership.state.RegistrationState$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.state.RegistrationState - clearMgm: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.state.RegistrationState$Builder - clearPreviouslyCompletedCommands: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.state.RegistrationState$Builder - clearRegisteringMember: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.state.RegistrationState$Builder - clearRegistrationId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.state.RegistrationState$Builder - getMgm: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getMgmBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - getPreviouslyCompletedCommands: - annotations: [] - default: false - type: public - returnType: java.util.List - getRegisteringMember: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getRegisteringMemberBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - getRegistrationId: - annotations: [] - default: false - type: public - returnType: String - hasMgm: - annotations: [] - default: false - type: public - returnType: boolean - hasMgmBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasPreviouslyCompletedCommands: - annotations: [] - default: false - type: public - returnType: boolean - hasRegisteringMember: - annotations: [] - default: false - type: public - returnType: boolean - hasRegisteringMemberBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasRegistrationId: - annotations: [] - default: false - type: public - returnType: boolean - setMgm: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.state.RegistrationState$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setMgmBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.state.RegistrationState$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder - setPreviouslyCompletedCommands: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.state.RegistrationState$Builder - params: - value: - annotation: [] - type: java.util.List - setRegisteringMember: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.state.RegistrationState$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setRegisteringMemberBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.state.RegistrationState$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder - setRegistrationId: - annotations: [] - default: false - type: public - returnType: net.corda.data.membership.state.RegistrationState$Builder - params: - value: - annotation: [] - type: String -net.corda.data.messaging.RPCRequest: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.messaging.RPCRequest - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getCorrelationKey: - annotations: [] - default: false - type: public - returnType: String - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getPayload: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getReplyPartition: - annotations: [] - default: false - type: public - returnType: int - getReplyTopic: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSendTime: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getSender: - annotations: [] - default: false - type: public - returnType: String - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.messaging.RPCRequest$Builder - params: - other: - annotation: [] - type: net.corda.data.messaging.RPCRequest - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setCorrelationKey: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setPayload: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setReplyPartition: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - setReplyTopic: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setSendTime: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - setSender: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.messaging.RPCRequest$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.messaging.RPCRequest - clearCorrelationKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.messaging.RPCRequest$Builder - clearPayload: - annotations: [] - default: false - type: public - returnType: net.corda.data.messaging.RPCRequest$Builder - clearReplyPartition: - annotations: [] - default: false - type: public - returnType: net.corda.data.messaging.RPCRequest$Builder - clearReplyTopic: - annotations: [] - default: false - type: public - returnType: net.corda.data.messaging.RPCRequest$Builder - clearSendTime: - annotations: [] - default: false - type: public - returnType: net.corda.data.messaging.RPCRequest$Builder - clearSender: - annotations: [] - default: false - type: public - returnType: net.corda.data.messaging.RPCRequest$Builder - getCorrelationKey: - annotations: [] - default: false - type: public - returnType: String - getPayload: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getReplyPartition: - annotations: [] - default: false - type: public - returnType: int - getReplyTopic: - annotations: [] - default: false - type: public - returnType: String - getSendTime: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getSender: - annotations: [] - default: false - type: public - returnType: String - hasCorrelationKey: - annotations: [] - default: false - type: public - returnType: boolean - hasPayload: - annotations: [] - default: false - type: public - returnType: boolean - hasReplyPartition: - annotations: [] - default: false - type: public - returnType: boolean - hasReplyTopic: - annotations: [] - default: false - type: public - returnType: boolean - hasSendTime: - annotations: [] - default: false - type: public - returnType: boolean - hasSender: - annotations: [] - default: false - type: public - returnType: boolean - setCorrelationKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.messaging.RPCRequest$Builder - params: - value: - annotation: [] - type: String - setPayload: - annotations: [] - default: false - type: public - returnType: net.corda.data.messaging.RPCRequest$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setReplyPartition: - annotations: [] - default: false - type: public - returnType: net.corda.data.messaging.RPCRequest$Builder - params: - value: - annotation: [] - type: int - setReplyTopic: - annotations: [] - default: false - type: public - returnType: net.corda.data.messaging.RPCRequest$Builder - params: - value: - annotation: [] - type: String - setSendTime: - annotations: [] - default: false - type: public - returnType: net.corda.data.messaging.RPCRequest$Builder - params: - value: - annotation: [] - type: java.time.Instant - setSender: - annotations: [] - default: false - type: public - returnType: net.corda.data.messaging.RPCRequest$Builder - params: - value: - annotation: [] - type: String -net.corda.data.messaging.RPCResponse: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.messaging.RPCResponse - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getCorrelationKey: - annotations: [] - default: false - type: public - returnType: String - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getPayload: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getResponseStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.messaging.ResponseStatus - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSendTime: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getSender: - annotations: [] - default: false - type: public - returnType: String - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.messaging.RPCResponse$Builder - params: - other: - annotation: [] - type: net.corda.data.messaging.RPCResponse - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setCorrelationKey: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setPayload: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setResponseStatus: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.messaging.ResponseStatus - setSendTime: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - setSender: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.messaging.RPCResponse$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.messaging.RPCResponse - clearCorrelationKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.messaging.RPCResponse$Builder - clearPayload: - annotations: [] - default: false - type: public - returnType: net.corda.data.messaging.RPCResponse$Builder - clearResponseStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.messaging.RPCResponse$Builder - clearSendTime: - annotations: [] - default: false - type: public - returnType: net.corda.data.messaging.RPCResponse$Builder - clearSender: - annotations: [] - default: false - type: public - returnType: net.corda.data.messaging.RPCResponse$Builder - getCorrelationKey: - annotations: [] - default: false - type: public - returnType: String - getPayload: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getResponseStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.messaging.ResponseStatus - getSendTime: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getSender: - annotations: [] - default: false - type: public - returnType: String - hasCorrelationKey: - annotations: [] - default: false - type: public - returnType: boolean - hasPayload: - annotations: [] - default: false - type: public - returnType: boolean - hasResponseStatus: - annotations: [] - default: false - type: public - returnType: boolean - hasSendTime: - annotations: [] - default: false - type: public - returnType: boolean - hasSender: - annotations: [] - default: false - type: public - returnType: boolean - setCorrelationKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.messaging.RPCResponse$Builder - params: - value: - annotation: [] - type: String - setPayload: - annotations: [] - default: false - type: public - returnType: net.corda.data.messaging.RPCResponse$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setResponseStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.messaging.RPCResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.messaging.ResponseStatus - setSendTime: - annotations: [] - default: false - type: public - returnType: net.corda.data.messaging.RPCResponse$Builder - params: - value: - annotation: [] - type: java.time.Instant - setSender: - annotations: [] - default: false - type: public - returnType: net.corda.data.messaging.RPCResponse$Builder - params: - value: - annotation: [] - type: String -net.corda.data.messaging.ResponseStatus: - annotations: - - AvroGenerated - type: public final class - extends: java.lang.Enum - implements: - - org.apache.avro.generic.GenericEnumSymbol - interface: false - methods: - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - valueOf: - annotations: [] - default: false - type: public static - returnType: net.corda.data.messaging.ResponseStatus - params: {} - values: - annotations: [] - default: false - type: public static - returnType: "net.corda.data.messaging.ResponseStatus[]" - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.AuthenticatedMessageAck: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.AuthenticatedMessageAck - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getMessageId: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.AuthenticatedMessageAck$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.AuthenticatedMessageAck - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setMessageId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.AuthenticatedMessageAck$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.AuthenticatedMessageAck - clearMessageId: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.AuthenticatedMessageAck$Builder - getMessageId: - annotations: [] - default: false - type: public - returnType: String - hasMessageId: - annotations: [] - default: false - type: public - returnType: boolean - setMessageId: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.AuthenticatedMessageAck$Builder - params: - value: - annotation: [] - type: String -net.corda.data.p2p.AuthenticatedMessageAndKey: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.AuthenticatedMessageAndKey - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getKey: - annotations: [] - default: false - type: public - returnType: String - getMessage: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.AuthenticatedMessage - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.AuthenticatedMessageAndKey$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.AuthenticatedMessageAndKey - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setKey: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setMessage: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.p2p.app.AuthenticatedMessage - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.AuthenticatedMessageAndKey$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.AuthenticatedMessageAndKey - clearKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.AuthenticatedMessageAndKey$Builder - clearMessage: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.AuthenticatedMessageAndKey$Builder - getKey: - annotations: [] - default: false - type: public - returnType: String - getMessage: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.AuthenticatedMessage - getMessageBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.AuthenticatedMessage$Builder - hasKey: - annotations: [] - default: false - type: public - returnType: boolean - hasMessage: - annotations: [] - default: false - type: public - returnType: boolean - hasMessageBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.AuthenticatedMessageAndKey$Builder - params: - value: - annotation: [] - type: String - setMessage: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.AuthenticatedMessageAndKey$Builder - params: - value: - annotation: [] - type: net.corda.data.p2p.app.AuthenticatedMessage - setMessageBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.AuthenticatedMessageAndKey$Builder - params: - value: - annotation: [] - type: net.corda.data.p2p.app.AuthenticatedMessage$Builder -net.corda.data.p2p.AuthenticatedMessageDeliveryState: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.AuthenticatedMessageDeliveryState - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getMessage: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.AuthenticatedMessageAndKey - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getTimestamp: - annotations: [] - default: false - type: public - returnType: long - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.AuthenticatedMessageDeliveryState$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.AuthenticatedMessageDeliveryState - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setMessage: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.p2p.AuthenticatedMessageAndKey - setTimestamp: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: long - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.AuthenticatedMessageDeliveryState$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.AuthenticatedMessageDeliveryState - clearMessage: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.AuthenticatedMessageDeliveryState$Builder - clearTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.AuthenticatedMessageDeliveryState$Builder - getMessage: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.AuthenticatedMessageAndKey - getMessageBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.AuthenticatedMessageAndKey$Builder - getTimestamp: - annotations: [] - default: false - type: public - returnType: long - hasMessage: - annotations: [] - default: false - type: public - returnType: boolean - hasMessageBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasTimestamp: - annotations: [] - default: false - type: public - returnType: boolean - setMessage: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.AuthenticatedMessageDeliveryState$Builder - params: - value: - annotation: [] - type: net.corda.data.p2p.AuthenticatedMessageAndKey - setMessageBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.AuthenticatedMessageDeliveryState$Builder - params: - value: - annotation: [] - type: net.corda.data.p2p.AuthenticatedMessageAndKey$Builder - setTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.AuthenticatedMessageDeliveryState$Builder - params: - value: - annotation: [] - type: long -net.corda.data.p2p.DataMessagePayload: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.DataMessagePayload - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getMessage: - annotations: [] - default: false - type: public - returnType: Object - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.DataMessagePayload$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.DataMessagePayload - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setMessage: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Object - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.DataMessagePayload$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.DataMessagePayload - clearMessage: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.DataMessagePayload$Builder - getMessage: - annotations: [] - default: false - type: public - returnType: Object - hasMessage: - annotations: [] - default: false - type: public - returnType: boolean - setMessage: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.DataMessagePayload$Builder - params: - value: - annotation: [] - type: Object -net.corda.data.p2p.GatewayTlsCertificates: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.GatewayTlsCertificates - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getTenantId: - annotations: [] - default: false - type: public - returnType: String - getTlsCertificates: - annotations: [] - default: false - type: public - returnType: java.util.List - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.GatewayTlsCertificates$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.GatewayTlsCertificates - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setHoldingIdentity: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setTenantId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setTlsCertificates: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.GatewayTlsCertificates$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.GatewayTlsCertificates - clearHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.GatewayTlsCertificates$Builder - clearTenantId: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.GatewayTlsCertificates$Builder - clearTlsCertificates: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.GatewayTlsCertificates$Builder - getHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getHoldingIdentityBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - getTenantId: - annotations: [] - default: false - type: public - returnType: String - getTlsCertificates: - annotations: [] - default: false - type: public - returnType: java.util.List - hasHoldingIdentity: - annotations: [] - default: false - type: public - returnType: boolean - hasHoldingIdentityBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasTenantId: - annotations: [] - default: false - type: public - returnType: boolean - hasTlsCertificates: - annotations: [] - default: false - type: public - returnType: boolean - setHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.GatewayTlsCertificates$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setHoldingIdentityBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.GatewayTlsCertificates$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder - setTenantId: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.GatewayTlsCertificates$Builder - params: - value: - annotation: [] - type: String - setTlsCertificates: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.GatewayTlsCertificates$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.p2p.GatewayTruststore: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.GatewayTruststore - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSourceIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getTrustedCertificates: - annotations: [] - default: false - type: public - returnType: java.util.List - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.GatewayTruststore$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.GatewayTruststore - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setSourceIdentity: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setTrustedCertificates: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.GatewayTruststore$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.GatewayTruststore - clearSourceIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.GatewayTruststore$Builder - clearTrustedCertificates: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.GatewayTruststore$Builder - getSourceIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getSourceIdentityBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - getTrustedCertificates: - annotations: [] - default: false - type: public - returnType: java.util.List - hasSourceIdentity: - annotations: [] - default: false - type: public - returnType: boolean - hasSourceIdentityBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasTrustedCertificates: - annotations: [] - default: false - type: public - returnType: boolean - setSourceIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.GatewayTruststore$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setSourceIdentityBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.GatewayTruststore$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder - setTrustedCertificates: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.GatewayTruststore$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.p2p.HeartbeatMessage: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.HeartbeatMessage - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.HeartbeatMessage$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.HeartbeatMessage - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.HeartbeatMessage$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.HeartbeatMessage -net.corda.data.p2p.HeartbeatMessageAck: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.HeartbeatMessageAck - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.HeartbeatMessageAck$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.HeartbeatMessageAck - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.HeartbeatMessageAck$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.HeartbeatMessageAck -net.corda.data.p2p.HostedIdentityEntry: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.HostedIdentityEntry - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getAlternativeSessionKeysAndCerts: - annotations: [] - default: false - type: public - returnType: java.util.List - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getPreferredSessionKeyAndCert: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.HostedIdentitySessionKeyAndCert - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getTlsCertificates: - annotations: [] - default: false - type: public - returnType: java.util.List - getTlsTenantId: - annotations: [] - default: false - type: public - returnType: String - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.HostedIdentityEntry$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.HostedIdentityEntry - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setAlternativeSessionKeysAndCerts: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - setHoldingIdentity: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setPreferredSessionKeyAndCert: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.p2p.HostedIdentitySessionKeyAndCert - setTlsCertificates: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - setTlsTenantId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.HostedIdentityEntry$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.HostedIdentityEntry - clearAlternativeSessionKeysAndCerts: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.HostedIdentityEntry$Builder - clearHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.HostedIdentityEntry$Builder - clearPreferredSessionKeyAndCert: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.HostedIdentityEntry$Builder - clearTlsCertificates: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.HostedIdentityEntry$Builder - clearTlsTenantId: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.HostedIdentityEntry$Builder - getAlternativeSessionKeysAndCerts: - annotations: [] - default: false - type: public - returnType: java.util.List - getHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getHoldingIdentityBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - getPreferredSessionKeyAndCert: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.HostedIdentitySessionKeyAndCert - getPreferredSessionKeyAndCertBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.HostedIdentitySessionKeyAndCert$Builder - getTlsCertificates: - annotations: [] - default: false - type: public - returnType: java.util.List - getTlsTenantId: - annotations: [] - default: false - type: public - returnType: String - hasAlternativeSessionKeysAndCerts: - annotations: [] - default: false - type: public - returnType: boolean - hasHoldingIdentity: - annotations: [] - default: false - type: public - returnType: boolean - hasHoldingIdentityBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasPreferredSessionKeyAndCert: - annotations: [] - default: false - type: public - returnType: boolean - hasPreferredSessionKeyAndCertBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasTlsCertificates: - annotations: [] - default: false - type: public - returnType: boolean - hasTlsTenantId: - annotations: [] - default: false - type: public - returnType: boolean - setAlternativeSessionKeysAndCerts: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.HostedIdentityEntry$Builder - params: - value: - annotation: [] - type: java.util.List - setHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.HostedIdentityEntry$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setHoldingIdentityBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.HostedIdentityEntry$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder - setPreferredSessionKeyAndCert: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.HostedIdentityEntry$Builder - params: - value: - annotation: [] - type: net.corda.data.p2p.HostedIdentitySessionKeyAndCert - setPreferredSessionKeyAndCertBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.HostedIdentityEntry$Builder - params: - value: - annotation: [] - type: net.corda.data.p2p.HostedIdentitySessionKeyAndCert$Builder - setTlsCertificates: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.HostedIdentityEntry$Builder - params: - value: - annotation: [] - type: java.util.List - setTlsTenantId: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.HostedIdentityEntry$Builder - params: - value: - annotation: [] - type: String -net.corda.data.p2p.HostedIdentitySessionKeyAndCert: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.HostedIdentitySessionKeyAndCert - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSessionCertificates: - annotations: [] - default: false - type: public - returnType: java.util.List - getSessionPublicKey: - annotations: [] - default: false - type: public - returnType: String - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.HostedIdentitySessionKeyAndCert$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.HostedIdentitySessionKeyAndCert - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setSessionCertificates: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - setSessionPublicKey: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.HostedIdentitySessionKeyAndCert$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.HostedIdentitySessionKeyAndCert - clearSessionCertificates: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.HostedIdentitySessionKeyAndCert$Builder - clearSessionPublicKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.HostedIdentitySessionKeyAndCert$Builder - getSessionCertificates: - annotations: [] - default: false - type: public - returnType: java.util.List - getSessionPublicKey: - annotations: [] - default: false - type: public - returnType: String - hasSessionCertificates: - annotations: [] - default: false - type: public - returnType: boolean - hasSessionPublicKey: - annotations: [] - default: false - type: public - returnType: boolean - setSessionCertificates: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.HostedIdentitySessionKeyAndCert$Builder - params: - value: - annotation: [] - type: java.util.List - setSessionPublicKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.HostedIdentitySessionKeyAndCert$Builder - params: - value: - annotation: [] - type: String -net.corda.data.p2p.LinkInMessage: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.LinkInMessage - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getPayload: - annotations: [] - default: false - type: public - returnType: Object - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.LinkInMessage$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.LinkInMessage - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setPayload: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Object - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.LinkInMessage$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.LinkInMessage - clearPayload: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.LinkInMessage$Builder - getPayload: - annotations: [] - default: false - type: public - returnType: Object - hasPayload: - annotations: [] - default: false - type: public - returnType: boolean - setPayload: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.LinkInMessage$Builder - params: - value: - annotation: [] - type: Object -net.corda.data.p2p.LinkOutHeader: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.LinkOutHeader - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getAddress: - annotations: [] - default: false - type: public - returnType: String - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getDestinationIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getDestinationNetworkType: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.NetworkType - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSourceIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.LinkOutHeader$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.LinkOutHeader - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setAddress: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setDestinationIdentity: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setDestinationNetworkType: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.p2p.NetworkType - setSourceIdentity: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.LinkOutHeader$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.LinkOutHeader - clearAddress: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.LinkOutHeader$Builder - clearDestinationIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.LinkOutHeader$Builder - clearDestinationNetworkType: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.LinkOutHeader$Builder - clearSourceIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.LinkOutHeader$Builder - getAddress: - annotations: [] - default: false - type: public - returnType: String - getDestinationIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getDestinationIdentityBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - getDestinationNetworkType: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.NetworkType - getSourceIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getSourceIdentityBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - hasAddress: - annotations: [] - default: false - type: public - returnType: boolean - hasDestinationIdentity: - annotations: [] - default: false - type: public - returnType: boolean - hasDestinationIdentityBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasDestinationNetworkType: - annotations: [] - default: false - type: public - returnType: boolean - hasSourceIdentity: - annotations: [] - default: false - type: public - returnType: boolean - hasSourceIdentityBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setAddress: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.LinkOutHeader$Builder - params: - value: - annotation: [] - type: String - setDestinationIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.LinkOutHeader$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setDestinationIdentityBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.LinkOutHeader$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder - setDestinationNetworkType: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.LinkOutHeader$Builder - params: - value: - annotation: [] - type: net.corda.data.p2p.NetworkType - setSourceIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.LinkOutHeader$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setSourceIdentityBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.LinkOutHeader$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder -net.corda.data.p2p.LinkOutMessage: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.LinkOutMessage - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getHeader: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.LinkOutHeader - getPayload: - annotations: [] - default: false - type: public - returnType: Object - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.LinkOutMessage$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.LinkOutMessage - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setHeader: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.p2p.LinkOutHeader - setPayload: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Object - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.LinkOutMessage$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.LinkOutMessage - clearHeader: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.LinkOutMessage$Builder - clearPayload: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.LinkOutMessage$Builder - getHeader: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.LinkOutHeader - getHeaderBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.LinkOutHeader$Builder - getPayload: - annotations: [] - default: false - type: public - returnType: Object - hasHeader: - annotations: [] - default: false - type: public - returnType: boolean - hasHeaderBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasPayload: - annotations: [] - default: false - type: public - returnType: boolean - setHeader: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.LinkOutMessage$Builder - params: - value: - annotation: [] - type: net.corda.data.p2p.LinkOutHeader - setHeaderBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.LinkOutMessage$Builder - params: - value: - annotation: [] - type: net.corda.data.p2p.LinkOutHeader$Builder - setPayload: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.LinkOutMessage$Builder - params: - value: - annotation: [] - type: Object -net.corda.data.p2p.MessageAck: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.MessageAck - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getAck: - annotations: [] - default: false - type: public - returnType: Object - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.MessageAck$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.MessageAck - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setAck: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Object - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.MessageAck$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.MessageAck - clearAck: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.MessageAck$Builder - getAck: - annotations: [] - default: false - type: public - returnType: Object - hasAck: - annotations: [] - default: false - type: public - returnType: boolean - setAck: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.MessageAck$Builder - params: - value: - annotation: [] - type: Object -net.corda.data.p2p.NetworkType: - annotations: - - AvroGenerated - type: public final class - extends: java.lang.Enum - implements: - - org.apache.avro.generic.GenericEnumSymbol - interface: false - methods: - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - valueOf: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.NetworkType - params: {} - values: - annotations: [] - default: false - type: public static - returnType: "net.corda.data.p2p.NetworkType[]" - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.SessionPartitions: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.SessionPartitions - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getPartitions: - annotations: [] - default: false - type: public - returnType: java.util.List - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.SessionPartitions$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.SessionPartitions - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setPartitions: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.SessionPartitions$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.SessionPartitions - clearPartitions: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.SessionPartitions$Builder - getPartitions: - annotations: [] - default: false - type: public - returnType: java.util.List - hasPartitions: - annotations: [] - default: false - type: public - returnType: boolean - setPartitions: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.SessionPartitions$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.p2p.app.AppMessage: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.app.AppMessage - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getMessage: - annotations: [] - default: false - type: public - returnType: Object - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.app.AppMessage$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.app.AppMessage - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setMessage: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Object - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.app.AppMessage$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.AppMessage - clearMessage: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.AppMessage$Builder - getMessage: - annotations: [] - default: false - type: public - returnType: Object - hasMessage: - annotations: [] - default: false - type: public - returnType: boolean - setMessage: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.AppMessage$Builder - params: - value: - annotation: [] - type: Object -net.corda.data.p2p.app.AuthenticatedMessage: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.app.AuthenticatedMessage - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getHeader: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.AuthenticatedMessageHeader - getPayload: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.app.AuthenticatedMessage$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.app.AuthenticatedMessage - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setHeader: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.p2p.app.AuthenticatedMessageHeader - setPayload: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.app.AuthenticatedMessage$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.AuthenticatedMessage - clearHeader: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.AuthenticatedMessage$Builder - clearPayload: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.AuthenticatedMessage$Builder - getHeader: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.AuthenticatedMessageHeader - getHeaderBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.AuthenticatedMessageHeader$Builder - getPayload: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - hasHeader: - annotations: [] - default: false - type: public - returnType: boolean - hasHeaderBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasPayload: - annotations: [] - default: false - type: public - returnType: boolean - setHeader: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.AuthenticatedMessage$Builder - params: - value: - annotation: [] - type: net.corda.data.p2p.app.AuthenticatedMessageHeader - setHeaderBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.AuthenticatedMessage$Builder - params: - value: - annotation: [] - type: net.corda.data.p2p.app.AuthenticatedMessageHeader$Builder - setPayload: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.AuthenticatedMessage$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer -net.corda.data.p2p.app.AuthenticatedMessageHeader: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.app.AuthenticatedMessageHeader - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getDestination: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getMessageId: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSource: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getStatusFilter: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.MembershipStatusFilter - getSubsystem: - annotations: [] - default: false - type: public - returnType: String - getTraceId: - annotations: [] - default: false - type: public - returnType: String - getTtl: - annotations: [] - default: false - type: public - returnType: java.time.Instant - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.app.AuthenticatedMessageHeader$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.app.AuthenticatedMessageHeader - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setDestination: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setMessageId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setSource: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setStatusFilter: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.p2p.app.MembershipStatusFilter - setSubsystem: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setTraceId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setTtl: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.app.AuthenticatedMessageHeader$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.AuthenticatedMessageHeader - clearDestination: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.AuthenticatedMessageHeader$Builder - clearMessageId: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.AuthenticatedMessageHeader$Builder - clearSource: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.AuthenticatedMessageHeader$Builder - clearStatusFilter: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.AuthenticatedMessageHeader$Builder - clearSubsystem: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.AuthenticatedMessageHeader$Builder - clearTraceId: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.AuthenticatedMessageHeader$Builder - clearTtl: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.AuthenticatedMessageHeader$Builder - getDestination: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getDestinationBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - getMessageId: - annotations: [] - default: false - type: public - returnType: String - getSource: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getSourceBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - getStatusFilter: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.MembershipStatusFilter - getSubsystem: - annotations: [] - default: false - type: public - returnType: String - getTraceId: - annotations: [] - default: false - type: public - returnType: String - getTtl: - annotations: [] - default: false - type: public - returnType: java.time.Instant - hasDestination: - annotations: [] - default: false - type: public - returnType: boolean - hasDestinationBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasMessageId: - annotations: [] - default: false - type: public - returnType: boolean - hasSource: - annotations: [] - default: false - type: public - returnType: boolean - hasSourceBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasStatusFilter: - annotations: [] - default: false - type: public - returnType: boolean - hasSubsystem: - annotations: [] - default: false - type: public - returnType: boolean - hasTraceId: - annotations: [] - default: false - type: public - returnType: boolean - hasTtl: - annotations: [] - default: false - type: public - returnType: boolean - setDestination: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.AuthenticatedMessageHeader$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setDestinationBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.AuthenticatedMessageHeader$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder - setMessageId: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.AuthenticatedMessageHeader$Builder - params: - value: - annotation: [] - type: String - setSource: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.AuthenticatedMessageHeader$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setSourceBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.AuthenticatedMessageHeader$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder - setStatusFilter: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.AuthenticatedMessageHeader$Builder - params: - value: - annotation: [] - type: net.corda.data.p2p.app.MembershipStatusFilter - setSubsystem: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.AuthenticatedMessageHeader$Builder - params: - value: - annotation: [] - type: String - setTraceId: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.AuthenticatedMessageHeader$Builder - params: - value: - annotation: [] - type: String - setTtl: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.AuthenticatedMessageHeader$Builder - params: - value: - annotation: [] - type: java.time.Instant -net.corda.data.p2p.app.InboundUnauthenticatedMessage: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.app.InboundUnauthenticatedMessage - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getHeader: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.InboundUnauthenticatedMessageHeader - getPayload: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.app.InboundUnauthenticatedMessage$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.app.InboundUnauthenticatedMessage - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setHeader: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.p2p.app.InboundUnauthenticatedMessageHeader - setPayload: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.app.InboundUnauthenticatedMessage$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.InboundUnauthenticatedMessage - clearHeader: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.InboundUnauthenticatedMessage$Builder - clearPayload: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.InboundUnauthenticatedMessage$Builder - getHeader: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.InboundUnauthenticatedMessageHeader - getHeaderBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.InboundUnauthenticatedMessageHeader$Builder - getPayload: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - hasHeader: - annotations: [] - default: false - type: public - returnType: boolean - hasHeaderBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasPayload: - annotations: [] - default: false - type: public - returnType: boolean - setHeader: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.InboundUnauthenticatedMessage$Builder - params: - value: - annotation: [] - type: net.corda.data.p2p.app.InboundUnauthenticatedMessageHeader - setHeaderBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.InboundUnauthenticatedMessage$Builder - params: - value: - annotation: [] - type: net.corda.data.p2p.app.InboundUnauthenticatedMessageHeader$Builder - setPayload: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.InboundUnauthenticatedMessage$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer -net.corda.data.p2p.app.InboundUnauthenticatedMessageHeader: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.app.InboundUnauthenticatedMessageHeader - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getMessageId: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getSubsystem: - annotations: [] - default: false - type: public - returnType: String - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.app.InboundUnauthenticatedMessageHeader$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.app.InboundUnauthenticatedMessageHeader - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setMessageId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setSubsystem: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.app.InboundUnauthenticatedMessageHeader$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.InboundUnauthenticatedMessageHeader - clearMessageId: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.InboundUnauthenticatedMessageHeader$Builder - clearSubsystem: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.InboundUnauthenticatedMessageHeader$Builder - getMessageId: - annotations: [] - default: false - type: public - returnType: String - getSubsystem: - annotations: [] - default: false - type: public - returnType: String - hasMessageId: - annotations: [] - default: false - type: public - returnType: boolean - hasSubsystem: - annotations: [] - default: false - type: public - returnType: boolean - setMessageId: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.InboundUnauthenticatedMessageHeader$Builder - params: - value: - annotation: [] - type: String - setSubsystem: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.InboundUnauthenticatedMessageHeader$Builder - params: - value: - annotation: [] - type: String -net.corda.data.p2p.app.MembershipStatusFilter: - annotations: - - AvroGenerated - type: public final class - extends: java.lang.Enum - implements: - - org.apache.avro.generic.GenericEnumSymbol - interface: false - methods: - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - valueOf: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.app.MembershipStatusFilter - params: {} - values: - annotations: [] - default: false - type: public static - returnType: "net.corda.data.p2p.app.MembershipStatusFilter[]" - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.app.OutboundUnauthenticatedMessage: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.app.OutboundUnauthenticatedMessage - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getHeader: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.OutboundUnauthenticatedMessageHeader - getPayload: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.app.OutboundUnauthenticatedMessage$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.app.OutboundUnauthenticatedMessage - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setHeader: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.p2p.app.OutboundUnauthenticatedMessageHeader - setPayload: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.app.OutboundUnauthenticatedMessage$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.OutboundUnauthenticatedMessage - clearHeader: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.OutboundUnauthenticatedMessage$Builder - clearPayload: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.OutboundUnauthenticatedMessage$Builder - getHeader: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.OutboundUnauthenticatedMessageHeader - getHeaderBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.OutboundUnauthenticatedMessageHeader$Builder - getPayload: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - hasHeader: - annotations: [] - default: false - type: public - returnType: boolean - hasHeaderBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasPayload: - annotations: [] - default: false - type: public - returnType: boolean - setHeader: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.OutboundUnauthenticatedMessage$Builder - params: - value: - annotation: [] - type: net.corda.data.p2p.app.OutboundUnauthenticatedMessageHeader - setHeaderBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.OutboundUnauthenticatedMessage$Builder - params: - value: - annotation: [] - type: net.corda.data.p2p.app.OutboundUnauthenticatedMessageHeader$Builder - setPayload: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.OutboundUnauthenticatedMessage$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer -net.corda.data.p2p.app.OutboundUnauthenticatedMessageHeader: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.app.OutboundUnauthenticatedMessageHeader - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getDestination: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getMessageId: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSource: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getSubsystem: - annotations: [] - default: false - type: public - returnType: String - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.app.OutboundUnauthenticatedMessageHeader$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.app.OutboundUnauthenticatedMessageHeader - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setDestination: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setMessageId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setSource: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setSubsystem: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.app.OutboundUnauthenticatedMessageHeader$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.OutboundUnauthenticatedMessageHeader - clearDestination: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.OutboundUnauthenticatedMessageHeader$Builder - clearMessageId: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.OutboundUnauthenticatedMessageHeader$Builder - clearSource: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.OutboundUnauthenticatedMessageHeader$Builder - clearSubsystem: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.OutboundUnauthenticatedMessageHeader$Builder - getDestination: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getDestinationBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - getMessageId: - annotations: [] - default: false - type: public - returnType: String - getSource: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getSourceBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - getSubsystem: - annotations: [] - default: false - type: public - returnType: String - hasDestination: - annotations: [] - default: false - type: public - returnType: boolean - hasDestinationBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasMessageId: - annotations: [] - default: false - type: public - returnType: boolean - hasSource: - annotations: [] - default: false - type: public - returnType: boolean - hasSourceBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasSubsystem: - annotations: [] - default: false - type: public - returnType: boolean - setDestination: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.OutboundUnauthenticatedMessageHeader$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setDestinationBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.OutboundUnauthenticatedMessageHeader$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder - setMessageId: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.OutboundUnauthenticatedMessageHeader$Builder - params: - value: - annotation: [] - type: String - setSource: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.OutboundUnauthenticatedMessageHeader$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setSourceBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.OutboundUnauthenticatedMessageHeader$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder - setSubsystem: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.app.OutboundUnauthenticatedMessageHeader$Builder - params: - value: - annotation: [] - type: String -net.corda.data.p2p.crypto.AuthenticatedDataMessage: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.crypto.AuthenticatedDataMessage - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getAuthTag: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getHeader: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.CommonHeader - getPayload: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.crypto.AuthenticatedDataMessage$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.crypto.AuthenticatedDataMessage - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setAuthTag: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setHeader: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.p2p.crypto.CommonHeader - setPayload: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.crypto.AuthenticatedDataMessage$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.AuthenticatedDataMessage - clearAuthTag: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.AuthenticatedDataMessage$Builder - clearHeader: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.AuthenticatedDataMessage$Builder - clearPayload: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.AuthenticatedDataMessage$Builder - getAuthTag: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getHeader: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.CommonHeader - getHeaderBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.CommonHeader$Builder - getPayload: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - hasAuthTag: - annotations: [] - default: false - type: public - returnType: boolean - hasHeader: - annotations: [] - default: false - type: public - returnType: boolean - hasHeaderBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasPayload: - annotations: [] - default: false - type: public - returnType: boolean - setAuthTag: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.AuthenticatedDataMessage$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setHeader: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.AuthenticatedDataMessage$Builder - params: - value: - annotation: [] - type: net.corda.data.p2p.crypto.CommonHeader - setHeaderBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.AuthenticatedDataMessage$Builder - params: - value: - annotation: [] - type: net.corda.data.p2p.crypto.CommonHeader$Builder - setPayload: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.AuthenticatedDataMessage$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer -net.corda.data.p2p.crypto.AuthenticatedEncryptedDataMessage: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.crypto.AuthenticatedEncryptedDataMessage - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getAuthTag: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getEncryptedPayload: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getHeader: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.CommonHeader - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.crypto.AuthenticatedEncryptedDataMessage$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.crypto.AuthenticatedEncryptedDataMessage - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setAuthTag: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setEncryptedPayload: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setHeader: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.p2p.crypto.CommonHeader - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.crypto.AuthenticatedEncryptedDataMessage$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.AuthenticatedEncryptedDataMessage - clearAuthTag: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.AuthenticatedEncryptedDataMessage$Builder - clearEncryptedPayload: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.AuthenticatedEncryptedDataMessage$Builder - clearHeader: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.AuthenticatedEncryptedDataMessage$Builder - getAuthTag: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getEncryptedPayload: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getHeader: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.CommonHeader - getHeaderBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.CommonHeader$Builder - hasAuthTag: - annotations: [] - default: false - type: public - returnType: boolean - hasEncryptedPayload: - annotations: [] - default: false - type: public - returnType: boolean - hasHeader: - annotations: [] - default: false - type: public - returnType: boolean - hasHeaderBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setAuthTag: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.AuthenticatedEncryptedDataMessage$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setEncryptedPayload: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.AuthenticatedEncryptedDataMessage$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setHeader: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.AuthenticatedEncryptedDataMessage$Builder - params: - value: - annotation: [] - type: net.corda.data.p2p.crypto.CommonHeader - setHeaderBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.AuthenticatedEncryptedDataMessage$Builder - params: - value: - annotation: [] - type: net.corda.data.p2p.crypto.CommonHeader$Builder -net.corda.data.p2p.crypto.CommonHeader: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.crypto.CommonHeader - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getMessageType: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.MessageType - getProtocolVersion: - annotations: [] - default: false - type: public - returnType: int - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSequenceNo: - annotations: [] - default: false - type: public - returnType: long - getSessionId: - annotations: [] - default: false - type: public - returnType: String - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getTimestamp: - annotations: [] - default: false - type: public - returnType: long - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.crypto.CommonHeader$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.crypto.CommonHeader - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setMessageType: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.p2p.crypto.MessageType - setProtocolVersion: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - setSequenceNo: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: long - setSessionId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setTimestamp: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: long - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.crypto.CommonHeader$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.CommonHeader - clearMessageType: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.CommonHeader$Builder - clearProtocolVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.CommonHeader$Builder - clearSequenceNo: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.CommonHeader$Builder - clearSessionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.CommonHeader$Builder - clearTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.CommonHeader$Builder - getMessageType: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.MessageType - getProtocolVersion: - annotations: [] - default: false - type: public - returnType: int - getSequenceNo: - annotations: [] - default: false - type: public - returnType: long - getSessionId: - annotations: [] - default: false - type: public - returnType: String - getTimestamp: - annotations: [] - default: false - type: public - returnType: long - hasMessageType: - annotations: [] - default: false - type: public - returnType: boolean - hasProtocolVersion: - annotations: [] - default: false - type: public - returnType: boolean - hasSequenceNo: - annotations: [] - default: false - type: public - returnType: boolean - hasSessionId: - annotations: [] - default: false - type: public - returnType: boolean - hasTimestamp: - annotations: [] - default: false - type: public - returnType: boolean - setMessageType: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.CommonHeader$Builder - params: - value: - annotation: [] - type: net.corda.data.p2p.crypto.MessageType - setProtocolVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.CommonHeader$Builder - params: - value: - annotation: [] - type: int - setSequenceNo: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.CommonHeader$Builder - params: - value: - annotation: [] - type: long - setSessionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.CommonHeader$Builder - params: - value: - annotation: [] - type: String - setTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.CommonHeader$Builder - params: - value: - annotation: [] - type: long -net.corda.data.p2p.crypto.InitiatorHandshakeMessage: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.crypto.InitiatorHandshakeMessage - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getAuthTag: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getEncryptedData: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getHeader: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.CommonHeader - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.crypto.InitiatorHandshakeMessage$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.crypto.InitiatorHandshakeMessage - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setAuthTag: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setEncryptedData: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setHeader: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.p2p.crypto.CommonHeader - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.crypto.InitiatorHandshakeMessage$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.InitiatorHandshakeMessage - clearAuthTag: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.InitiatorHandshakeMessage$Builder - clearEncryptedData: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.InitiatorHandshakeMessage$Builder - clearHeader: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.InitiatorHandshakeMessage$Builder - getAuthTag: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getEncryptedData: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getHeader: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.CommonHeader - getHeaderBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.CommonHeader$Builder - hasAuthTag: - annotations: [] - default: false - type: public - returnType: boolean - hasEncryptedData: - annotations: [] - default: false - type: public - returnType: boolean - hasHeader: - annotations: [] - default: false - type: public - returnType: boolean - hasHeaderBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setAuthTag: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.InitiatorHandshakeMessage$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setEncryptedData: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.InitiatorHandshakeMessage$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setHeader: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.InitiatorHandshakeMessage$Builder - params: - value: - annotation: [] - type: net.corda.data.p2p.crypto.CommonHeader - setHeaderBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.InitiatorHandshakeMessage$Builder - params: - value: - annotation: [] - type: net.corda.data.p2p.crypto.CommonHeader$Builder -net.corda.data.p2p.crypto.InitiatorHelloMessage: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.crypto.InitiatorHelloMessage - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getHeader: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.CommonHeader - getInitiatorPublicKey: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSource: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.InitiatorHandshakeIdentity - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.crypto.InitiatorHelloMessage$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.crypto.InitiatorHelloMessage - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setHeader: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.p2p.crypto.CommonHeader - setInitiatorPublicKey: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setSource: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.p2p.crypto.internal.InitiatorHandshakeIdentity - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.crypto.InitiatorHelloMessage$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.InitiatorHelloMessage - clearHeader: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.InitiatorHelloMessage$Builder - clearInitiatorPublicKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.InitiatorHelloMessage$Builder - clearSource: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.InitiatorHelloMessage$Builder - getHeader: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.CommonHeader - getHeaderBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.CommonHeader$Builder - getInitiatorPublicKey: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getSource: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.InitiatorHandshakeIdentity - getSourceBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.InitiatorHandshakeIdentity$Builder - hasHeader: - annotations: [] - default: false - type: public - returnType: boolean - hasHeaderBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasInitiatorPublicKey: - annotations: [] - default: false - type: public - returnType: boolean - hasSource: - annotations: [] - default: false - type: public - returnType: boolean - hasSourceBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setHeader: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.InitiatorHelloMessage$Builder - params: - value: - annotation: [] - type: net.corda.data.p2p.crypto.CommonHeader - setHeaderBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.InitiatorHelloMessage$Builder - params: - value: - annotation: [] - type: net.corda.data.p2p.crypto.CommonHeader$Builder - setInitiatorPublicKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.InitiatorHelloMessage$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setSource: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.InitiatorHelloMessage$Builder - params: - value: - annotation: [] - type: net.corda.data.p2p.crypto.internal.InitiatorHandshakeIdentity - setSourceBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.InitiatorHelloMessage$Builder - params: - value: - annotation: [] - type: net.corda.data.p2p.crypto.internal.InitiatorHandshakeIdentity$Builder -net.corda.data.p2p.crypto.MessageType: - annotations: - - AvroGenerated - type: public final class - extends: java.lang.Enum - implements: - - org.apache.avro.generic.GenericEnumSymbol - interface: false - methods: - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - valueOf: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.crypto.MessageType - params: {} - values: - annotations: [] - default: false - type: public static - returnType: "net.corda.data.p2p.crypto.MessageType[]" - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.crypto.ProtocolMode: - annotations: - - AvroGenerated - type: public final class - extends: java.lang.Enum - implements: - - org.apache.avro.generic.GenericEnumSymbol - interface: false - methods: - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - valueOf: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.crypto.ProtocolMode - params: {} - values: - annotations: [] - default: false - type: public static - returnType: "net.corda.data.p2p.crypto.ProtocolMode[]" - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.crypto.ResponderHandshakeMessage: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.crypto.ResponderHandshakeMessage - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getAuthTag: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getEncryptedData: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getHeader: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.CommonHeader - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.crypto.ResponderHandshakeMessage$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.crypto.ResponderHandshakeMessage - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setAuthTag: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setEncryptedData: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setHeader: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.p2p.crypto.CommonHeader - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.crypto.ResponderHandshakeMessage$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.ResponderHandshakeMessage - clearAuthTag: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.ResponderHandshakeMessage$Builder - clearEncryptedData: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.ResponderHandshakeMessage$Builder - clearHeader: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.ResponderHandshakeMessage$Builder - getAuthTag: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getEncryptedData: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getHeader: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.CommonHeader - getHeaderBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.CommonHeader$Builder - hasAuthTag: - annotations: [] - default: false - type: public - returnType: boolean - hasEncryptedData: - annotations: [] - default: false - type: public - returnType: boolean - hasHeader: - annotations: [] - default: false - type: public - returnType: boolean - hasHeaderBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setAuthTag: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.ResponderHandshakeMessage$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setEncryptedData: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.ResponderHandshakeMessage$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setHeader: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.ResponderHandshakeMessage$Builder - params: - value: - annotation: [] - type: net.corda.data.p2p.crypto.CommonHeader - setHeaderBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.ResponderHandshakeMessage$Builder - params: - value: - annotation: [] - type: net.corda.data.p2p.crypto.CommonHeader$Builder -net.corda.data.p2p.crypto.ResponderHelloMessage: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.crypto.ResponderHelloMessage - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getHeader: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.CommonHeader - getResponderPublicKey: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.crypto.ResponderHelloMessage$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.crypto.ResponderHelloMessage - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setHeader: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.p2p.crypto.CommonHeader - setResponderPublicKey: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.crypto.ResponderHelloMessage$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.ResponderHelloMessage - clearHeader: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.ResponderHelloMessage$Builder - clearResponderPublicKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.ResponderHelloMessage$Builder - getHeader: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.CommonHeader - getHeaderBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.CommonHeader$Builder - getResponderPublicKey: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - hasHeader: - annotations: [] - default: false - type: public - returnType: boolean - hasHeaderBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasResponderPublicKey: - annotations: [] - default: false - type: public - returnType: boolean - setHeader: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.ResponderHelloMessage$Builder - params: - value: - annotation: [] - type: net.corda.data.p2p.crypto.CommonHeader - setHeaderBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.ResponderHelloMessage$Builder - params: - value: - annotation: [] - type: net.corda.data.p2p.crypto.CommonHeader$Builder - setResponderPublicKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.ResponderHelloMessage$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer -net.corda.data.p2p.crypto.internal.InitiatorEncryptedExtensions: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.crypto.internal.InitiatorEncryptedExtensions - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getGroupId: - annotations: [] - default: false - type: public - returnType: String - getInitiatorCertificate: - annotations: [] - default: false - type: public - returnType: java.util.List - getMaxMessageSize: - annotations: [] - default: false - type: public - returnType: int - getResponderPublicKeyHash: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getSupportedModes: - annotations: [] - default: false - type: public - returnType: java.util.List - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.crypto.internal.InitiatorEncryptedExtensions$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.crypto.internal.InitiatorEncryptedExtensions - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setGroupId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setInitiatorCertificate: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - setMaxMessageSize: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - setResponderPublicKeyHash: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setSupportedModes: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.crypto.internal.InitiatorEncryptedExtensions$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.InitiatorEncryptedExtensions - clearGroupId: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.InitiatorEncryptedExtensions$Builder - clearInitiatorCertificate: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.InitiatorEncryptedExtensions$Builder - clearMaxMessageSize: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.InitiatorEncryptedExtensions$Builder - clearResponderPublicKeyHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.InitiatorEncryptedExtensions$Builder - clearSupportedModes: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.InitiatorEncryptedExtensions$Builder - getGroupId: - annotations: [] - default: false - type: public - returnType: String - getInitiatorCertificate: - annotations: [] - default: false - type: public - returnType: java.util.List - getMaxMessageSize: - annotations: [] - default: false - type: public - returnType: int - getResponderPublicKeyHash: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getSupportedModes: - annotations: [] - default: false - type: public - returnType: java.util.List - hasGroupId: - annotations: [] - default: false - type: public - returnType: boolean - hasInitiatorCertificate: - annotations: [] - default: false - type: public - returnType: boolean - hasMaxMessageSize: - annotations: [] - default: false - type: public - returnType: boolean - hasResponderPublicKeyHash: - annotations: [] - default: false - type: public - returnType: boolean - hasSupportedModes: - annotations: [] - default: false - type: public - returnType: boolean - setGroupId: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.InitiatorEncryptedExtensions$Builder - params: - value: - annotation: [] - type: String - setInitiatorCertificate: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.InitiatorEncryptedExtensions$Builder - params: - value: - annotation: [] - type: java.util.List - setMaxMessageSize: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.InitiatorEncryptedExtensions$Builder - params: - value: - annotation: [] - type: int - setResponderPublicKeyHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.InitiatorEncryptedExtensions$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setSupportedModes: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.InitiatorEncryptedExtensions$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.p2p.crypto.internal.InitiatorHandshakeIdentity: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.crypto.internal.InitiatorHandshakeIdentity - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getGroupId: - annotations: [] - default: false - type: public - returnType: String - getInitiatorPublicKeyHash: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.crypto.internal.InitiatorHandshakeIdentity$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.crypto.internal.InitiatorHandshakeIdentity - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setGroupId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setInitiatorPublicKeyHash: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.crypto.internal.InitiatorHandshakeIdentity$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.InitiatorHandshakeIdentity - clearGroupId: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.InitiatorHandshakeIdentity$Builder - clearInitiatorPublicKeyHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.InitiatorHandshakeIdentity$Builder - getGroupId: - annotations: [] - default: false - type: public - returnType: String - getInitiatorPublicKeyHash: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - hasGroupId: - annotations: [] - default: false - type: public - returnType: boolean - hasInitiatorPublicKeyHash: - annotations: [] - default: false - type: public - returnType: boolean - setGroupId: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.InitiatorHandshakeIdentity$Builder - params: - value: - annotation: [] - type: String - setInitiatorPublicKeyHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.InitiatorHandshakeIdentity$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer -net.corda.data.p2p.crypto.internal.InitiatorHandshakePayload: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.crypto.internal.InitiatorHandshakePayload - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getInitiatorEncryptedExtensions: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.InitiatorEncryptedExtensions - getInitiatorFinished: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getInitiatorPartyVerify: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getInitiatorPublicKeyHash: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.crypto.internal.InitiatorHandshakePayload$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.crypto.internal.InitiatorHandshakePayload - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setInitiatorEncryptedExtensions: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.p2p.crypto.internal.InitiatorEncryptedExtensions - setInitiatorFinished: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setInitiatorPartyVerify: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setInitiatorPublicKeyHash: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.crypto.internal.InitiatorHandshakePayload$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.InitiatorHandshakePayload - clearInitiatorEncryptedExtensions: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.InitiatorHandshakePayload$Builder - clearInitiatorFinished: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.InitiatorHandshakePayload$Builder - clearInitiatorPartyVerify: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.InitiatorHandshakePayload$Builder - clearInitiatorPublicKeyHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.InitiatorHandshakePayload$Builder - getInitiatorEncryptedExtensions: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.InitiatorEncryptedExtensions - getInitiatorEncryptedExtensionsBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.InitiatorEncryptedExtensions$Builder - getInitiatorFinished: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getInitiatorPartyVerify: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getInitiatorPublicKeyHash: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - hasInitiatorEncryptedExtensions: - annotations: [] - default: false - type: public - returnType: boolean - hasInitiatorEncryptedExtensionsBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasInitiatorFinished: - annotations: [] - default: false - type: public - returnType: boolean - hasInitiatorPartyVerify: - annotations: [] - default: false - type: public - returnType: boolean - hasInitiatorPublicKeyHash: - annotations: [] - default: false - type: public - returnType: boolean - setInitiatorEncryptedExtensions: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.InitiatorHandshakePayload$Builder - params: - value: - annotation: [] - type: net.corda.data.p2p.crypto.internal.InitiatorEncryptedExtensions - setInitiatorEncryptedExtensionsBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.InitiatorHandshakePayload$Builder - params: - value: - annotation: [] - type: net.corda.data.p2p.crypto.internal.InitiatorEncryptedExtensions$Builder - setInitiatorFinished: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.InitiatorHandshakePayload$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setInitiatorPartyVerify: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.InitiatorHandshakePayload$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setInitiatorPublicKeyHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.InitiatorHandshakePayload$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer -net.corda.data.p2p.crypto.internal.ResponderEncryptedExtensions: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.crypto.internal.ResponderEncryptedExtensions - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getMaxMessageSize: - annotations: [] - default: false - type: public - returnType: int - getResponderCertificate: - annotations: [] - default: false - type: public - returnType: java.util.List - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSelectedMode: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.ProtocolMode - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.crypto.internal.ResponderEncryptedExtensions$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.crypto.internal.ResponderEncryptedExtensions - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setMaxMessageSize: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - setResponderCertificate: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - setSelectedMode: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.p2p.crypto.ProtocolMode - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.crypto.internal.ResponderEncryptedExtensions$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.ResponderEncryptedExtensions - clearMaxMessageSize: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.ResponderEncryptedExtensions$Builder - clearResponderCertificate: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.ResponderEncryptedExtensions$Builder - clearSelectedMode: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.ResponderEncryptedExtensions$Builder - getMaxMessageSize: - annotations: [] - default: false - type: public - returnType: int - getResponderCertificate: - annotations: [] - default: false - type: public - returnType: java.util.List - getSelectedMode: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.ProtocolMode - hasMaxMessageSize: - annotations: [] - default: false - type: public - returnType: boolean - hasResponderCertificate: - annotations: [] - default: false - type: public - returnType: boolean - hasSelectedMode: - annotations: [] - default: false - type: public - returnType: boolean - setMaxMessageSize: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.ResponderEncryptedExtensions$Builder - params: - value: - annotation: [] - type: int - setResponderCertificate: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.ResponderEncryptedExtensions$Builder - params: - value: - annotation: [] - type: java.util.List - setSelectedMode: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.ResponderEncryptedExtensions$Builder - params: - value: - annotation: [] - type: net.corda.data.p2p.crypto.ProtocolMode -net.corda.data.p2p.crypto.internal.ResponderHandshakePayload: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.crypto.internal.ResponderHandshakePayload - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getResponderEncryptedExtensions: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.ResponderEncryptedExtensions - getResponderFinished: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getResponderPartyVerify: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getResponderPublicKeyHash: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.crypto.internal.ResponderHandshakePayload$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.crypto.internal.ResponderHandshakePayload - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setResponderEncryptedExtensions: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.p2p.crypto.internal.ResponderEncryptedExtensions - setResponderFinished: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setResponderPartyVerify: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setResponderPublicKeyHash: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.crypto.internal.ResponderHandshakePayload$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.ResponderHandshakePayload - clearResponderEncryptedExtensions: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.ResponderHandshakePayload$Builder - clearResponderFinished: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.ResponderHandshakePayload$Builder - clearResponderPartyVerify: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.ResponderHandshakePayload$Builder - clearResponderPublicKeyHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.ResponderHandshakePayload$Builder - getResponderEncryptedExtensions: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.ResponderEncryptedExtensions - getResponderEncryptedExtensionsBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.ResponderEncryptedExtensions$Builder - getResponderFinished: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getResponderPartyVerify: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getResponderPublicKeyHash: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - hasResponderEncryptedExtensions: - annotations: [] - default: false - type: public - returnType: boolean - hasResponderEncryptedExtensionsBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasResponderFinished: - annotations: [] - default: false - type: public - returnType: boolean - hasResponderPartyVerify: - annotations: [] - default: false - type: public - returnType: boolean - hasResponderPublicKeyHash: - annotations: [] - default: false - type: public - returnType: boolean - setResponderEncryptedExtensions: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.ResponderHandshakePayload$Builder - params: - value: - annotation: [] - type: net.corda.data.p2p.crypto.internal.ResponderEncryptedExtensions - setResponderEncryptedExtensionsBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.ResponderHandshakePayload$Builder - params: - value: - annotation: [] - type: net.corda.data.p2p.crypto.internal.ResponderEncryptedExtensions$Builder - setResponderFinished: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.ResponderHandshakePayload$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setResponderPartyVerify: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.ResponderHandshakePayload$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setResponderPublicKeyHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.crypto.internal.ResponderHandshakePayload$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer -net.corda.data.p2p.gateway.GatewayMessage: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.gateway.GatewayMessage - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getId: - annotations: [] - default: false - type: public - returnType: String - getPayload: - annotations: [] - default: false - type: public - returnType: Object - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.gateway.GatewayMessage$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.gateway.GatewayMessage - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setPayload: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Object - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.gateway.GatewayMessage$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.gateway.GatewayMessage - clearId: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.gateway.GatewayMessage$Builder - clearPayload: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.gateway.GatewayMessage$Builder - getId: - annotations: [] - default: false - type: public - returnType: String - getPayload: - annotations: [] - default: false - type: public - returnType: Object - hasId: - annotations: [] - default: false - type: public - returnType: boolean - hasPayload: - annotations: [] - default: false - type: public - returnType: boolean - setId: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.gateway.GatewayMessage$Builder - params: - value: - annotation: [] - type: String - setPayload: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.gateway.GatewayMessage$Builder - params: - value: - annotation: [] - type: Object -net.corda.data.p2p.gateway.GatewayResponse: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.gateway.GatewayResponse - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getId: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.gateway.GatewayResponse$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.gateway.GatewayResponse - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.gateway.GatewayResponse$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.gateway.GatewayResponse - clearId: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.gateway.GatewayResponse$Builder - getId: - annotations: [] - default: false - type: public - returnType: String - hasId: - annotations: [] - default: false - type: public - returnType: boolean - setId: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.gateway.GatewayResponse$Builder - params: - value: - annotation: [] - type: String -net.corda.data.p2p.gateway.certificates.Active: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.gateway.certificates.Active - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.gateway.certificates.Active$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.gateway.certificates.Active - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.gateway.certificates.Active$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.gateway.certificates.Active -net.corda.data.p2p.gateway.certificates.RevocationCheckRequest: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.gateway.certificates.RevocationCheckRequest - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getCertificates: - annotations: [] - default: false - type: public - returnType: java.util.List - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getMode: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.gateway.certificates.RevocationMode - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getTrustedCertificates: - annotations: [] - default: false - type: public - returnType: java.util.List - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.gateway.certificates.RevocationCheckRequest$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.gateway.certificates.RevocationCheckRequest - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setCertificates: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - setMode: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.p2p.gateway.certificates.RevocationMode - setTrustedCertificates: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.gateway.certificates.RevocationCheckRequest$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.gateway.certificates.RevocationCheckRequest - clearCertificates: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.gateway.certificates.RevocationCheckRequest$Builder - clearMode: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.gateway.certificates.RevocationCheckRequest$Builder - clearTrustedCertificates: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.gateway.certificates.RevocationCheckRequest$Builder - getCertificates: - annotations: [] - default: false - type: public - returnType: java.util.List - getMode: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.gateway.certificates.RevocationMode - getTrustedCertificates: - annotations: [] - default: false - type: public - returnType: java.util.List - hasCertificates: - annotations: [] - default: false - type: public - returnType: boolean - hasMode: - annotations: [] - default: false - type: public - returnType: boolean - hasTrustedCertificates: - annotations: [] - default: false - type: public - returnType: boolean - setCertificates: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.gateway.certificates.RevocationCheckRequest$Builder - params: - value: - annotation: [] - type: java.util.List - setMode: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.gateway.certificates.RevocationCheckRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.p2p.gateway.certificates.RevocationMode - setTrustedCertificates: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.gateway.certificates.RevocationCheckRequest$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.p2p.gateway.certificates.RevocationCheckResponse: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.gateway.certificates.RevocationCheckResponse - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getStatus: - annotations: [] - default: false - type: public - returnType: Object - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.gateway.certificates.RevocationCheckResponse$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.gateway.certificates.RevocationCheckResponse - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setStatus: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Object - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.gateway.certificates.RevocationCheckResponse$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.gateway.certificates.RevocationCheckResponse - clearStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.gateway.certificates.RevocationCheckResponse$Builder - getStatus: - annotations: [] - default: false - type: public - returnType: Object - hasStatus: - annotations: [] - default: false - type: public - returnType: boolean - setStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.gateway.certificates.RevocationCheckResponse$Builder - params: - value: - annotation: [] - type: Object -net.corda.data.p2p.gateway.certificates.RevocationMode: - annotations: - - AvroGenerated - type: public final class - extends: java.lang.Enum - implements: - - org.apache.avro.generic.GenericEnumSymbol - interface: false - methods: - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - valueOf: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.gateway.certificates.RevocationMode - params: {} - values: - annotations: [] - default: false - type: public static - returnType: "net.corda.data.p2p.gateway.certificates.RevocationMode[]" - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.gateway.certificates.Revoked: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.gateway.certificates.Revoked - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getCertificateIndex: - annotations: [] - default: false - type: public - returnType: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getReason: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.gateway.certificates.Revoked$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.gateway.certificates.Revoked - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setCertificateIndex: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - setReason: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.gateway.certificates.Revoked$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.gateway.certificates.Revoked - clearCertificateIndex: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.gateway.certificates.Revoked$Builder - clearReason: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.gateway.certificates.Revoked$Builder - getCertificateIndex: - annotations: [] - default: false - type: public - returnType: int - getReason: - annotations: [] - default: false - type: public - returnType: String - hasCertificateIndex: - annotations: [] - default: false - type: public - returnType: boolean - hasReason: - annotations: [] - default: false - type: public - returnType: boolean - setCertificateIndex: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.gateway.certificates.Revoked$Builder - params: - value: - annotation: [] - type: int - setReason: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.gateway.certificates.Revoked$Builder - params: - value: - annotation: [] - type: String -net.corda.data.p2p.markers.AppMessageMarker: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.markers.AppMessageMarker - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getMarker: - annotations: [] - default: false - type: public - returnType: Object - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getTimestamp: - annotations: [] - default: false - type: public - returnType: long - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.markers.AppMessageMarker$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.markers.AppMessageMarker - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setMarker: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Object - setTimestamp: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: long - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.markers.AppMessageMarker$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.markers.AppMessageMarker - clearMarker: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.markers.AppMessageMarker$Builder - clearTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.markers.AppMessageMarker$Builder - getMarker: - annotations: [] - default: false - type: public - returnType: Object - getTimestamp: - annotations: [] - default: false - type: public - returnType: long - hasMarker: - annotations: [] - default: false - type: public - returnType: boolean - hasTimestamp: - annotations: [] - default: false - type: public - returnType: boolean - setMarker: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.markers.AppMessageMarker$Builder - params: - value: - annotation: [] - type: Object - setTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.markers.AppMessageMarker$Builder - params: - value: - annotation: [] - type: long -net.corda.data.p2p.markers.ApplicationProcessedMarker: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.markers.ApplicationProcessedMarker - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.markers.ApplicationProcessedMarker$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.markers.ApplicationProcessedMarker - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.markers.ApplicationProcessedMarker$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.markers.ApplicationProcessedMarker -net.corda.data.p2p.markers.ApplicationRejectedStaleMarker: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.markers.ApplicationRejectedStaleMarker - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.markers.ApplicationRejectedStaleMarker$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.markers.ApplicationRejectedStaleMarker - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.markers.ApplicationRejectedStaleMarker$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.markers.ApplicationRejectedStaleMarker -net.corda.data.p2p.markers.Component: - annotations: - - AvroGenerated - type: public final class - extends: java.lang.Enum - implements: - - org.apache.avro.generic.GenericEnumSymbol - interface: false - methods: - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - valueOf: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.markers.Component - params: {} - values: - annotations: [] - default: false - type: public static - returnType: "net.corda.data.p2p.markers.Component[]" - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.markers.GatewaySentMarker: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.markers.GatewaySentMarker - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.markers.GatewaySentMarker$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.markers.GatewaySentMarker - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.markers.GatewaySentMarker$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.markers.GatewaySentMarker -net.corda.data.p2p.markers.LinkManagerDiscardedMarker: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.markers.LinkManagerDiscardedMarker - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getMessage: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.AuthenticatedMessageAndKey - getReason: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.markers.LinkManagerDiscardedMarker$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.markers.LinkManagerDiscardedMarker - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setMessage: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.p2p.AuthenticatedMessageAndKey - setReason: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.markers.LinkManagerDiscardedMarker$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.markers.LinkManagerDiscardedMarker - clearMessage: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.markers.LinkManagerDiscardedMarker$Builder - clearReason: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.markers.LinkManagerDiscardedMarker$Builder - getMessage: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.AuthenticatedMessageAndKey - getMessageBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.AuthenticatedMessageAndKey$Builder - getReason: - annotations: [] - default: false - type: public - returnType: String - hasMessage: - annotations: [] - default: false - type: public - returnType: boolean - hasMessageBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasReason: - annotations: [] - default: false - type: public - returnType: boolean - setMessage: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.markers.LinkManagerDiscardedMarker$Builder - params: - value: - annotation: [] - type: net.corda.data.p2p.AuthenticatedMessageAndKey - setMessageBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.markers.LinkManagerDiscardedMarker$Builder - params: - value: - annotation: [] - type: net.corda.data.p2p.AuthenticatedMessageAndKey$Builder - setReason: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.markers.LinkManagerDiscardedMarker$Builder - params: - value: - annotation: [] - type: String -net.corda.data.p2p.markers.LinkManagerProcessedMarker: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.markers.LinkManagerProcessedMarker - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getMessage: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.AuthenticatedMessageAndKey - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.markers.LinkManagerProcessedMarker$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.markers.LinkManagerProcessedMarker - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setMessage: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.p2p.AuthenticatedMessageAndKey - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.markers.LinkManagerProcessedMarker$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.markers.LinkManagerProcessedMarker - clearMessage: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.markers.LinkManagerProcessedMarker$Builder - getMessage: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.AuthenticatedMessageAndKey - getMessageBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.AuthenticatedMessageAndKey$Builder - hasMessage: - annotations: [] - default: false - type: public - returnType: boolean - hasMessageBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setMessage: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.markers.LinkManagerProcessedMarker$Builder - params: - value: - annotation: [] - type: net.corda.data.p2p.AuthenticatedMessageAndKey - setMessageBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.markers.LinkManagerProcessedMarker$Builder - params: - value: - annotation: [] - type: net.corda.data.p2p.AuthenticatedMessageAndKey$Builder -net.corda.data.p2p.markers.LinkManagerReceivedMarker: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.markers.LinkManagerReceivedMarker - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.markers.LinkManagerReceivedMarker$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.markers.LinkManagerReceivedMarker - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.markers.LinkManagerReceivedMarker$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.markers.LinkManagerReceivedMarker -net.corda.data.p2p.markers.LinkManagerSentMarker: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.markers.LinkManagerSentMarker - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.markers.LinkManagerSentMarker$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.markers.LinkManagerSentMarker - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.markers.LinkManagerSentMarker$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.markers.LinkManagerSentMarker -net.corda.data.p2p.markers.TtlExpiredMarker: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.markers.TtlExpiredMarker - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getComponent: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.markers.Component - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.markers.TtlExpiredMarker$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.markers.TtlExpiredMarker - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setComponent: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.p2p.markers.Component - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.markers.TtlExpiredMarker$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.markers.TtlExpiredMarker - clearComponent: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.markers.TtlExpiredMarker$Builder - getComponent: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.markers.Component - hasComponent: - annotations: [] - default: false - type: public - returnType: boolean - setComponent: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.markers.TtlExpiredMarker$Builder - params: - value: - annotation: [] - type: net.corda.data.p2p.markers.Component -net.corda.data.p2p.mtls.MemberAllowedCertificateSubject: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.mtls.MemberAllowedCertificateSubject - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getSubject: - annotations: [] - default: false - type: public - returnType: String - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.mtls.MemberAllowedCertificateSubject$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.mtls.MemberAllowedCertificateSubject - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setSubject: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.mtls.MemberAllowedCertificateSubject$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.mtls.MemberAllowedCertificateSubject - clearSubject: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.mtls.MemberAllowedCertificateSubject$Builder - getSubject: - annotations: [] - default: false - type: public - returnType: String - hasSubject: - annotations: [] - default: false - type: public - returnType: boolean - setSubject: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.mtls.MemberAllowedCertificateSubject$Builder - params: - value: - annotation: [] - type: String -net.corda.data.p2p.mtls.MgmAllowedCertificateSubject: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.mtls.MgmAllowedCertificateSubject - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getGroupId: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getSubject: - annotations: [] - default: false - type: public - returnType: String - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.mtls.MgmAllowedCertificateSubject$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.mtls.MgmAllowedCertificateSubject - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setGroupId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setSubject: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.mtls.MgmAllowedCertificateSubject$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.mtls.MgmAllowedCertificateSubject - clearGroupId: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.mtls.MgmAllowedCertificateSubject$Builder - clearSubject: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.mtls.MgmAllowedCertificateSubject$Builder - getGroupId: - annotations: [] - default: false - type: public - returnType: String - getSubject: - annotations: [] - default: false - type: public - returnType: String - hasGroupId: - annotations: [] - default: false - type: public - returnType: boolean - hasSubject: - annotations: [] - default: false - type: public - returnType: boolean - setGroupId: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.mtls.MgmAllowedCertificateSubject$Builder - params: - value: - annotation: [] - type: String - setSubject: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.mtls.MgmAllowedCertificateSubject$Builder - params: - value: - annotation: [] - type: String -net.corda.data.p2p.mtls.gateway.ClientCertificateSubjects: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.mtls.gateway.ClientCertificateSubjects - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getSubject: - annotations: [] - default: false - type: public - returnType: String - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.p2p.mtls.gateway.ClientCertificateSubjects$Builder - params: - other: - annotation: [] - type: net.corda.data.p2p.mtls.gateway.ClientCertificateSubjects - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setSubject: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.p2p.mtls.gateway.ClientCertificateSubjects$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.mtls.gateway.ClientCertificateSubjects - clearSubject: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.mtls.gateway.ClientCertificateSubjects$Builder - getSubject: - annotations: [] - default: false - type: public - returnType: String - hasSubject: - annotations: [] - default: false - type: public - returnType: boolean - setSubject: - annotations: [] - default: false - type: public - returnType: net.corda.data.p2p.mtls.gateway.ClientCertificateSubjects$Builder - params: - value: - annotation: [] - type: String -net.corda.data.packaging.CorDappManifest: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.packaging.CorDappManifest - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getAttributes: - annotations: [] - default: false - type: public - returnType: "java.util.Map" - getBundleSymbolicName: - annotations: [] - default: false - type: public - returnType: String - getBundleVersion: - annotations: [] - default: false - type: public - returnType: String - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getLicense: - annotations: [] - default: false - type: public - returnType: String - getMinPlatformVersion: - annotations: [] - default: false - type: public - returnType: int - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getShortName: - annotations: [] - default: false - type: public - returnType: String - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getTargetPlatformVersion: - annotations: [] - default: false - type: public - returnType: int - getType: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CorDappType - getVendor: - annotations: [] - default: false - type: public - returnType: String - getVersionId: - annotations: [] - default: false - type: public - returnType: Integer - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.packaging.CorDappManifest$Builder - params: - other: - annotation: [] - type: net.corda.data.packaging.CorDappManifest - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setAttributes: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: "java.util.Map" - setBundleSymbolicName: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setBundleVersion: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setLicense: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setMinPlatformVersion: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - setShortName: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setTargetPlatformVersion: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - setType: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.packaging.CorDappType - setVendor: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setVersionId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Integer - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.packaging.CorDappManifest$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CorDappManifest - clearAttributes: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CorDappManifest$Builder - clearBundleSymbolicName: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CorDappManifest$Builder - clearBundleVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CorDappManifest$Builder - clearLicense: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CorDappManifest$Builder - clearMinPlatformVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CorDappManifest$Builder - clearShortName: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CorDappManifest$Builder - clearTargetPlatformVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CorDappManifest$Builder - clearType: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CorDappManifest$Builder - clearVendor: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CorDappManifest$Builder - clearVersionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CorDappManifest$Builder - getAttributes: - annotations: [] - default: false - type: public - returnType: "java.util.Map" - getBundleSymbolicName: - annotations: [] - default: false - type: public - returnType: String - getBundleVersion: - annotations: [] - default: false - type: public - returnType: String - getLicense: - annotations: [] - default: false - type: public - returnType: String - getMinPlatformVersion: - annotations: [] - default: false - type: public - returnType: int - getShortName: - annotations: [] - default: false - type: public - returnType: String - getTargetPlatformVersion: - annotations: [] - default: false - type: public - returnType: int - getType: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CorDappType - getVendor: - annotations: [] - default: false - type: public - returnType: String - getVersionId: - annotations: [] - default: false - type: public - returnType: Integer - hasAttributes: - annotations: [] - default: false - type: public - returnType: boolean - hasBundleSymbolicName: - annotations: [] - default: false - type: public - returnType: boolean - hasBundleVersion: - annotations: [] - default: false - type: public - returnType: boolean - hasLicense: - annotations: [] - default: false - type: public - returnType: boolean - hasMinPlatformVersion: - annotations: [] - default: false - type: public - returnType: boolean - hasShortName: - annotations: [] - default: false - type: public - returnType: boolean - hasTargetPlatformVersion: - annotations: [] - default: false - type: public - returnType: boolean - hasType: - annotations: [] - default: false - type: public - returnType: boolean - hasVendor: - annotations: [] - default: false - type: public - returnType: boolean - hasVersionId: - annotations: [] - default: false - type: public - returnType: boolean - setAttributes: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CorDappManifest$Builder - params: - value: - annotation: [] - type: "java.util.Map" - setBundleSymbolicName: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CorDappManifest$Builder - params: - value: - annotation: [] - type: String - setBundleVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CorDappManifest$Builder - params: - value: - annotation: [] - type: String - setLicense: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CorDappManifest$Builder - params: - value: - annotation: [] - type: String - setMinPlatformVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CorDappManifest$Builder - params: - value: - annotation: [] - type: int - setShortName: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CorDappManifest$Builder - params: - value: - annotation: [] - type: String - setTargetPlatformVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CorDappManifest$Builder - params: - value: - annotation: [] - type: int - setType: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CorDappManifest$Builder - params: - value: - annotation: [] - type: net.corda.data.packaging.CorDappType - setVendor: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CorDappManifest$Builder - params: - value: - annotation: [] - type: String - setVersionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CorDappManifest$Builder - params: - value: - annotation: [] - type: Integer -net.corda.data.packaging.CorDappType: - annotations: - - AvroGenerated - type: public final class - extends: java.lang.Enum - implements: - - org.apache.avro.generic.GenericEnumSymbol - interface: false - methods: - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - valueOf: - annotations: [] - default: false - type: public static - returnType: net.corda.data.packaging.CorDappType - params: {} - values: - annotations: [] - default: false - type: public static - returnType: "net.corda.data.packaging.CorDappType[]" - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.packaging.CpiIdentifier: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.packaging.CpiIdentifier - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getName: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSignerSummaryHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.SecureHash - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getVersion: - annotations: [] - default: false - type: public - returnType: String - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.packaging.CpiIdentifier$Builder - params: - other: - annotation: [] - type: net.corda.data.packaging.CpiIdentifier - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setName: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setSignerSummaryHash: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.crypto.SecureHash - setVersion: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.packaging.CpiIdentifier$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpiIdentifier - clearName: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpiIdentifier$Builder - clearSignerSummaryHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpiIdentifier$Builder - clearVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpiIdentifier$Builder - getName: - annotations: [] - default: false - type: public - returnType: String - getSignerSummaryHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.SecureHash - getSignerSummaryHashBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.SecureHash$Builder - getVersion: - annotations: [] - default: false - type: public - returnType: String - hasName: - annotations: [] - default: false - type: public - returnType: boolean - hasSignerSummaryHash: - annotations: [] - default: false - type: public - returnType: boolean - hasSignerSummaryHashBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasVersion: - annotations: [] - default: false - type: public - returnType: boolean - setName: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpiIdentifier$Builder - params: - value: - annotation: [] - type: String - setSignerSummaryHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpiIdentifier$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.SecureHash - setSignerSummaryHashBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpiIdentifier$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.SecureHash$Builder - setVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpiIdentifier$Builder - params: - value: - annotation: [] - type: String -net.corda.data.packaging.CpiMetadata: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.packaging.CpiMetadata - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getCpks: - annotations: [] - default: false - type: public - returnType: java.util.List - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getGroupPolicy: - annotations: [] - default: false - type: public - returnType: String - getHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.SecureHash - getId: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpiIdentifier - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getVersion: - annotations: [] - default: false - type: public - returnType: int - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.packaging.CpiMetadata$Builder - params: - other: - annotation: [] - type: net.corda.data.packaging.CpiMetadata - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setCpks: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - setGroupPolicy: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setHash: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.crypto.SecureHash - setId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.packaging.CpiIdentifier - setTimestamp: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - setVersion: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.packaging.CpiMetadata$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpiMetadata - clearCpks: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpiMetadata$Builder - clearGroupPolicy: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpiMetadata$Builder - clearHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpiMetadata$Builder - clearId: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpiMetadata$Builder - clearTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpiMetadata$Builder - clearVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpiMetadata$Builder - getCpks: - annotations: [] - default: false - type: public - returnType: java.util.List - getGroupPolicy: - annotations: [] - default: false - type: public - returnType: String - getHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.SecureHash - getHashBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.SecureHash$Builder - getId: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpiIdentifier - getIdBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpiIdentifier$Builder - getTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getVersion: - annotations: [] - default: false - type: public - returnType: int - hasCpks: - annotations: [] - default: false - type: public - returnType: boolean - hasGroupPolicy: - annotations: [] - default: false - type: public - returnType: boolean - hasHash: - annotations: [] - default: false - type: public - returnType: boolean - hasHashBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasId: - annotations: [] - default: false - type: public - returnType: boolean - hasIdBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasTimestamp: - annotations: [] - default: false - type: public - returnType: boolean - hasVersion: - annotations: [] - default: false - type: public - returnType: boolean - setCpks: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpiMetadata$Builder - params: - value: - annotation: [] - type: java.util.List - setGroupPolicy: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpiMetadata$Builder - params: - value: - annotation: [] - type: String - setHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpiMetadata$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.SecureHash - setHashBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpiMetadata$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.SecureHash$Builder - setId: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpiMetadata$Builder - params: - value: - annotation: [] - type: net.corda.data.packaging.CpiIdentifier - setIdBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpiMetadata$Builder - params: - value: - annotation: [] - type: net.corda.data.packaging.CpiIdentifier$Builder - setTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpiMetadata$Builder - params: - value: - annotation: [] - type: java.time.Instant - setVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpiMetadata$Builder - params: - value: - annotation: [] - type: int -net.corda.data.packaging.CpiSegmentRequest: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.packaging.CpiSegmentRequest - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getIdentifier: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpiIdentifier - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getStart: - annotations: [] - default: false - type: public - returnType: long - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.packaging.CpiSegmentRequest$Builder - params: - other: - annotation: [] - type: net.corda.data.packaging.CpiSegmentRequest - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setIdentifier: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.packaging.CpiIdentifier - setStart: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: long - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.packaging.CpiSegmentRequest$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpiSegmentRequest - clearIdentifier: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpiSegmentRequest$Builder - clearStart: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpiSegmentRequest$Builder - getIdentifier: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpiIdentifier - getIdentifierBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpiIdentifier$Builder - getStart: - annotations: [] - default: false - type: public - returnType: long - hasIdentifier: - annotations: [] - default: false - type: public - returnType: boolean - hasIdentifierBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasStart: - annotations: [] - default: false - type: public - returnType: boolean - setIdentifier: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpiSegmentRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.packaging.CpiIdentifier - setIdentifierBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpiSegmentRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.packaging.CpiIdentifier$Builder - setStart: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpiSegmentRequest$Builder - params: - value: - annotation: [] - type: long -net.corda.data.packaging.CpiSegmentResponse: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.packaging.CpiSegmentResponse - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getAtEnd: - annotations: [] - default: false - type: public - returnType: boolean - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSegment: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.packaging.CpiSegmentResponse$Builder - params: - other: - annotation: [] - type: net.corda.data.packaging.CpiSegmentResponse - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setAtEnd: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: boolean - setSegment: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.packaging.CpiSegmentResponse$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpiSegmentResponse - clearAtEnd: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpiSegmentResponse$Builder - clearSegment: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpiSegmentResponse$Builder - getAtEnd: - annotations: [] - default: false - type: public - returnType: boolean - getSegment: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - hasAtEnd: - annotations: [] - default: false - type: public - returnType: boolean - hasSegment: - annotations: [] - default: false - type: public - returnType: boolean - setAtEnd: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpiSegmentResponse$Builder - params: - value: - annotation: [] - type: boolean - setSegment: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpiSegmentResponse$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer -net.corda.data.packaging.CpkFormatVersion: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.packaging.CpkFormatVersion - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getMajor: - annotations: [] - default: false - type: public - returnType: int - getMinor: - annotations: [] - default: false - type: public - returnType: int - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.packaging.CpkFormatVersion$Builder - params: - other: - annotation: [] - type: net.corda.data.packaging.CpkFormatVersion - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setMajor: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - setMinor: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.packaging.CpkFormatVersion$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkFormatVersion - clearMajor: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkFormatVersion$Builder - clearMinor: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkFormatVersion$Builder - getMajor: - annotations: [] - default: false - type: public - returnType: int - getMinor: - annotations: [] - default: false - type: public - returnType: int - hasMajor: - annotations: [] - default: false - type: public - returnType: boolean - hasMinor: - annotations: [] - default: false - type: public - returnType: boolean - setMajor: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkFormatVersion$Builder - params: - value: - annotation: [] - type: int - setMinor: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkFormatVersion$Builder - params: - value: - annotation: [] - type: int -net.corda.data.packaging.CpkIdentifier: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.packaging.CpkIdentifier - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getName: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSignerSummaryHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.SecureHash - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getVersion: - annotations: [] - default: false - type: public - returnType: String - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.packaging.CpkIdentifier$Builder - params: - other: - annotation: [] - type: net.corda.data.packaging.CpkIdentifier - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setName: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setSignerSummaryHash: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.crypto.SecureHash - setVersion: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.packaging.CpkIdentifier$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkIdentifier - clearName: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkIdentifier$Builder - clearSignerSummaryHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkIdentifier$Builder - clearVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkIdentifier$Builder - getName: - annotations: [] - default: false - type: public - returnType: String - getSignerSummaryHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.SecureHash - getSignerSummaryHashBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.SecureHash$Builder - getVersion: - annotations: [] - default: false - type: public - returnType: String - hasName: - annotations: [] - default: false - type: public - returnType: boolean - hasSignerSummaryHash: - annotations: [] - default: false - type: public - returnType: boolean - hasSignerSummaryHashBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasVersion: - annotations: [] - default: false - type: public - returnType: boolean - setName: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkIdentifier$Builder - params: - value: - annotation: [] - type: String - setSignerSummaryHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkIdentifier$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.SecureHash - setSignerSummaryHashBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkIdentifier$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.SecureHash$Builder - setVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkIdentifier$Builder - params: - value: - annotation: [] - type: String -net.corda.data.packaging.CpkManifest: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.packaging.CpkManifest - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkFormatVersion - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.packaging.CpkManifest$Builder - params: - other: - annotation: [] - type: net.corda.data.packaging.CpkManifest - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setVersion: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.packaging.CpkFormatVersion - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.packaging.CpkManifest$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkManifest - clearVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkManifest$Builder - getVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkFormatVersion - getVersionBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkFormatVersion$Builder - hasVersion: - annotations: [] - default: false - type: public - returnType: boolean - hasVersionBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkManifest$Builder - params: - value: - annotation: [] - type: net.corda.data.packaging.CpkFormatVersion - setVersionBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkManifest$Builder - params: - value: - annotation: [] - type: net.corda.data.packaging.CpkFormatVersion$Builder -net.corda.data.packaging.CpkMetadata: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.packaging.CpkMetadata - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getCorDappCertificates: - annotations: [] - default: false - type: public - returnType: java.util.List - getCorDappManifest: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CorDappManifest - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getExternalChannelsConfig: - annotations: [] - default: false - type: public - returnType: String - getHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.SecureHash - getId: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkIdentifier - getLibraries: - annotations: [] - default: false - type: public - returnType: java.util.List - getMainBundle: - annotations: [] - default: false - type: public - returnType: String - getManifest: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkManifest - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getType: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkType - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.packaging.CpkMetadata$Builder - params: - other: - annotation: [] - type: net.corda.data.packaging.CpkMetadata - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setCorDappCertificates: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - setCorDappManifest: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.packaging.CorDappManifest - setExternalChannelsConfig: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setHash: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.crypto.SecureHash - setId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.packaging.CpkIdentifier - setLibraries: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - setMainBundle: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setManifest: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.packaging.CpkManifest - setTimestamp: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - setType: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.packaging.CpkType - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.packaging.CpkMetadata$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkMetadata - clearCorDappCertificates: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkMetadata$Builder - clearCorDappManifest: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkMetadata$Builder - clearExternalChannelsConfig: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkMetadata$Builder - clearHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkMetadata$Builder - clearId: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkMetadata$Builder - clearLibraries: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkMetadata$Builder - clearMainBundle: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkMetadata$Builder - clearManifest: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkMetadata$Builder - clearTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkMetadata$Builder - clearType: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkMetadata$Builder - getCorDappCertificates: - annotations: [] - default: false - type: public - returnType: java.util.List - getCorDappManifest: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CorDappManifest - getCorDappManifestBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CorDappManifest$Builder - getExternalChannelsConfig: - annotations: [] - default: false - type: public - returnType: String - getHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.SecureHash - getHashBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.crypto.SecureHash$Builder - getId: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkIdentifier - getIdBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkIdentifier$Builder - getLibraries: - annotations: [] - default: false - type: public - returnType: java.util.List - getMainBundle: - annotations: [] - default: false - type: public - returnType: String - getManifest: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkManifest - getManifestBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkManifest$Builder - getTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getType: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkType - hasCorDappCertificates: - annotations: [] - default: false - type: public - returnType: boolean - hasCorDappManifest: - annotations: [] - default: false - type: public - returnType: boolean - hasCorDappManifestBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasExternalChannelsConfig: - annotations: [] - default: false - type: public - returnType: boolean - hasHash: - annotations: [] - default: false - type: public - returnType: boolean - hasHashBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasId: - annotations: [] - default: false - type: public - returnType: boolean - hasIdBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasLibraries: - annotations: [] - default: false - type: public - returnType: boolean - hasMainBundle: - annotations: [] - default: false - type: public - returnType: boolean - hasManifest: - annotations: [] - default: false - type: public - returnType: boolean - hasManifestBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasTimestamp: - annotations: [] - default: false - type: public - returnType: boolean - hasType: - annotations: [] - default: false - type: public - returnType: boolean - setCorDappCertificates: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkMetadata$Builder - params: - value: - annotation: [] - type: java.util.List - setCorDappManifest: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkMetadata$Builder - params: - value: - annotation: [] - type: net.corda.data.packaging.CorDappManifest - setCorDappManifestBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkMetadata$Builder - params: - value: - annotation: [] - type: net.corda.data.packaging.CorDappManifest$Builder - setExternalChannelsConfig: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkMetadata$Builder - params: - value: - annotation: [] - type: String - setHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkMetadata$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.SecureHash - setHashBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkMetadata$Builder - params: - value: - annotation: [] - type: net.corda.data.crypto.SecureHash$Builder - setId: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkMetadata$Builder - params: - value: - annotation: [] - type: net.corda.data.packaging.CpkIdentifier - setIdBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkMetadata$Builder - params: - value: - annotation: [] - type: net.corda.data.packaging.CpkIdentifier$Builder - setLibraries: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkMetadata$Builder - params: - value: - annotation: [] - type: java.util.List - setMainBundle: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkMetadata$Builder - params: - value: - annotation: [] - type: String - setManifest: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkMetadata$Builder - params: - value: - annotation: [] - type: net.corda.data.packaging.CpkManifest - setManifestBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkMetadata$Builder - params: - value: - annotation: [] - type: net.corda.data.packaging.CpkManifest$Builder - setTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkMetadata$Builder - params: - value: - annotation: [] - type: java.time.Instant - setType: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpkMetadata$Builder - params: - value: - annotation: [] - type: net.corda.data.packaging.CpkType -net.corda.data.packaging.CpkType: - annotations: - - AvroGenerated - type: public final class - extends: java.lang.Enum - implements: - - org.apache.avro.generic.GenericEnumSymbol - interface: false - methods: - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - valueOf: - annotations: [] - default: false - type: public static - returnType: net.corda.data.packaging.CpkType - params: {} - values: - annotations: [] - default: false - type: public static - returnType: "net.corda.data.packaging.CpkType[]" - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.permissions.ChangeDetails: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.permissions.ChangeDetails - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getUpdateTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.permissions.ChangeDetails$Builder - params: - other: - annotation: [] - type: net.corda.data.permissions.ChangeDetails - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setUpdateTimestamp: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.permissions.ChangeDetails$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.ChangeDetails - clearUpdateTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.ChangeDetails$Builder - getUpdateTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - hasUpdateTimestamp: - annotations: [] - default: false - type: public - returnType: boolean - setUpdateTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.ChangeDetails$Builder - params: - value: - annotation: [] - type: java.time.Instant -net.corda.data.permissions.Group: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.permissions.Group - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getId: - annotations: [] - default: false - type: public - returnType: String - getLastChangeDetails: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.ChangeDetails - getName: - annotations: [] - default: false - type: public - returnType: String - getParentGroupId: - annotations: [] - default: false - type: public - returnType: String - getProperties: - annotations: [] - default: false - type: public - returnType: java.util.List - getRoleAssociations: - annotations: [] - default: false - type: public - returnType: java.util.List - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getVersion: - annotations: [] - default: false - type: public - returnType: int - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.permissions.Group$Builder - params: - other: - annotation: [] - type: net.corda.data.permissions.Group - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setLastChangeDetails: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.permissions.ChangeDetails - setName: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setParentGroupId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setProperties: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - setRoleAssociations: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - setVersion: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.permissions.Group$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Group - clearId: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Group$Builder - clearLastChangeDetails: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Group$Builder - clearName: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Group$Builder - clearParentGroupId: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Group$Builder - clearProperties: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Group$Builder - clearRoleAssociations: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Group$Builder - clearVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Group$Builder - getId: - annotations: [] - default: false - type: public - returnType: String - getLastChangeDetails: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.ChangeDetails - getLastChangeDetailsBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.ChangeDetails$Builder - getName: - annotations: [] - default: false - type: public - returnType: String - getParentGroupId: - annotations: [] - default: false - type: public - returnType: String - getProperties: - annotations: [] - default: false - type: public - returnType: java.util.List - getRoleAssociations: - annotations: [] - default: false - type: public - returnType: java.util.List - getVersion: - annotations: [] - default: false - type: public - returnType: int - hasId: - annotations: [] - default: false - type: public - returnType: boolean - hasLastChangeDetails: - annotations: [] - default: false - type: public - returnType: boolean - hasLastChangeDetailsBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasName: - annotations: [] - default: false - type: public - returnType: boolean - hasParentGroupId: - annotations: [] - default: false - type: public - returnType: boolean - hasProperties: - annotations: [] - default: false - type: public - returnType: boolean - hasRoleAssociations: - annotations: [] - default: false - type: public - returnType: boolean - hasVersion: - annotations: [] - default: false - type: public - returnType: boolean - setId: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Group$Builder - params: - value: - annotation: [] - type: String - setLastChangeDetails: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Group$Builder - params: - value: - annotation: [] - type: net.corda.data.permissions.ChangeDetails - setLastChangeDetailsBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Group$Builder - params: - value: - annotation: [] - type: net.corda.data.permissions.ChangeDetails$Builder - setName: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Group$Builder - params: - value: - annotation: [] - type: String - setParentGroupId: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Group$Builder - params: - value: - annotation: [] - type: String - setProperties: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Group$Builder - params: - value: - annotation: [] - type: java.util.List - setRoleAssociations: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Group$Builder - params: - value: - annotation: [] - type: java.util.List - setVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Group$Builder - params: - value: - annotation: [] - type: int -net.corda.data.permissions.Permission: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.permissions.Permission - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getGroupVisibility: - annotations: [] - default: false - type: public - returnType: String - getId: - annotations: [] - default: false - type: public - returnType: String - getLastChangeDetails: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.ChangeDetails - getPermissionString: - annotations: [] - default: false - type: public - returnType: String - getPermissionType: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.PermissionType - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getVersion: - annotations: [] - default: false - type: public - returnType: int - getVirtualNode: - annotations: [] - default: false - type: public - returnType: String - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.permissions.Permission$Builder - params: - other: - annotation: [] - type: net.corda.data.permissions.Permission - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setGroupVisibility: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setLastChangeDetails: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.permissions.ChangeDetails - setPermissionString: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setPermissionType: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.permissions.PermissionType - setVersion: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - setVirtualNode: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.permissions.Permission$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Permission - clearGroupVisibility: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Permission$Builder - clearId: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Permission$Builder - clearLastChangeDetails: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Permission$Builder - clearPermissionString: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Permission$Builder - clearPermissionType: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Permission$Builder - clearVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Permission$Builder - clearVirtualNode: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Permission$Builder - getGroupVisibility: - annotations: [] - default: false - type: public - returnType: String - getId: - annotations: [] - default: false - type: public - returnType: String - getLastChangeDetails: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.ChangeDetails - getLastChangeDetailsBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.ChangeDetails$Builder - getPermissionString: - annotations: [] - default: false - type: public - returnType: String - getPermissionType: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.PermissionType - getVersion: - annotations: [] - default: false - type: public - returnType: int - getVirtualNode: - annotations: [] - default: false - type: public - returnType: String - hasGroupVisibility: - annotations: [] - default: false - type: public - returnType: boolean - hasId: - annotations: [] - default: false - type: public - returnType: boolean - hasLastChangeDetails: - annotations: [] - default: false - type: public - returnType: boolean - hasLastChangeDetailsBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasPermissionString: - annotations: [] - default: false - type: public - returnType: boolean - hasPermissionType: - annotations: [] - default: false - type: public - returnType: boolean - hasVersion: - annotations: [] - default: false - type: public - returnType: boolean - hasVirtualNode: - annotations: [] - default: false - type: public - returnType: boolean - setGroupVisibility: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Permission$Builder - params: - value: - annotation: [] - type: String - setId: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Permission$Builder - params: - value: - annotation: [] - type: String - setLastChangeDetails: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Permission$Builder - params: - value: - annotation: [] - type: net.corda.data.permissions.ChangeDetails - setLastChangeDetailsBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Permission$Builder - params: - value: - annotation: [] - type: net.corda.data.permissions.ChangeDetails$Builder - setPermissionString: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Permission$Builder - params: - value: - annotation: [] - type: String - setPermissionType: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Permission$Builder - params: - value: - annotation: [] - type: net.corda.data.permissions.PermissionType - setVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Permission$Builder - params: - value: - annotation: [] - type: int - setVirtualNode: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Permission$Builder - params: - value: - annotation: [] - type: String -net.corda.data.permissions.PermissionAssociation: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.permissions.PermissionAssociation - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getChangeDetails: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.ChangeDetails - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getPermissionId: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.permissions.PermissionAssociation$Builder - params: - other: - annotation: [] - type: net.corda.data.permissions.PermissionAssociation - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setChangeDetails: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.permissions.ChangeDetails - setPermissionId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.permissions.PermissionAssociation$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.PermissionAssociation - clearChangeDetails: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.PermissionAssociation$Builder - clearPermissionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.PermissionAssociation$Builder - getChangeDetails: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.ChangeDetails - getChangeDetailsBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.ChangeDetails$Builder - getPermissionId: - annotations: [] - default: false - type: public - returnType: String - hasChangeDetails: - annotations: [] - default: false - type: public - returnType: boolean - hasChangeDetailsBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasPermissionId: - annotations: [] - default: false - type: public - returnType: boolean - setChangeDetails: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.PermissionAssociation$Builder - params: - value: - annotation: [] - type: net.corda.data.permissions.ChangeDetails - setChangeDetailsBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.PermissionAssociation$Builder - params: - value: - annotation: [] - type: net.corda.data.permissions.ChangeDetails$Builder - setPermissionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.PermissionAssociation$Builder - params: - value: - annotation: [] - type: String -net.corda.data.permissions.PermissionType: - annotations: - - AvroGenerated - type: public final class - extends: java.lang.Enum - implements: - - org.apache.avro.generic.GenericEnumSymbol - interface: false - methods: - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - valueOf: - annotations: [] - default: false - type: public static - returnType: net.corda.data.permissions.PermissionType - params: {} - values: - annotations: [] - default: false - type: public static - returnType: "net.corda.data.permissions.PermissionType[]" - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.permissions.Property: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.permissions.Property - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getId: - annotations: [] - default: false - type: public - returnType: String - getKey: - annotations: [] - default: false - type: public - returnType: String - getLastChangeDetails: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.ChangeDetails - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getValue: - annotations: [] - default: false - type: public - returnType: String - getVersion: - annotations: [] - default: false - type: public - returnType: int - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.permissions.Property$Builder - params: - other: - annotation: [] - type: net.corda.data.permissions.Property - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setKey: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setLastChangeDetails: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.permissions.ChangeDetails - setValue: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setVersion: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.permissions.Property$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Property - clearId: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Property$Builder - clearKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Property$Builder - clearLastChangeDetails: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Property$Builder - clearValue: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Property$Builder - clearVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Property$Builder - getId: - annotations: [] - default: false - type: public - returnType: String - getKey: - annotations: [] - default: false - type: public - returnType: String - getLastChangeDetails: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.ChangeDetails - getLastChangeDetailsBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.ChangeDetails$Builder - getValue: - annotations: [] - default: false - type: public - returnType: String - getVersion: - annotations: [] - default: false - type: public - returnType: int - hasId: - annotations: [] - default: false - type: public - returnType: boolean - hasKey: - annotations: [] - default: false - type: public - returnType: boolean - hasLastChangeDetails: - annotations: [] - default: false - type: public - returnType: boolean - hasLastChangeDetailsBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasValue: - annotations: [] - default: false - type: public - returnType: boolean - hasVersion: - annotations: [] - default: false - type: public - returnType: boolean - setId: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Property$Builder - params: - value: - annotation: [] - type: String - setKey: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Property$Builder - params: - value: - annotation: [] - type: String - setLastChangeDetails: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Property$Builder - params: - value: - annotation: [] - type: net.corda.data.permissions.ChangeDetails - setLastChangeDetailsBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Property$Builder - params: - value: - annotation: [] - type: net.corda.data.permissions.ChangeDetails$Builder - setValue: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Property$Builder - params: - value: - annotation: [] - type: String - setVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Property$Builder - params: - value: - annotation: [] - type: int -net.corda.data.permissions.Role: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.permissions.Role - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getGroupVisibility: - annotations: [] - default: false - type: public - returnType: String - getId: - annotations: [] - default: false - type: public - returnType: String - getLastChangeDetails: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.ChangeDetails - getName: - annotations: [] - default: false - type: public - returnType: String - getPermissions: - annotations: [] - default: false - type: public - returnType: java.util.List - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getVersion: - annotations: [] - default: false - type: public - returnType: int - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.permissions.Role$Builder - params: - other: - annotation: [] - type: net.corda.data.permissions.Role - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setGroupVisibility: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setLastChangeDetails: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.permissions.ChangeDetails - setName: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setPermissions: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - setVersion: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.permissions.Role$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Role - clearGroupVisibility: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Role$Builder - clearId: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Role$Builder - clearLastChangeDetails: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Role$Builder - clearName: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Role$Builder - clearPermissions: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Role$Builder - clearVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Role$Builder - getGroupVisibility: - annotations: [] - default: false - type: public - returnType: String - getId: - annotations: [] - default: false - type: public - returnType: String - getLastChangeDetails: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.ChangeDetails - getLastChangeDetailsBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.ChangeDetails$Builder - getName: - annotations: [] - default: false - type: public - returnType: String - getPermissions: - annotations: [] - default: false - type: public - returnType: java.util.List - getVersion: - annotations: [] - default: false - type: public - returnType: int - hasGroupVisibility: - annotations: [] - default: false - type: public - returnType: boolean - hasId: - annotations: [] - default: false - type: public - returnType: boolean - hasLastChangeDetails: - annotations: [] - default: false - type: public - returnType: boolean - hasLastChangeDetailsBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasName: - annotations: [] - default: false - type: public - returnType: boolean - hasPermissions: - annotations: [] - default: false - type: public - returnType: boolean - hasVersion: - annotations: [] - default: false - type: public - returnType: boolean - setGroupVisibility: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Role$Builder - params: - value: - annotation: [] - type: String - setId: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Role$Builder - params: - value: - annotation: [] - type: String - setLastChangeDetails: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Role$Builder - params: - value: - annotation: [] - type: net.corda.data.permissions.ChangeDetails - setLastChangeDetailsBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Role$Builder - params: - value: - annotation: [] - type: net.corda.data.permissions.ChangeDetails$Builder - setName: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Role$Builder - params: - value: - annotation: [] - type: String - setPermissions: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Role$Builder - params: - value: - annotation: [] - type: java.util.List - setVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.Role$Builder - params: - value: - annotation: [] - type: int -net.corda.data.permissions.RoleAssociation: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.permissions.RoleAssociation - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getChangeDetails: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.ChangeDetails - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getRoleId: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.permissions.RoleAssociation$Builder - params: - other: - annotation: [] - type: net.corda.data.permissions.RoleAssociation - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setChangeDetails: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.permissions.ChangeDetails - setRoleId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.permissions.RoleAssociation$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.RoleAssociation - clearChangeDetails: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.RoleAssociation$Builder - clearRoleId: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.RoleAssociation$Builder - getChangeDetails: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.ChangeDetails - getChangeDetailsBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.ChangeDetails$Builder - getRoleId: - annotations: [] - default: false - type: public - returnType: String - hasChangeDetails: - annotations: [] - default: false - type: public - returnType: boolean - hasChangeDetailsBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasRoleId: - annotations: [] - default: false - type: public - returnType: boolean - setChangeDetails: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.RoleAssociation$Builder - params: - value: - annotation: [] - type: net.corda.data.permissions.ChangeDetails - setChangeDetailsBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.RoleAssociation$Builder - params: - value: - annotation: [] - type: net.corda.data.permissions.ChangeDetails$Builder - setRoleId: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.RoleAssociation$Builder - params: - value: - annotation: [] - type: String -net.corda.data.permissions.User: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.permissions.User - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEnabled: - annotations: [] - default: false - type: public - returnType: boolean - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getFullName: - annotations: [] - default: false - type: public - returnType: String - getHashedPassword: - annotations: [] - default: false - type: public - returnType: String - getId: - annotations: [] - default: false - type: public - returnType: String - getLastChangeDetails: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.ChangeDetails - getLoginName: - annotations: [] - default: false - type: public - returnType: String - getParentGroupId: - annotations: [] - default: false - type: public - returnType: String - getPasswordExpiry: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getProperties: - annotations: [] - default: false - type: public - returnType: java.util.List - getRoleAssociations: - annotations: [] - default: false - type: public - returnType: java.util.List - getSaltValue: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getSsoAuth: - annotations: [] - default: false - type: public - returnType: boolean - getVersion: - annotations: [] - default: false - type: public - returnType: int - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.permissions.User$Builder - params: - other: - annotation: [] - type: net.corda.data.permissions.User - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setEnabled: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: boolean - setFullName: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setHashedPassword: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setLastChangeDetails: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.permissions.ChangeDetails - setLoginName: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setParentGroupId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setPasswordExpiry: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - setProperties: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - setRoleAssociations: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - setSaltValue: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setSsoAuth: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: boolean - setVersion: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.permissions.User$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.User - clearEnabled: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.User$Builder - clearFullName: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.User$Builder - clearHashedPassword: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.User$Builder - clearId: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.User$Builder - clearLastChangeDetails: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.User$Builder - clearLoginName: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.User$Builder - clearParentGroupId: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.User$Builder - clearPasswordExpiry: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.User$Builder - clearProperties: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.User$Builder - clearRoleAssociations: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.User$Builder - clearSaltValue: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.User$Builder - clearSsoAuth: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.User$Builder - clearVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.User$Builder - getEnabled: - annotations: [] - default: false - type: public - returnType: boolean - getFullName: - annotations: [] - default: false - type: public - returnType: String - getHashedPassword: - annotations: [] - default: false - type: public - returnType: String - getId: - annotations: [] - default: false - type: public - returnType: String - getLastChangeDetails: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.ChangeDetails - getLastChangeDetailsBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.ChangeDetails$Builder - getLoginName: - annotations: [] - default: false - type: public - returnType: String - getParentGroupId: - annotations: [] - default: false - type: public - returnType: String - getPasswordExpiry: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getProperties: - annotations: [] - default: false - type: public - returnType: java.util.List - getRoleAssociations: - annotations: [] - default: false - type: public - returnType: java.util.List - getSaltValue: - annotations: [] - default: false - type: public - returnType: String - getSsoAuth: - annotations: [] - default: false - type: public - returnType: boolean - getVersion: - annotations: [] - default: false - type: public - returnType: int - hasEnabled: - annotations: [] - default: false - type: public - returnType: boolean - hasFullName: - annotations: [] - default: false - type: public - returnType: boolean - hasHashedPassword: - annotations: [] - default: false - type: public - returnType: boolean - hasId: - annotations: [] - default: false - type: public - returnType: boolean - hasLastChangeDetails: - annotations: [] - default: false - type: public - returnType: boolean - hasLastChangeDetailsBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasLoginName: - annotations: [] - default: false - type: public - returnType: boolean - hasParentGroupId: - annotations: [] - default: false - type: public - returnType: boolean - hasPasswordExpiry: - annotations: [] - default: false - type: public - returnType: boolean - hasProperties: - annotations: [] - default: false - type: public - returnType: boolean - hasRoleAssociations: - annotations: [] - default: false - type: public - returnType: boolean - hasSaltValue: - annotations: [] - default: false - type: public - returnType: boolean - hasSsoAuth: - annotations: [] - default: false - type: public - returnType: boolean - hasVersion: - annotations: [] - default: false - type: public - returnType: boolean - setEnabled: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.User$Builder - params: - value: - annotation: [] - type: boolean - setFullName: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.User$Builder - params: - value: - annotation: [] - type: String - setHashedPassword: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.User$Builder - params: - value: - annotation: [] - type: String - setId: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.User$Builder - params: - value: - annotation: [] - type: String - setLastChangeDetails: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.User$Builder - params: - value: - annotation: [] - type: net.corda.data.permissions.ChangeDetails - setLastChangeDetailsBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.User$Builder - params: - value: - annotation: [] - type: net.corda.data.permissions.ChangeDetails$Builder - setLoginName: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.User$Builder - params: - value: - annotation: [] - type: String - setParentGroupId: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.User$Builder - params: - value: - annotation: [] - type: String - setPasswordExpiry: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.User$Builder - params: - value: - annotation: [] - type: java.time.Instant - setProperties: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.User$Builder - params: - value: - annotation: [] - type: java.util.List - setRoleAssociations: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.User$Builder - params: - value: - annotation: [] - type: java.util.List - setSaltValue: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.User$Builder - params: - value: - annotation: [] - type: String - setSsoAuth: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.User$Builder - params: - value: - annotation: [] - type: boolean - setVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.User$Builder - params: - value: - annotation: [] - type: int -net.corda.data.permissions.management.PermissionManagementRequest: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.permissions.management.PermissionManagementRequest - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getRequest: - annotations: [] - default: false - type: public - returnType: Object - getRequestUserId: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getVirtualNodeId: - annotations: [] - default: false - type: public - returnType: String - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.permissions.management.PermissionManagementRequest$Builder - params: - other: - annotation: [] - type: net.corda.data.permissions.management.PermissionManagementRequest - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setRequest: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Object - setRequestUserId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setVirtualNodeId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.permissions.management.PermissionManagementRequest$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.PermissionManagementRequest - clearRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.PermissionManagementRequest$Builder - clearRequestUserId: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.PermissionManagementRequest$Builder - clearVirtualNodeId: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.PermissionManagementRequest$Builder - getRequest: - annotations: [] - default: false - type: public - returnType: Object - getRequestUserId: - annotations: [] - default: false - type: public - returnType: String - getVirtualNodeId: - annotations: [] - default: false - type: public - returnType: String - hasRequest: - annotations: [] - default: false - type: public - returnType: boolean - hasRequestUserId: - annotations: [] - default: false - type: public - returnType: boolean - hasVirtualNodeId: - annotations: [] - default: false - type: public - returnType: boolean - setRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.PermissionManagementRequest$Builder - params: - value: - annotation: [] - type: Object - setRequestUserId: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.PermissionManagementRequest$Builder - params: - value: - annotation: [] - type: String - setVirtualNodeId: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.PermissionManagementRequest$Builder - params: - value: - annotation: [] - type: String -net.corda.data.permissions.management.PermissionManagementResponse: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.permissions.management.PermissionManagementResponse - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getResponse: - annotations: [] - default: false - type: public - returnType: Object - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.permissions.management.PermissionManagementResponse$Builder - params: - other: - annotation: [] - type: net.corda.data.permissions.management.PermissionManagementResponse - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setResponse: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Object - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.permissions.management.PermissionManagementResponse$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.PermissionManagementResponse - clearResponse: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.PermissionManagementResponse$Builder - getResponse: - annotations: [] - default: false - type: public - returnType: Object - hasResponse: - annotations: [] - default: false - type: public - returnType: boolean - setResponse: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.PermissionManagementResponse$Builder - params: - value: - annotation: [] - type: Object -net.corda.data.permissions.management.permission.BulkCreatePermissionsRequest: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.permissions.management.permission.BulkCreatePermissionsRequest - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getPermissionsToCreate: - annotations: [] - default: false - type: public - returnType: java.util.List - getRoleIds: - annotations: [] - default: false - type: public - returnType: java.util.List - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.permissions.management.permission.BulkCreatePermissionsRequest$Builder - params: - other: - annotation: [] - type: net.corda.data.permissions.management.permission.BulkCreatePermissionsRequest - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setPermissionsToCreate: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - setRoleIds: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.permissions.management.permission.BulkCreatePermissionsRequest$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.permission.BulkCreatePermissionsRequest - clearPermissionsToCreate: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.permission.BulkCreatePermissionsRequest$Builder - clearRoleIds: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.permission.BulkCreatePermissionsRequest$Builder - getPermissionsToCreate: - annotations: [] - default: false - type: public - returnType: java.util.List - getRoleIds: - annotations: [] - default: false - type: public - returnType: java.util.List - hasPermissionsToCreate: - annotations: [] - default: false - type: public - returnType: boolean - hasRoleIds: - annotations: [] - default: false - type: public - returnType: boolean - setPermissionsToCreate: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.permission.BulkCreatePermissionsRequest$Builder - params: - value: - annotation: [] - type: java.util.List - setRoleIds: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.permission.BulkCreatePermissionsRequest$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.permissions.management.permission.BulkCreatePermissionsResponse: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.permissions.management.permission.BulkCreatePermissionsResponse - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getPermissionIds: - annotations: [] - default: false - type: public - returnType: java.util.List - getRoleIds: - annotations: [] - default: false - type: public - returnType: java.util.List - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.permissions.management.permission.BulkCreatePermissionsResponse$Builder - params: - other: - annotation: [] - type: net.corda.data.permissions.management.permission.BulkCreatePermissionsResponse - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setPermissionIds: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - setRoleIds: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.permissions.management.permission.BulkCreatePermissionsResponse$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.permission.BulkCreatePermissionsResponse - clearPermissionIds: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.permission.BulkCreatePermissionsResponse$Builder - clearRoleIds: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.permission.BulkCreatePermissionsResponse$Builder - getPermissionIds: - annotations: [] - default: false - type: public - returnType: java.util.List - getRoleIds: - annotations: [] - default: false - type: public - returnType: java.util.List - hasPermissionIds: - annotations: [] - default: false - type: public - returnType: boolean - hasRoleIds: - annotations: [] - default: false - type: public - returnType: boolean - setPermissionIds: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.permission.BulkCreatePermissionsResponse$Builder - params: - value: - annotation: [] - type: java.util.List - setRoleIds: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.permission.BulkCreatePermissionsResponse$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.permissions.management.permission.CreatePermissionRequest: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.permissions.management.permission.CreatePermissionRequest - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getGroupVisibility: - annotations: [] - default: false - type: public - returnType: String - getPermissionString: - annotations: [] - default: false - type: public - returnType: String - getPermissionType: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.PermissionType - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.permissions.management.permission.CreatePermissionRequest$Builder - params: - other: - annotation: [] - type: net.corda.data.permissions.management.permission.CreatePermissionRequest - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setGroupVisibility: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setPermissionString: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setPermissionType: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.permissions.PermissionType - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.permissions.management.permission.CreatePermissionRequest$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.permission.CreatePermissionRequest - clearGroupVisibility: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.permission.CreatePermissionRequest$Builder - clearPermissionString: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.permission.CreatePermissionRequest$Builder - clearPermissionType: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.permission.CreatePermissionRequest$Builder - getGroupVisibility: - annotations: [] - default: false - type: public - returnType: String - getPermissionString: - annotations: [] - default: false - type: public - returnType: String - getPermissionType: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.PermissionType - hasGroupVisibility: - annotations: [] - default: false - type: public - returnType: boolean - hasPermissionString: - annotations: [] - default: false - type: public - returnType: boolean - hasPermissionType: - annotations: [] - default: false - type: public - returnType: boolean - setGroupVisibility: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.permission.CreatePermissionRequest$Builder - params: - value: - annotation: [] - type: String - setPermissionString: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.permission.CreatePermissionRequest$Builder - params: - value: - annotation: [] - type: String - setPermissionType: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.permission.CreatePermissionRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.permissions.PermissionType -net.corda.data.permissions.management.role.AddPermissionToRoleRequest: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.permissions.management.role.AddPermissionToRoleRequest - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getPermissionId: - annotations: [] - default: false - type: public - returnType: String - getRoleId: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.permissions.management.role.AddPermissionToRoleRequest$Builder - params: - other: - annotation: [] - type: net.corda.data.permissions.management.role.AddPermissionToRoleRequest - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setPermissionId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setRoleId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.permissions.management.role.AddPermissionToRoleRequest$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.role.AddPermissionToRoleRequest - clearPermissionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.role.AddPermissionToRoleRequest$Builder - clearRoleId: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.role.AddPermissionToRoleRequest$Builder - getPermissionId: - annotations: [] - default: false - type: public - returnType: String - getRoleId: - annotations: [] - default: false - type: public - returnType: String - hasPermissionId: - annotations: [] - default: false - type: public - returnType: boolean - hasRoleId: - annotations: [] - default: false - type: public - returnType: boolean - setPermissionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.role.AddPermissionToRoleRequest$Builder - params: - value: - annotation: [] - type: String - setRoleId: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.role.AddPermissionToRoleRequest$Builder - params: - value: - annotation: [] - type: String -net.corda.data.permissions.management.role.CreateRoleRequest: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.permissions.management.role.CreateRoleRequest - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getGroupVisibility: - annotations: [] - default: false - type: public - returnType: String - getRoleName: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.permissions.management.role.CreateRoleRequest$Builder - params: - other: - annotation: [] - type: net.corda.data.permissions.management.role.CreateRoleRequest - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setGroupVisibility: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setRoleName: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.permissions.management.role.CreateRoleRequest$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.role.CreateRoleRequest - clearGroupVisibility: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.role.CreateRoleRequest$Builder - clearRoleName: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.role.CreateRoleRequest$Builder - getGroupVisibility: - annotations: [] - default: false - type: public - returnType: String - getRoleName: - annotations: [] - default: false - type: public - returnType: String - hasGroupVisibility: - annotations: [] - default: false - type: public - returnType: boolean - hasRoleName: - annotations: [] - default: false - type: public - returnType: boolean - setGroupVisibility: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.role.CreateRoleRequest$Builder - params: - value: - annotation: [] - type: String - setRoleName: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.role.CreateRoleRequest$Builder - params: - value: - annotation: [] - type: String -net.corda.data.permissions.management.role.RemovePermissionFromRoleRequest: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.permissions.management.role.RemovePermissionFromRoleRequest - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getPermissionId: - annotations: [] - default: false - type: public - returnType: String - getRoleId: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.permissions.management.role.RemovePermissionFromRoleRequest$Builder - params: - other: - annotation: [] - type: net.corda.data.permissions.management.role.RemovePermissionFromRoleRequest - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setPermissionId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setRoleId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.permissions.management.role.RemovePermissionFromRoleRequest$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.role.RemovePermissionFromRoleRequest - clearPermissionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.role.RemovePermissionFromRoleRequest$Builder - clearRoleId: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.role.RemovePermissionFromRoleRequest$Builder - getPermissionId: - annotations: [] - default: false - type: public - returnType: String - getRoleId: - annotations: [] - default: false - type: public - returnType: String - hasPermissionId: - annotations: [] - default: false - type: public - returnType: boolean - hasRoleId: - annotations: [] - default: false - type: public - returnType: boolean - setPermissionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.role.RemovePermissionFromRoleRequest$Builder - params: - value: - annotation: [] - type: String - setRoleId: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.role.RemovePermissionFromRoleRequest$Builder - params: - value: - annotation: [] - type: String -net.corda.data.permissions.management.user.AddRoleToUserRequest: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.permissions.management.user.AddRoleToUserRequest - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getLoginName: - annotations: [] - default: false - type: public - returnType: String - getRoleId: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.permissions.management.user.AddRoleToUserRequest$Builder - params: - other: - annotation: [] - type: net.corda.data.permissions.management.user.AddRoleToUserRequest - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setLoginName: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setRoleId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.permissions.management.user.AddRoleToUserRequest$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.user.AddRoleToUserRequest - clearLoginName: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.user.AddRoleToUserRequest$Builder - clearRoleId: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.user.AddRoleToUserRequest$Builder - getLoginName: - annotations: [] - default: false - type: public - returnType: String - getRoleId: - annotations: [] - default: false - type: public - returnType: String - hasLoginName: - annotations: [] - default: false - type: public - returnType: boolean - hasRoleId: - annotations: [] - default: false - type: public - returnType: boolean - setLoginName: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.user.AddRoleToUserRequest$Builder - params: - value: - annotation: [] - type: String - setRoleId: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.user.AddRoleToUserRequest$Builder - params: - value: - annotation: [] - type: String -net.corda.data.permissions.management.user.CreateUserRequest: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.permissions.management.user.CreateUserRequest - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEnabled: - annotations: [] - default: false - type: public - returnType: boolean - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getFullName: - annotations: [] - default: false - type: public - returnType: String - getInitialHashedPassword: - annotations: [] - default: false - type: public - returnType: String - getLoginName: - annotations: [] - default: false - type: public - returnType: String - getParentGroupId: - annotations: [] - default: false - type: public - returnType: String - getPasswordExpiry: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getSaltValue: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.permissions.management.user.CreateUserRequest$Builder - params: - other: - annotation: [] - type: net.corda.data.permissions.management.user.CreateUserRequest - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setEnabled: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: boolean - setFullName: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setInitialHashedPassword: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setLoginName: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setParentGroupId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setPasswordExpiry: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - setSaltValue: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.permissions.management.user.CreateUserRequest$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.user.CreateUserRequest - clearEnabled: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.user.CreateUserRequest$Builder - clearFullName: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.user.CreateUserRequest$Builder - clearInitialHashedPassword: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.user.CreateUserRequest$Builder - clearLoginName: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.user.CreateUserRequest$Builder - clearParentGroupId: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.user.CreateUserRequest$Builder - clearPasswordExpiry: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.user.CreateUserRequest$Builder - clearSaltValue: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.user.CreateUserRequest$Builder - getEnabled: - annotations: [] - default: false - type: public - returnType: boolean - getFullName: - annotations: [] - default: false - type: public - returnType: String - getInitialHashedPassword: - annotations: [] - default: false - type: public - returnType: String - getLoginName: - annotations: [] - default: false - type: public - returnType: String - getParentGroupId: - annotations: [] - default: false - type: public - returnType: String - getPasswordExpiry: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getSaltValue: - annotations: [] - default: false - type: public - returnType: String - hasEnabled: - annotations: [] - default: false - type: public - returnType: boolean - hasFullName: - annotations: [] - default: false - type: public - returnType: boolean - hasInitialHashedPassword: - annotations: [] - default: false - type: public - returnType: boolean - hasLoginName: - annotations: [] - default: false - type: public - returnType: boolean - hasParentGroupId: - annotations: [] - default: false - type: public - returnType: boolean - hasPasswordExpiry: - annotations: [] - default: false - type: public - returnType: boolean - hasSaltValue: - annotations: [] - default: false - type: public - returnType: boolean - setEnabled: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.user.CreateUserRequest$Builder - params: - value: - annotation: [] - type: boolean - setFullName: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.user.CreateUserRequest$Builder - params: - value: - annotation: [] - type: String - setInitialHashedPassword: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.user.CreateUserRequest$Builder - params: - value: - annotation: [] - type: String - setLoginName: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.user.CreateUserRequest$Builder - params: - value: - annotation: [] - type: String - setParentGroupId: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.user.CreateUserRequest$Builder - params: - value: - annotation: [] - type: String - setPasswordExpiry: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.user.CreateUserRequest$Builder - params: - value: - annotation: [] - type: java.time.Instant - setSaltValue: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.user.CreateUserRequest$Builder - params: - value: - annotation: [] - type: String -net.corda.data.permissions.management.user.RemoveRoleFromUserRequest: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.permissions.management.user.RemoveRoleFromUserRequest - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getLoginName: - annotations: [] - default: false - type: public - returnType: String - getRoleId: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.permissions.management.user.RemoveRoleFromUserRequest$Builder - params: - other: - annotation: [] - type: net.corda.data.permissions.management.user.RemoveRoleFromUserRequest - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setLoginName: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setRoleId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.permissions.management.user.RemoveRoleFromUserRequest$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.user.RemoveRoleFromUserRequest - clearLoginName: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.user.RemoveRoleFromUserRequest$Builder - clearRoleId: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.user.RemoveRoleFromUserRequest$Builder - getLoginName: - annotations: [] - default: false - type: public - returnType: String - getRoleId: - annotations: [] - default: false - type: public - returnType: String - hasLoginName: - annotations: [] - default: false - type: public - returnType: boolean - hasRoleId: - annotations: [] - default: false - type: public - returnType: boolean - setLoginName: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.user.RemoveRoleFromUserRequest$Builder - params: - value: - annotation: [] - type: String - setRoleId: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.management.user.RemoveRoleFromUserRequest$Builder - params: - value: - annotation: [] - type: String -net.corda.data.permissions.summary.PermissionSummary: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.permissions.summary.PermissionSummary - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getGroupVisibility: - annotations: [] - default: false - type: public - returnType: String - getId: - annotations: [] - default: false - type: public - returnType: String - getPermissionString: - annotations: [] - default: false - type: public - returnType: String - getPermissionType: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.PermissionType - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getVirtualNode: - annotations: [] - default: false - type: public - returnType: String - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.permissions.summary.PermissionSummary$Builder - params: - other: - annotation: [] - type: net.corda.data.permissions.summary.PermissionSummary - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setGroupVisibility: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setPermissionString: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setPermissionType: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.permissions.PermissionType - setVirtualNode: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.permissions.summary.PermissionSummary$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.summary.PermissionSummary - clearGroupVisibility: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.summary.PermissionSummary$Builder - clearId: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.summary.PermissionSummary$Builder - clearPermissionString: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.summary.PermissionSummary$Builder - clearPermissionType: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.summary.PermissionSummary$Builder - clearVirtualNode: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.summary.PermissionSummary$Builder - getGroupVisibility: - annotations: [] - default: false - type: public - returnType: String - getId: - annotations: [] - default: false - type: public - returnType: String - getPermissionString: - annotations: [] - default: false - type: public - returnType: String - getPermissionType: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.PermissionType - getVirtualNode: - annotations: [] - default: false - type: public - returnType: String - hasGroupVisibility: - annotations: [] - default: false - type: public - returnType: boolean - hasId: - annotations: [] - default: false - type: public - returnType: boolean - hasPermissionString: - annotations: [] - default: false - type: public - returnType: boolean - hasPermissionType: - annotations: [] - default: false - type: public - returnType: boolean - hasVirtualNode: - annotations: [] - default: false - type: public - returnType: boolean - setGroupVisibility: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.summary.PermissionSummary$Builder - params: - value: - annotation: [] - type: String - setId: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.summary.PermissionSummary$Builder - params: - value: - annotation: [] - type: String - setPermissionString: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.summary.PermissionSummary$Builder - params: - value: - annotation: [] - type: String - setPermissionType: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.summary.PermissionSummary$Builder - params: - value: - annotation: [] - type: net.corda.data.permissions.PermissionType - setVirtualNode: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.summary.PermissionSummary$Builder - params: - value: - annotation: [] - type: String -net.corda.data.permissions.summary.UserPermissionSummary: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.permissions.summary.UserPermissionSummary - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEnabled: - annotations: [] - default: false - type: public - returnType: boolean - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getLastUpdateTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getLoginName: - annotations: [] - default: false - type: public - returnType: String - getPermissions: - annotations: [] - default: false - type: public - returnType: java.util.List - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.permissions.summary.UserPermissionSummary$Builder - params: - other: - annotation: [] - type: net.corda.data.permissions.summary.UserPermissionSummary - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setEnabled: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: boolean - setLastUpdateTimestamp: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - setLoginName: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setPermissions: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.permissions.summary.UserPermissionSummary$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.summary.UserPermissionSummary - clearEnabled: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.summary.UserPermissionSummary$Builder - clearLastUpdateTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.summary.UserPermissionSummary$Builder - clearLoginName: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.summary.UserPermissionSummary$Builder - clearPermissions: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.summary.UserPermissionSummary$Builder - getEnabled: - annotations: [] - default: false - type: public - returnType: boolean - getLastUpdateTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getLoginName: - annotations: [] - default: false - type: public - returnType: String - getPermissions: - annotations: [] - default: false - type: public - returnType: java.util.List - hasEnabled: - annotations: [] - default: false - type: public - returnType: boolean - hasLastUpdateTimestamp: - annotations: [] - default: false - type: public - returnType: boolean - hasLoginName: - annotations: [] - default: false - type: public - returnType: boolean - hasPermissions: - annotations: [] - default: false - type: public - returnType: boolean - setEnabled: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.summary.UserPermissionSummary$Builder - params: - value: - annotation: [] - type: boolean - setLastUpdateTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.summary.UserPermissionSummary$Builder - params: - value: - annotation: [] - type: java.time.Instant - setLoginName: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.summary.UserPermissionSummary$Builder - params: - value: - annotation: [] - type: String - setPermissions: - annotations: [] - default: false - type: public - returnType: net.corda.data.permissions.summary.UserPermissionSummary$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.persistence.DeleteEntities: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.persistence.DeleteEntities - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getEntities: - annotations: [] - default: false - type: public - returnType: java.util.List - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.persistence.DeleteEntities$Builder - params: - other: - annotation: [] - type: net.corda.data.persistence.DeleteEntities - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setEntities: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.persistence.DeleteEntities$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.DeleteEntities - clearEntities: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.DeleteEntities$Builder - getEntities: - annotations: [] - default: false - type: public - returnType: java.util.List - hasEntities: - annotations: [] - default: false - type: public - returnType: boolean - setEntities: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.DeleteEntities$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.persistence.DeleteEntitiesById: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.persistence.DeleteEntitiesById - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getEntityClassName: - annotations: [] - default: false - type: public - returnType: String - getIds: - annotations: [] - default: false - type: public - returnType: java.util.List - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.persistence.DeleteEntitiesById$Builder - params: - other: - annotation: [] - type: net.corda.data.persistence.DeleteEntitiesById - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setEntityClassName: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setIds: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.persistence.DeleteEntitiesById$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.DeleteEntitiesById - clearEntityClassName: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.DeleteEntitiesById$Builder - clearIds: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.DeleteEntitiesById$Builder - getEntityClassName: - annotations: [] - default: false - type: public - returnType: String - getIds: - annotations: [] - default: false - type: public - returnType: java.util.List - hasEntityClassName: - annotations: [] - default: false - type: public - returnType: boolean - hasIds: - annotations: [] - default: false - type: public - returnType: boolean - setEntityClassName: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.DeleteEntitiesById$Builder - params: - value: - annotation: [] - type: String - setIds: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.DeleteEntitiesById$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.persistence.EntityRequest: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.persistence.EntityRequest - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getFlowExternalEventContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventContext - getHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getRequest: - annotations: [] - default: false - type: public - returnType: Object - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.persistence.EntityRequest$Builder - params: - other: - annotation: [] - type: net.corda.data.persistence.EntityRequest - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setFlowExternalEventContext: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.flow.event.external.ExternalEventContext - setHoldingIdentity: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setRequest: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Object - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.persistence.EntityRequest$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.EntityRequest - clearFlowExternalEventContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.EntityRequest$Builder - clearHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.EntityRequest$Builder - clearRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.EntityRequest$Builder - getFlowExternalEventContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventContext - getFlowExternalEventContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventContext$Builder - getHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getHoldingIdentityBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - getRequest: - annotations: [] - default: false - type: public - returnType: Object - hasFlowExternalEventContext: - annotations: [] - default: false - type: public - returnType: boolean - hasFlowExternalEventContextBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasHoldingIdentity: - annotations: [] - default: false - type: public - returnType: boolean - hasHoldingIdentityBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasRequest: - annotations: [] - default: false - type: public - returnType: boolean - setFlowExternalEventContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.EntityRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.event.external.ExternalEventContext - setFlowExternalEventContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.EntityRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.event.external.ExternalEventContext$Builder - setHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.EntityRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setHoldingIdentityBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.EntityRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder - setRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.EntityRequest$Builder - params: - value: - annotation: [] - type: Object -net.corda.data.persistence.EntityResponse: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.persistence.EntityResponse - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getMetadata: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getResults: - annotations: [] - default: false - type: public - returnType: java.util.List - getResumePoint: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.persistence.EntityResponse$Builder - params: - other: - annotation: [] - type: net.corda.data.persistence.EntityResponse - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setMetadata: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setResults: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - setResumePoint: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.persistence.EntityResponse$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.EntityResponse - clearMetadata: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.EntityResponse$Builder - clearResults: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.EntityResponse$Builder - clearResumePoint: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.EntityResponse$Builder - getMetadata: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList - getMetadataBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.KeyValuePairList$Builder - getResults: - annotations: [] - default: false - type: public - returnType: java.util.List - getResumePoint: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - hasMetadata: - annotations: [] - default: false - type: public - returnType: boolean - hasMetadataBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasResults: - annotations: [] - default: false - type: public - returnType: boolean - hasResumePoint: - annotations: [] - default: false - type: public - returnType: boolean - setMetadata: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.EntityResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList - setMetadataBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.EntityResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.KeyValuePairList$Builder - setResults: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.EntityResponse$Builder - params: - value: - annotation: [] - type: java.util.List - setResumePoint: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.EntityResponse$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer -net.corda.data.persistence.FindAll: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.persistence.FindAll - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getEntityClassName: - annotations: [] - default: false - type: public - returnType: String - getLimit: - annotations: [] - default: false - type: public - returnType: int - getOffset: - annotations: [] - default: false - type: public - returnType: int - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.persistence.FindAll$Builder - params: - other: - annotation: [] - type: net.corda.data.persistence.FindAll - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setEntityClassName: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setLimit: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - setOffset: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.persistence.FindAll$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.FindAll - clearEntityClassName: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.FindAll$Builder - clearLimit: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.FindAll$Builder - clearOffset: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.FindAll$Builder - getEntityClassName: - annotations: [] - default: false - type: public - returnType: String - getLimit: - annotations: [] - default: false - type: public - returnType: int - getOffset: - annotations: [] - default: false - type: public - returnType: int - hasEntityClassName: - annotations: [] - default: false - type: public - returnType: boolean - hasLimit: - annotations: [] - default: false - type: public - returnType: boolean - hasOffset: - annotations: [] - default: false - type: public - returnType: boolean - setEntityClassName: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.FindAll$Builder - params: - value: - annotation: [] - type: String - setLimit: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.FindAll$Builder - params: - value: - annotation: [] - type: int - setOffset: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.FindAll$Builder - params: - value: - annotation: [] - type: int -net.corda.data.persistence.FindEntities: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.persistence.FindEntities - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getEntityClassName: - annotations: [] - default: false - type: public - returnType: String - getIds: - annotations: [] - default: false - type: public - returnType: java.util.List - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.persistence.FindEntities$Builder - params: - other: - annotation: [] - type: net.corda.data.persistence.FindEntities - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setEntityClassName: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setIds: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.persistence.FindEntities$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.FindEntities - clearEntityClassName: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.FindEntities$Builder - clearIds: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.FindEntities$Builder - getEntityClassName: - annotations: [] - default: false - type: public - returnType: String - getIds: - annotations: [] - default: false - type: public - returnType: java.util.List - hasEntityClassName: - annotations: [] - default: false - type: public - returnType: boolean - hasIds: - annotations: [] - default: false - type: public - returnType: boolean - setEntityClassName: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.FindEntities$Builder - params: - value: - annotation: [] - type: String - setIds: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.FindEntities$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.persistence.FindWithNamedQuery: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.persistence.FindWithNamedQuery - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getLimit: - annotations: [] - default: false - type: public - returnType: int - getOffset: - annotations: [] - default: false - type: public - returnType: int - getParameters: - annotations: [] - default: false - type: public - returnType: "java.util.Map" - getQueryName: - annotations: [] - default: false - type: public - returnType: String - getResumePoint: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.persistence.FindWithNamedQuery$Builder - params: - other: - annotation: [] - type: net.corda.data.persistence.FindWithNamedQuery - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setLimit: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - setOffset: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - setParameters: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: "java.util.Map" - setQueryName: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setResumePoint: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.persistence.FindWithNamedQuery$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.FindWithNamedQuery - clearLimit: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.FindWithNamedQuery$Builder - clearOffset: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.FindWithNamedQuery$Builder - clearParameters: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.FindWithNamedQuery$Builder - clearQueryName: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.FindWithNamedQuery$Builder - clearResumePoint: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.FindWithNamedQuery$Builder - getLimit: - annotations: [] - default: false - type: public - returnType: int - getOffset: - annotations: [] - default: false - type: public - returnType: int - getParameters: - annotations: [] - default: false - type: public - returnType: "java.util.Map" - getQueryName: - annotations: [] - default: false - type: public - returnType: String - getResumePoint: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - hasLimit: - annotations: [] - default: false - type: public - returnType: boolean - hasOffset: - annotations: [] - default: false - type: public - returnType: boolean - hasParameters: - annotations: [] - default: false - type: public - returnType: boolean - hasQueryName: - annotations: [] - default: false - type: public - returnType: boolean - hasResumePoint: - annotations: [] - default: false - type: public - returnType: boolean - setLimit: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.FindWithNamedQuery$Builder - params: - value: - annotation: [] - type: int - setOffset: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.FindWithNamedQuery$Builder - params: - value: - annotation: [] - type: int - setParameters: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.FindWithNamedQuery$Builder - params: - value: - annotation: [] - type: "java.util.Map" - setQueryName: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.FindWithNamedQuery$Builder - params: - value: - annotation: [] - type: String - setResumePoint: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.FindWithNamedQuery$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer -net.corda.data.persistence.MergeEntities: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.persistence.MergeEntities - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getEntities: - annotations: [] - default: false - type: public - returnType: java.util.List - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.persistence.MergeEntities$Builder - params: - other: - annotation: [] - type: net.corda.data.persistence.MergeEntities - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setEntities: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.persistence.MergeEntities$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.MergeEntities - clearEntities: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.MergeEntities$Builder - getEntities: - annotations: [] - default: false - type: public - returnType: java.util.List - hasEntities: - annotations: [] - default: false - type: public - returnType: boolean - setEntities: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.MergeEntities$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.persistence.PersistEntities: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.persistence.PersistEntities - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getEntities: - annotations: [] - default: false - type: public - returnType: java.util.List - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.persistence.PersistEntities$Builder - params: - other: - annotation: [] - type: net.corda.data.persistence.PersistEntities - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setEntities: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.persistence.PersistEntities$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.PersistEntities - clearEntities: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.PersistEntities$Builder - getEntities: - annotations: [] - default: false - type: public - returnType: java.util.List - hasEntities: - annotations: [] - default: false - type: public - returnType: boolean - setEntities: - annotations: [] - default: false - type: public - returnType: net.corda.data.persistence.PersistEntities$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.scheduler.ScheduledTaskTrigger: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.scheduler.ScheduledTaskTrigger - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getName: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.scheduler.ScheduledTaskTrigger$Builder - params: - other: - annotation: [] - type: net.corda.data.scheduler.ScheduledTaskTrigger - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setName: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setTimestamp: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.scheduler.ScheduledTaskTrigger$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.scheduler.ScheduledTaskTrigger - clearName: - annotations: [] - default: false - type: public - returnType: net.corda.data.scheduler.ScheduledTaskTrigger$Builder - clearTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.scheduler.ScheduledTaskTrigger$Builder - getName: - annotations: [] - default: false - type: public - returnType: String - getTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - hasName: - annotations: [] - default: false - type: public - returnType: boolean - hasTimestamp: - annotations: [] - default: false - type: public - returnType: boolean - setName: - annotations: [] - default: false - type: public - returnType: net.corda.data.scheduler.ScheduledTaskTrigger$Builder - params: - value: - annotation: [] - type: String - setTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.scheduler.ScheduledTaskTrigger$Builder - params: - value: - annotation: [] - type: java.time.Instant -net.corda.data.sync.BloomFilter: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.sync.BloomFilter - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getFilterBits: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getFilterLength: - annotations: [] - default: false - type: public - returnType: int - getHashSeed: - annotations: [] - default: false - type: public - returnType: int - getNumberOfHashFunctions: - annotations: [] - default: false - type: public - returnType: int - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.sync.BloomFilter$Builder - params: - other: - annotation: [] - type: net.corda.data.sync.BloomFilter - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setFilterBits: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setFilterLength: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - setHashSeed: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - setNumberOfHashFunctions: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.sync.BloomFilter$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.sync.BloomFilter - clearFilterBits: - annotations: [] - default: false - type: public - returnType: net.corda.data.sync.BloomFilter$Builder - clearFilterLength: - annotations: [] - default: false - type: public - returnType: net.corda.data.sync.BloomFilter$Builder - clearHashSeed: - annotations: [] - default: false - type: public - returnType: net.corda.data.sync.BloomFilter$Builder - clearNumberOfHashFunctions: - annotations: [] - default: false - type: public - returnType: net.corda.data.sync.BloomFilter$Builder - getFilterBits: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - getFilterLength: - annotations: [] - default: false - type: public - returnType: int - getHashSeed: - annotations: [] - default: false - type: public - returnType: int - getNumberOfHashFunctions: - annotations: [] - default: false - type: public - returnType: int - hasFilterBits: - annotations: [] - default: false - type: public - returnType: boolean - hasFilterLength: - annotations: [] - default: false - type: public - returnType: boolean - hasHashSeed: - annotations: [] - default: false - type: public - returnType: boolean - hasNumberOfHashFunctions: - annotations: [] - default: false - type: public - returnType: boolean - setFilterBits: - annotations: [] - default: false - type: public - returnType: net.corda.data.sync.BloomFilter$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer - setFilterLength: - annotations: [] - default: false - type: public - returnType: net.corda.data.sync.BloomFilter$Builder - params: - value: - annotation: [] - type: int - setHashSeed: - annotations: [] - default: false - type: public - returnType: net.corda.data.sync.BloomFilter$Builder - params: - value: - annotation: [] - type: int - setNumberOfHashFunctions: - annotations: [] - default: false - type: public - returnType: net.corda.data.sync.BloomFilter$Builder - params: - value: - annotation: [] - type: int -net.corda.data.test.EvolvedMessage: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.test.EvolvedMessage - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getExtraField: - annotations: [] - default: false - type: public - returnType: String - getFlags: - annotations: [] - default: false - type: public - returnType: int - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.test.EvolvedMessage$Builder - params: - other: - annotation: [] - type: net.corda.data.test.EvolvedMessage - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setExtraField: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setFlags: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.test.EvolvedMessage$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.test.EvolvedMessage - clearExtraField: - annotations: [] - default: false - type: public - returnType: net.corda.data.test.EvolvedMessage$Builder - clearFlags: - annotations: [] - default: false - type: public - returnType: net.corda.data.test.EvolvedMessage$Builder - getExtraField: - annotations: [] - default: false - type: public - returnType: String - getFlags: - annotations: [] - default: false - type: public - returnType: int - hasExtraField: - annotations: [] - default: false - type: public - returnType: boolean - hasFlags: - annotations: [] - default: false - type: public - returnType: boolean - setExtraField: - annotations: [] - default: false - type: public - returnType: net.corda.data.test.EvolvedMessage$Builder - params: - value: - annotation: [] - type: String - setFlags: - annotations: [] - default: false - type: public - returnType: net.corda.data.test.EvolvedMessage$Builder - params: - value: - annotation: [] - type: int -net.corda.data.uniqueness.UniquenessCheckRequestAvro: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.uniqueness.UniquenessCheckRequestAvro - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getFlowExternalEventContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventContext - getHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getInputStates: - annotations: [] - default: false - type: public - returnType: java.util.List - getNumOutputStates: - annotations: [] - default: false - type: public - returnType: int - getOriginatorX500Name: - annotations: [] - default: false - type: public - returnType: String - getReferenceStates: - annotations: [] - default: false - type: public - returnType: java.util.List - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getTimeWindowLowerBound: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getTimeWindowUpperBound: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getTxId: - annotations: [] - default: false - type: public - returnType: String - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.uniqueness.UniquenessCheckRequestAvro$Builder - params: - other: - annotation: [] - type: net.corda.data.uniqueness.UniquenessCheckRequestAvro - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setFlowExternalEventContext: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.flow.event.external.ExternalEventContext - setHoldingIdentity: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setInputStates: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - setNumOutputStates: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - setOriginatorX500Name: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setReferenceStates: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - setTimeWindowLowerBound: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - setTimeWindowUpperBound: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - setTxId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.uniqueness.UniquenessCheckRequestAvro$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckRequestAvro - clearFlowExternalEventContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckRequestAvro$Builder - clearHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckRequestAvro$Builder - clearInputStates: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckRequestAvro$Builder - clearNumOutputStates: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckRequestAvro$Builder - clearOriginatorX500Name: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckRequestAvro$Builder - clearReferenceStates: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckRequestAvro$Builder - clearTimeWindowLowerBound: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckRequestAvro$Builder - clearTimeWindowUpperBound: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckRequestAvro$Builder - clearTxId: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckRequestAvro$Builder - getFlowExternalEventContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventContext - getFlowExternalEventContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventContext$Builder - getHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getHoldingIdentityBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - getInputStates: - annotations: [] - default: false - type: public - returnType: java.util.List - getNumOutputStates: - annotations: [] - default: false - type: public - returnType: int - getOriginatorX500Name: - annotations: [] - default: false - type: public - returnType: String - getReferenceStates: - annotations: [] - default: false - type: public - returnType: java.util.List - getTimeWindowLowerBound: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getTimeWindowUpperBound: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getTxId: - annotations: [] - default: false - type: public - returnType: String - hasFlowExternalEventContext: - annotations: [] - default: false - type: public - returnType: boolean - hasFlowExternalEventContextBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasHoldingIdentity: - annotations: [] - default: false - type: public - returnType: boolean - hasHoldingIdentityBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasInputStates: - annotations: [] - default: false - type: public - returnType: boolean - hasNumOutputStates: - annotations: [] - default: false - type: public - returnType: boolean - hasOriginatorX500Name: - annotations: [] - default: false - type: public - returnType: boolean - hasReferenceStates: - annotations: [] - default: false - type: public - returnType: boolean - hasTimeWindowLowerBound: - annotations: [] - default: false - type: public - returnType: boolean - hasTimeWindowUpperBound: - annotations: [] - default: false - type: public - returnType: boolean - hasTxId: - annotations: [] - default: false - type: public - returnType: boolean - setFlowExternalEventContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckRequestAvro$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.event.external.ExternalEventContext - setFlowExternalEventContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckRequestAvro$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.event.external.ExternalEventContext$Builder - setHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckRequestAvro$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setHoldingIdentityBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckRequestAvro$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder - setInputStates: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckRequestAvro$Builder - params: - value: - annotation: [] - type: java.util.List - setNumOutputStates: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckRequestAvro$Builder - params: - value: - annotation: [] - type: int - setOriginatorX500Name: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckRequestAvro$Builder - params: - value: - annotation: [] - type: String - setReferenceStates: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckRequestAvro$Builder - params: - value: - annotation: [] - type: java.util.List - setTimeWindowLowerBound: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckRequestAvro$Builder - params: - value: - annotation: [] - type: java.time.Instant - setTimeWindowUpperBound: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckRequestAvro$Builder - params: - value: - annotation: [] - type: java.time.Instant - setTxId: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckRequestAvro$Builder - params: - value: - annotation: [] - type: String -net.corda.data.uniqueness.UniquenessCheckResponseAvro: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.uniqueness.UniquenessCheckResponseAvro - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getResult: - annotations: [] - default: false - type: public - returnType: Object - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getTxId: - annotations: [] - default: false - type: public - returnType: String - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.uniqueness.UniquenessCheckResponseAvro$Builder - params: - other: - annotation: [] - type: net.corda.data.uniqueness.UniquenessCheckResponseAvro - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setResult: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Object - setTxId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.uniqueness.UniquenessCheckResponseAvro$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckResponseAvro - clearResult: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckResponseAvro$Builder - clearTxId: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckResponseAvro$Builder - getResult: - annotations: [] - default: false - type: public - returnType: Object - getTxId: - annotations: [] - default: false - type: public - returnType: String - hasResult: - annotations: [] - default: false - type: public - returnType: boolean - hasTxId: - annotations: [] - default: false - type: public - returnType: boolean - setResult: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckResponseAvro$Builder - params: - value: - annotation: [] - type: Object - setTxId: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckResponseAvro$Builder - params: - value: - annotation: [] - type: String -net.corda.data.uniqueness.UniquenessCheckResultInputStateConflictAvro: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.uniqueness.UniquenessCheckResultInputStateConflictAvro - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConflictingStates: - annotations: [] - default: false - type: public - returnType: java.util.List - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.uniqueness.UniquenessCheckResultInputStateConflictAvro$Builder - params: - other: - annotation: [] - type: net.corda.data.uniqueness.UniquenessCheckResultInputStateConflictAvro - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setConflictingStates: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.uniqueness.UniquenessCheckResultInputStateConflictAvro$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckResultInputStateConflictAvro - clearConflictingStates: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckResultInputStateConflictAvro$Builder - getConflictingStates: - annotations: [] - default: false - type: public - returnType: java.util.List - hasConflictingStates: - annotations: [] - default: false - type: public - returnType: boolean - setConflictingStates: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckResultInputStateConflictAvro$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.uniqueness.UniquenessCheckResultInputStateUnknownAvro: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.uniqueness.UniquenessCheckResultInputStateUnknownAvro - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getUnknownStates: - annotations: [] - default: false - type: public - returnType: java.util.List - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.uniqueness.UniquenessCheckResultInputStateUnknownAvro$Builder - params: - other: - annotation: [] - type: net.corda.data.uniqueness.UniquenessCheckResultInputStateUnknownAvro - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setUnknownStates: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.uniqueness.UniquenessCheckResultInputStateUnknownAvro$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckResultInputStateUnknownAvro - clearUnknownStates: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckResultInputStateUnknownAvro$Builder - getUnknownStates: - annotations: [] - default: false - type: public - returnType: java.util.List - hasUnknownStates: - annotations: [] - default: false - type: public - returnType: boolean - setUnknownStates: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckResultInputStateUnknownAvro$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.uniqueness.UniquenessCheckResultMalformedRequestAvro: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.uniqueness.UniquenessCheckResultMalformedRequestAvro - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getErrorText: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.uniqueness.UniquenessCheckResultMalformedRequestAvro$Builder - params: - other: - annotation: [] - type: net.corda.data.uniqueness.UniquenessCheckResultMalformedRequestAvro - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setErrorText: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.uniqueness.UniquenessCheckResultMalformedRequestAvro$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckResultMalformedRequestAvro - clearErrorText: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckResultMalformedRequestAvro$Builder - getErrorText: - annotations: [] - default: false - type: public - returnType: String - hasErrorText: - annotations: [] - default: false - type: public - returnType: boolean - setErrorText: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckResultMalformedRequestAvro$Builder - params: - value: - annotation: [] - type: String -net.corda.data.uniqueness.UniquenessCheckResultReferenceStateConflictAvro: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.uniqueness.UniquenessCheckResultReferenceStateConflictAvro - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConflictingStates: - annotations: [] - default: false - type: public - returnType: java.util.List - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.uniqueness.UniquenessCheckResultReferenceStateConflictAvro$Builder - params: - other: - annotation: [] - type: net.corda.data.uniqueness.UniquenessCheckResultReferenceStateConflictAvro - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setConflictingStates: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.uniqueness.UniquenessCheckResultReferenceStateConflictAvro$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckResultReferenceStateConflictAvro - clearConflictingStates: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckResultReferenceStateConflictAvro$Builder - getConflictingStates: - annotations: [] - default: false - type: public - returnType: java.util.List - hasConflictingStates: - annotations: [] - default: false - type: public - returnType: boolean - setConflictingStates: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckResultReferenceStateConflictAvro$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.uniqueness.UniquenessCheckResultReferenceStateUnknownAvro: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.uniqueness.UniquenessCheckResultReferenceStateUnknownAvro - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getUnknownStates: - annotations: [] - default: false - type: public - returnType: java.util.List - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.uniqueness.UniquenessCheckResultReferenceStateUnknownAvro$Builder - params: - other: - annotation: [] - type: net.corda.data.uniqueness.UniquenessCheckResultReferenceStateUnknownAvro - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setUnknownStates: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.uniqueness.UniquenessCheckResultReferenceStateUnknownAvro$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckResultReferenceStateUnknownAvro - clearUnknownStates: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckResultReferenceStateUnknownAvro$Builder - getUnknownStates: - annotations: [] - default: false - type: public - returnType: java.util.List - hasUnknownStates: - annotations: [] - default: false - type: public - returnType: boolean - setUnknownStates: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckResultReferenceStateUnknownAvro$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.uniqueness.UniquenessCheckResultSuccessAvro: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.uniqueness.UniquenessCheckResultSuccessAvro - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getCommitTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.uniqueness.UniquenessCheckResultSuccessAvro$Builder - params: - other: - annotation: [] - type: net.corda.data.uniqueness.UniquenessCheckResultSuccessAvro - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setCommitTimestamp: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.uniqueness.UniquenessCheckResultSuccessAvro$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckResultSuccessAvro - clearCommitTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckResultSuccessAvro$Builder - getCommitTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - hasCommitTimestamp: - annotations: [] - default: false - type: public - returnType: boolean - setCommitTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckResultSuccessAvro$Builder - params: - value: - annotation: [] - type: java.time.Instant -net.corda.data.uniqueness.UniquenessCheckResultTimeWindowOutOfBoundsAvro: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.uniqueness.UniquenessCheckResultTimeWindowOutOfBoundsAvro - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getEvaluationTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getTimeWindowLowerBound: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getTimeWindowUpperBound: - annotations: [] - default: false - type: public - returnType: java.time.Instant - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.uniqueness.UniquenessCheckResultTimeWindowOutOfBoundsAvro$Builder - params: - other: - annotation: [] - type: net.corda.data.uniqueness.UniquenessCheckResultTimeWindowOutOfBoundsAvro - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setEvaluationTimestamp: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - setTimeWindowLowerBound: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - setTimeWindowUpperBound: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.uniqueness.UniquenessCheckResultTimeWindowOutOfBoundsAvro$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckResultTimeWindowOutOfBoundsAvro - clearEvaluationTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckResultTimeWindowOutOfBoundsAvro$Builder - clearTimeWindowLowerBound: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckResultTimeWindowOutOfBoundsAvro$Builder - clearTimeWindowUpperBound: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckResultTimeWindowOutOfBoundsAvro$Builder - getEvaluationTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getTimeWindowLowerBound: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getTimeWindowUpperBound: - annotations: [] - default: false - type: public - returnType: java.time.Instant - hasEvaluationTimestamp: - annotations: [] - default: false - type: public - returnType: boolean - hasTimeWindowLowerBound: - annotations: [] - default: false - type: public - returnType: boolean - hasTimeWindowUpperBound: - annotations: [] - default: false - type: public - returnType: boolean - setEvaluationTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckResultTimeWindowOutOfBoundsAvro$Builder - params: - value: - annotation: [] - type: java.time.Instant - setTimeWindowLowerBound: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckResultTimeWindowOutOfBoundsAvro$Builder - params: - value: - annotation: [] - type: java.time.Instant - setTimeWindowUpperBound: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckResultTimeWindowOutOfBoundsAvro$Builder - params: - value: - annotation: [] - type: java.time.Instant -net.corda.data.uniqueness.UniquenessCheckResultUnhandledExceptionAvro: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.uniqueness.UniquenessCheckResultUnhandledExceptionAvro - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getException: - annotations: [] - default: false - type: public - returnType: net.corda.data.ExceptionEnvelope - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.uniqueness.UniquenessCheckResultUnhandledExceptionAvro$Builder - params: - other: - annotation: [] - type: net.corda.data.uniqueness.UniquenessCheckResultUnhandledExceptionAvro - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setException: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.ExceptionEnvelope - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.uniqueness.UniquenessCheckResultUnhandledExceptionAvro$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckResultUnhandledExceptionAvro - clearException: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckResultUnhandledExceptionAvro$Builder - getException: - annotations: [] - default: false - type: public - returnType: net.corda.data.ExceptionEnvelope - getExceptionBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ExceptionEnvelope$Builder - hasException: - annotations: [] - default: false - type: public - returnType: boolean - hasExceptionBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setException: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckResultUnhandledExceptionAvro$Builder - params: - value: - annotation: [] - type: net.corda.data.ExceptionEnvelope - setExceptionBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.uniqueness.UniquenessCheckResultUnhandledExceptionAvro$Builder - params: - value: - annotation: [] - type: net.corda.data.ExceptionEnvelope$Builder -net.corda.data.virtualnode.VirtualNodeAsynchronousRequest: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.virtualnode.VirtualNodeAsynchronousRequest - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getRequest: - annotations: [] - default: false - type: public - returnType: Object - getRequestId: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.virtualnode.VirtualNodeAsynchronousRequest$Builder - params: - other: - annotation: [] - type: net.corda.data.virtualnode.VirtualNodeAsynchronousRequest - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setRequest: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Object - setRequestId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setTimestamp: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.virtualnode.VirtualNodeAsynchronousRequest$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeAsynchronousRequest - clearRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeAsynchronousRequest$Builder - clearRequestId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeAsynchronousRequest$Builder - clearTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeAsynchronousRequest$Builder - getRequest: - annotations: [] - default: false - type: public - returnType: Object - getRequestId: - annotations: [] - default: false - type: public - returnType: String - getTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - hasRequest: - annotations: [] - default: false - type: public - returnType: boolean - hasRequestId: - annotations: [] - default: false - type: public - returnType: boolean - hasTimestamp: - annotations: [] - default: false - type: public - returnType: boolean - setRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeAsynchronousRequest$Builder - params: - value: - annotation: [] - type: Object - setRequestId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeAsynchronousRequest$Builder - params: - value: - annotation: [] - type: String - setTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeAsynchronousRequest$Builder - params: - value: - annotation: [] - type: java.time.Instant -net.corda.data.virtualnode.VirtualNodeCreateRequest: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.virtualnode.VirtualNodeCreateRequest - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getCpiFileChecksum: - annotations: [] - default: false - type: public - returnType: String - getCryptoDdlConnection: - annotations: [] - default: false - type: public - returnType: String - getCryptoDmlConnection: - annotations: [] - default: false - type: public - returnType: String - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getHoldingId: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getUniquenessDdlConnection: - annotations: [] - default: false - type: public - returnType: String - getUniquenessDmlConnection: - annotations: [] - default: false - type: public - returnType: String - getUpdateActor: - annotations: [] - default: false - type: public - returnType: String - getVaultDdlConnection: - annotations: [] - default: false - type: public - returnType: String - getVaultDmlConnection: - annotations: [] - default: false - type: public - returnType: String - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.virtualnode.VirtualNodeCreateRequest$Builder - params: - other: - annotation: [] - type: net.corda.data.virtualnode.VirtualNodeCreateRequest - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setCpiFileChecksum: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setCryptoDdlConnection: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setCryptoDmlConnection: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setHoldingId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setUniquenessDdlConnection: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setUniquenessDmlConnection: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setUpdateActor: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setVaultDdlConnection: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setVaultDmlConnection: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.virtualnode.VirtualNodeCreateRequest$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateRequest - clearCpiFileChecksum: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateRequest$Builder - clearCryptoDdlConnection: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateRequest$Builder - clearCryptoDmlConnection: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateRequest$Builder - clearHoldingId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateRequest$Builder - clearUniquenessDdlConnection: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateRequest$Builder - clearUniquenessDmlConnection: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateRequest$Builder - clearUpdateActor: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateRequest$Builder - clearVaultDdlConnection: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateRequest$Builder - clearVaultDmlConnection: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateRequest$Builder - getCpiFileChecksum: - annotations: [] - default: false - type: public - returnType: String - getCryptoDdlConnection: - annotations: [] - default: false - type: public - returnType: String - getCryptoDmlConnection: - annotations: [] - default: false - type: public - returnType: String - getHoldingId: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getHoldingIdBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - getUniquenessDdlConnection: - annotations: [] - default: false - type: public - returnType: String - getUniquenessDmlConnection: - annotations: [] - default: false - type: public - returnType: String - getUpdateActor: - annotations: [] - default: false - type: public - returnType: String - getVaultDdlConnection: - annotations: [] - default: false - type: public - returnType: String - getVaultDmlConnection: - annotations: [] - default: false - type: public - returnType: String - hasCpiFileChecksum: - annotations: [] - default: false - type: public - returnType: boolean - hasCryptoDdlConnection: - annotations: [] - default: false - type: public - returnType: boolean - hasCryptoDmlConnection: - annotations: [] - default: false - type: public - returnType: boolean - hasHoldingId: - annotations: [] - default: false - type: public - returnType: boolean - hasHoldingIdBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasUniquenessDdlConnection: - annotations: [] - default: false - type: public - returnType: boolean - hasUniquenessDmlConnection: - annotations: [] - default: false - type: public - returnType: boolean - hasUpdateActor: - annotations: [] - default: false - type: public - returnType: boolean - hasVaultDdlConnection: - annotations: [] - default: false - type: public - returnType: boolean - hasVaultDmlConnection: - annotations: [] - default: false - type: public - returnType: boolean - setCpiFileChecksum: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateRequest$Builder - params: - value: - annotation: [] - type: String - setCryptoDdlConnection: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateRequest$Builder - params: - value: - annotation: [] - type: String - setCryptoDmlConnection: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateRequest$Builder - params: - value: - annotation: [] - type: String - setHoldingId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setHoldingIdBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder - setUniquenessDdlConnection: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateRequest$Builder - params: - value: - annotation: [] - type: String - setUniquenessDmlConnection: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateRequest$Builder - params: - value: - annotation: [] - type: String - setUpdateActor: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateRequest$Builder - params: - value: - annotation: [] - type: String - setVaultDdlConnection: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateRequest$Builder - params: - value: - annotation: [] - type: String - setVaultDmlConnection: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateRequest$Builder - params: - value: - annotation: [] - type: String -net.corda.data.virtualnode.VirtualNodeCreateResponse: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getCpiFileChecksum: - annotations: [] - default: false - type: public - returnType: String - getCpiIdentifier: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpiIdentifier - getCryptoDdlConnectionId: - annotations: [] - default: false - type: public - returnType: String - getCryptoDmlConnectionId: - annotations: [] - default: false - type: public - returnType: String - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getFlowOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationalState - getFlowP2pOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationalState - getFlowStartOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationalState - getHoldingIdentifierHash: - annotations: [] - default: false - type: public - returnType: String - getHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getHsmConnectionId: - annotations: [] - default: false - type: public - returnType: String - getMgmGroupId: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getUniquenessDdlConnectionId: - annotations: [] - default: false - type: public - returnType: String - getUniquenessDmlConnectionId: - annotations: [] - default: false - type: public - returnType: String - getVaultDbOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationalState - getVaultDdlConnectionId: - annotations: [] - default: false - type: public - returnType: String - getVaultDmlConnectionId: - annotations: [] - default: false - type: public - returnType: String - getX500Name: - annotations: [] - default: false - type: public - returnType: String - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder - params: - other: - annotation: [] - type: net.corda.data.virtualnode.VirtualNodeCreateResponse - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setCpiFileChecksum: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setCpiIdentifier: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.packaging.CpiIdentifier - setCryptoDdlConnectionId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setCryptoDmlConnectionId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setFlowOperationalStatus: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.virtualnode.VirtualNodeOperationalState - setFlowP2pOperationalStatus: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.virtualnode.VirtualNodeOperationalState - setFlowStartOperationalStatus: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.virtualnode.VirtualNodeOperationalState - setHoldingIdentifierHash: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setHoldingIdentity: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setHsmConnectionId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setMgmGroupId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setUniquenessDdlConnectionId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setUniquenessDmlConnectionId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setVaultDbOperationalStatus: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.virtualnode.VirtualNodeOperationalState - setVaultDdlConnectionId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setVaultDmlConnectionId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setX500Name: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse - clearCpiFileChecksum: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder - clearCpiIdentifier: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder - clearCryptoDdlConnectionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder - clearCryptoDmlConnectionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder - clearFlowOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder - clearFlowP2pOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder - clearFlowStartOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder - clearHoldingIdentifierHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder - clearHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder - clearHsmConnectionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder - clearMgmGroupId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder - clearUniquenessDdlConnectionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder - clearUniquenessDmlConnectionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder - clearVaultDbOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder - clearVaultDdlConnectionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder - clearVaultDmlConnectionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder - clearX500Name: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder - getCpiFileChecksum: - annotations: [] - default: false - type: public - returnType: String - getCpiIdentifier: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpiIdentifier - getCpiIdentifierBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpiIdentifier$Builder - getCryptoDdlConnectionId: - annotations: [] - default: false - type: public - returnType: String - getCryptoDmlConnectionId: - annotations: [] - default: false - type: public - returnType: String - getFlowOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationalState - getFlowP2pOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationalState - getFlowStartOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationalState - getHoldingIdentifierHash: - annotations: [] - default: false - type: public - returnType: String - getHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getHoldingIdentityBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - getHsmConnectionId: - annotations: [] - default: false - type: public - returnType: String - getMgmGroupId: - annotations: [] - default: false - type: public - returnType: String - getUniquenessDdlConnectionId: - annotations: [] - default: false - type: public - returnType: String - getUniquenessDmlConnectionId: - annotations: [] - default: false - type: public - returnType: String - getVaultDbOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationalState - getVaultDdlConnectionId: - annotations: [] - default: false - type: public - returnType: String - getVaultDmlConnectionId: - annotations: [] - default: false - type: public - returnType: String - getX500Name: - annotations: [] - default: false - type: public - returnType: String - hasCpiFileChecksum: - annotations: [] - default: false - type: public - returnType: boolean - hasCpiIdentifier: - annotations: [] - default: false - type: public - returnType: boolean - hasCpiIdentifierBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasCryptoDdlConnectionId: - annotations: [] - default: false - type: public - returnType: boolean - hasCryptoDmlConnectionId: - annotations: [] - default: false - type: public - returnType: boolean - hasFlowOperationalStatus: - annotations: [] - default: false - type: public - returnType: boolean - hasFlowP2pOperationalStatus: - annotations: [] - default: false - type: public - returnType: boolean - hasFlowStartOperationalStatus: - annotations: [] - default: false - type: public - returnType: boolean - hasHoldingIdentifierHash: - annotations: [] - default: false - type: public - returnType: boolean - hasHoldingIdentity: - annotations: [] - default: false - type: public - returnType: boolean - hasHoldingIdentityBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasHsmConnectionId: - annotations: [] - default: false - type: public - returnType: boolean - hasMgmGroupId: - annotations: [] - default: false - type: public - returnType: boolean - hasUniquenessDdlConnectionId: - annotations: [] - default: false - type: public - returnType: boolean - hasUniquenessDmlConnectionId: - annotations: [] - default: false - type: public - returnType: boolean - hasVaultDbOperationalStatus: - annotations: [] - default: false - type: public - returnType: boolean - hasVaultDdlConnectionId: - annotations: [] - default: false - type: public - returnType: boolean - hasVaultDmlConnectionId: - annotations: [] - default: false - type: public - returnType: boolean - hasX500Name: - annotations: [] - default: false - type: public - returnType: boolean - setCpiFileChecksum: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder - params: - value: - annotation: [] - type: String - setCpiIdentifier: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.packaging.CpiIdentifier - setCpiIdentifierBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.packaging.CpiIdentifier$Builder - setCryptoDdlConnectionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder - params: - value: - annotation: [] - type: String - setCryptoDmlConnectionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder - params: - value: - annotation: [] - type: String - setFlowOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.virtualnode.VirtualNodeOperationalState - setFlowP2pOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.virtualnode.VirtualNodeOperationalState - setFlowStartOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.virtualnode.VirtualNodeOperationalState - setHoldingIdentifierHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder - params: - value: - annotation: [] - type: String - setHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setHoldingIdentityBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder - setHsmConnectionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder - params: - value: - annotation: [] - type: String - setMgmGroupId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder - params: - value: - annotation: [] - type: String - setUniquenessDdlConnectionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder - params: - value: - annotation: [] - type: String - setUniquenessDmlConnectionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder - params: - value: - annotation: [] - type: String - setVaultDbOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.virtualnode.VirtualNodeOperationalState - setVaultDdlConnectionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder - params: - value: - annotation: [] - type: String - setVaultDmlConnectionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder - params: - value: - annotation: [] - type: String - setX500Name: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeCreateResponse$Builder - params: - value: - annotation: [] - type: String -net.corda.data.virtualnode.VirtualNodeDBResetRequest: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.virtualnode.VirtualNodeDBResetRequest - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getHoldingIdentityShortHashes: - annotations: [] - default: false - type: public - returnType: java.util.List - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getUpdateActor: - annotations: [] - default: false - type: public - returnType: String - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.virtualnode.VirtualNodeDBResetRequest$Builder - params: - other: - annotation: [] - type: net.corda.data.virtualnode.VirtualNodeDBResetRequest - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setHoldingIdentityShortHashes: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - setUpdateActor: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.virtualnode.VirtualNodeDBResetRequest$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeDBResetRequest - clearHoldingIdentityShortHashes: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeDBResetRequest$Builder - clearUpdateActor: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeDBResetRequest$Builder - getHoldingIdentityShortHashes: - annotations: [] - default: false - type: public - returnType: java.util.List - getUpdateActor: - annotations: [] - default: false - type: public - returnType: String - hasHoldingIdentityShortHashes: - annotations: [] - default: false - type: public - returnType: boolean - hasUpdateActor: - annotations: [] - default: false - type: public - returnType: boolean - setHoldingIdentityShortHashes: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeDBResetRequest$Builder - params: - value: - annotation: [] - type: java.util.List - setUpdateActor: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeDBResetRequest$Builder - params: - value: - annotation: [] - type: String -net.corda.data.virtualnode.VirtualNodeDBResetResponse: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.virtualnode.VirtualNodeDBResetResponse - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getHoldingIdentityShortHashes: - annotations: [] - default: false - type: public - returnType: java.util.List - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.virtualnode.VirtualNodeDBResetResponse$Builder - params: - other: - annotation: [] - type: net.corda.data.virtualnode.VirtualNodeDBResetResponse - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setHoldingIdentityShortHashes: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.virtualnode.VirtualNodeDBResetResponse$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeDBResetResponse - clearHoldingIdentityShortHashes: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeDBResetResponse$Builder - getHoldingIdentityShortHashes: - annotations: [] - default: false - type: public - returnType: java.util.List - hasHoldingIdentityShortHashes: - annotations: [] - default: false - type: public - returnType: boolean - setHoldingIdentityShortHashes: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeDBResetResponse$Builder - params: - value: - annotation: [] - type: java.util.List -net.corda.data.virtualnode.VirtualNodeInfo: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.virtualnode.VirtualNodeInfo - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getCpiIdentifier: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpiIdentifier - getCryptoDdlConnectionId: - annotations: [] - default: false - type: public - returnType: String - getCryptoDmlConnectionId: - annotations: [] - default: false - type: public - returnType: String - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getExternalMessagingRouteConfig: - annotations: [] - default: false - type: public - returnType: String - getFlowOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationalState - getFlowP2pOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationalState - getFlowStartOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationalState - getHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getHsmConnectionId: - annotations: [] - default: false - type: public - returnType: String - getOperationInProgress: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getUniquenessDdlConnectionId: - annotations: [] - default: false - type: public - returnType: String - getUniquenessDmlConnectionId: - annotations: [] - default: false - type: public - returnType: String - getVaultDbOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationalState - getVaultDdlConnectionId: - annotations: [] - default: false - type: public - returnType: String - getVaultDmlConnectionId: - annotations: [] - default: false - type: public - returnType: String - getVersion: - annotations: [] - default: false - type: public - returnType: int - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder - params: - other: - annotation: [] - type: net.corda.data.virtualnode.VirtualNodeInfo - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setCpiIdentifier: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.packaging.CpiIdentifier - setCryptoDdlConnectionId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setCryptoDmlConnectionId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setExternalMessagingRouteConfig: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setFlowOperationalStatus: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.virtualnode.VirtualNodeOperationalState - setFlowP2pOperationalStatus: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.virtualnode.VirtualNodeOperationalState - setFlowStartOperationalStatus: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.virtualnode.VirtualNodeOperationalState - setHoldingIdentity: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setHsmConnectionId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setOperationInProgress: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setTimestamp: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - setUniquenessDdlConnectionId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setUniquenessDmlConnectionId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setVaultDbOperationalStatus: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.virtualnode.VirtualNodeOperationalState - setVaultDdlConnectionId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setVaultDmlConnectionId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setVersion: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: int - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.virtualnode.VirtualNodeInfo$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeInfo - clearCpiIdentifier: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder - clearCryptoDdlConnectionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder - clearCryptoDmlConnectionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder - clearExternalMessagingRouteConfig: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder - clearFlowOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder - clearFlowP2pOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder - clearFlowStartOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder - clearHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder - clearHsmConnectionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder - clearOperationInProgress: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder - clearTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder - clearUniquenessDdlConnectionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder - clearUniquenessDmlConnectionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder - clearVaultDbOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder - clearVaultDdlConnectionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder - clearVaultDmlConnectionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder - clearVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder - getCpiIdentifier: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpiIdentifier - getCpiIdentifierBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpiIdentifier$Builder - getCryptoDdlConnectionId: - annotations: [] - default: false - type: public - returnType: String - getCryptoDmlConnectionId: - annotations: [] - default: false - type: public - returnType: String - getExternalMessagingRouteConfig: - annotations: [] - default: false - type: public - returnType: String - getFlowOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationalState - getFlowP2pOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationalState - getFlowStartOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationalState - getHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getHoldingIdentityBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - getHsmConnectionId: - annotations: [] - default: false - type: public - returnType: String - getOperationInProgress: - annotations: [] - default: false - type: public - returnType: String - getTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getUniquenessDdlConnectionId: - annotations: [] - default: false - type: public - returnType: String - getUniquenessDmlConnectionId: - annotations: [] - default: false - type: public - returnType: String - getVaultDbOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationalState - getVaultDdlConnectionId: - annotations: [] - default: false - type: public - returnType: String - getVaultDmlConnectionId: - annotations: [] - default: false - type: public - returnType: String - getVersion: - annotations: [] - default: false - type: public - returnType: int - hasCpiIdentifier: - annotations: [] - default: false - type: public - returnType: boolean - hasCpiIdentifierBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasCryptoDdlConnectionId: - annotations: [] - default: false - type: public - returnType: boolean - hasCryptoDmlConnectionId: - annotations: [] - default: false - type: public - returnType: boolean - hasExternalMessagingRouteConfig: - annotations: [] - default: false - type: public - returnType: boolean - hasFlowOperationalStatus: - annotations: [] - default: false - type: public - returnType: boolean - hasFlowP2pOperationalStatus: - annotations: [] - default: false - type: public - returnType: boolean - hasFlowStartOperationalStatus: - annotations: [] - default: false - type: public - returnType: boolean - hasHoldingIdentity: - annotations: [] - default: false - type: public - returnType: boolean - hasHoldingIdentityBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasHsmConnectionId: - annotations: [] - default: false - type: public - returnType: boolean - hasOperationInProgress: - annotations: [] - default: false - type: public - returnType: boolean - hasTimestamp: - annotations: [] - default: false - type: public - returnType: boolean - hasUniquenessDdlConnectionId: - annotations: [] - default: false - type: public - returnType: boolean - hasUniquenessDmlConnectionId: - annotations: [] - default: false - type: public - returnType: boolean - hasVaultDbOperationalStatus: - annotations: [] - default: false - type: public - returnType: boolean - hasVaultDdlConnectionId: - annotations: [] - default: false - type: public - returnType: boolean - hasVaultDmlConnectionId: - annotations: [] - default: false - type: public - returnType: boolean - hasVersion: - annotations: [] - default: false - type: public - returnType: boolean - setCpiIdentifier: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder - params: - value: - annotation: [] - type: net.corda.data.packaging.CpiIdentifier - setCpiIdentifierBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder - params: - value: - annotation: [] - type: net.corda.data.packaging.CpiIdentifier$Builder - setCryptoDdlConnectionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder - params: - value: - annotation: [] - type: String - setCryptoDmlConnectionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder - params: - value: - annotation: [] - type: String - setExternalMessagingRouteConfig: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder - params: - value: - annotation: [] - type: String - setFlowOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder - params: - value: - annotation: [] - type: net.corda.data.virtualnode.VirtualNodeOperationalState - setFlowP2pOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder - params: - value: - annotation: [] - type: net.corda.data.virtualnode.VirtualNodeOperationalState - setFlowStartOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder - params: - value: - annotation: [] - type: net.corda.data.virtualnode.VirtualNodeOperationalState - setHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setHoldingIdentityBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder - setHsmConnectionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder - params: - value: - annotation: [] - type: String - setOperationInProgress: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder - params: - value: - annotation: [] - type: String - setTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder - params: - value: - annotation: [] - type: java.time.Instant - setUniquenessDdlConnectionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder - params: - value: - annotation: [] - type: String - setUniquenessDmlConnectionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder - params: - value: - annotation: [] - type: String - setVaultDbOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder - params: - value: - annotation: [] - type: net.corda.data.virtualnode.VirtualNodeOperationalState - setVaultDdlConnectionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder - params: - value: - annotation: [] - type: String - setVaultDmlConnectionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder - params: - value: - annotation: [] - type: String - setVersion: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeInfo$Builder - params: - value: - annotation: [] - type: int -net.corda.data.virtualnode.VirtualNodeManagementRequest: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.virtualnode.VirtualNodeManagementRequest - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getRequest: - annotations: [] - default: false - type: public - returnType: Object - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.virtualnode.VirtualNodeManagementRequest$Builder - params: - other: - annotation: [] - type: net.corda.data.virtualnode.VirtualNodeManagementRequest - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setRequest: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Object - setTimestamp: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.virtualnode.VirtualNodeManagementRequest$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeManagementRequest - clearRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeManagementRequest$Builder - clearTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeManagementRequest$Builder - getRequest: - annotations: [] - default: false - type: public - returnType: Object - getTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - hasRequest: - annotations: [] - default: false - type: public - returnType: boolean - hasTimestamp: - annotations: [] - default: false - type: public - returnType: boolean - setRequest: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeManagementRequest$Builder - params: - value: - annotation: [] - type: Object - setTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeManagementRequest$Builder - params: - value: - annotation: [] - type: java.time.Instant -net.corda.data.virtualnode.VirtualNodeManagementResponse: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.virtualnode.VirtualNodeManagementResponse - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getResponseType: - annotations: [] - default: false - type: public - returnType: Object - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.virtualnode.VirtualNodeManagementResponse$Builder - params: - other: - annotation: [] - type: net.corda.data.virtualnode.VirtualNodeManagementResponse - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setResponseType: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: Object - setTimestamp: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.virtualnode.VirtualNodeManagementResponse$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeManagementResponse - clearResponseType: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeManagementResponse$Builder - clearTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeManagementResponse$Builder - getResponseType: - annotations: [] - default: false - type: public - returnType: Object - getTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - hasResponseType: - annotations: [] - default: false - type: public - returnType: boolean - hasTimestamp: - annotations: [] - default: false - type: public - returnType: boolean - setResponseType: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeManagementResponse$Builder - params: - value: - annotation: [] - type: Object - setTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeManagementResponse$Builder - params: - value: - annotation: [] - type: java.time.Instant -net.corda.data.virtualnode.VirtualNodeManagementResponseFailure: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.virtualnode.VirtualNodeManagementResponseFailure - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getException: - annotations: [] - default: false - type: public - returnType: net.corda.data.ExceptionEnvelope - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.virtualnode.VirtualNodeManagementResponseFailure$Builder - params: - other: - annotation: [] - type: net.corda.data.virtualnode.VirtualNodeManagementResponseFailure - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setException: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.ExceptionEnvelope - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.virtualnode.VirtualNodeManagementResponseFailure$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeManagementResponseFailure - clearException: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeManagementResponseFailure$Builder - getException: - annotations: [] - default: false - type: public - returnType: net.corda.data.ExceptionEnvelope - getExceptionBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ExceptionEnvelope$Builder - hasException: - annotations: [] - default: false - type: public - returnType: boolean - hasExceptionBuilder: - annotations: [] - default: false - type: public - returnType: boolean - setException: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeManagementResponseFailure$Builder - params: - value: - annotation: [] - type: net.corda.data.ExceptionEnvelope - setExceptionBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeManagementResponseFailure$Builder - params: - value: - annotation: [] - type: net.corda.data.ExceptionEnvelope$Builder -net.corda.data.virtualnode.VirtualNodeOperationStatus: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.virtualnode.VirtualNodeOperationStatus - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getErrors: - annotations: [] - default: false - type: public - returnType: String - getHeartbeatTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getLatestUpdateTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getRequestData: - annotations: [] - default: false - type: public - returnType: String - getRequestId: - annotations: [] - default: false - type: public - returnType: String - getRequestTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getState: - annotations: [] - default: false - type: public - returnType: String - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.virtualnode.VirtualNodeOperationStatus$Builder - params: - other: - annotation: [] - type: net.corda.data.virtualnode.VirtualNodeOperationStatus - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setErrors: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setHeartbeatTimestamp: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - setLatestUpdateTimestamp: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - setRequestData: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setRequestId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setRequestTimestamp: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - setState: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.virtualnode.VirtualNodeOperationStatus$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationStatus - clearErrors: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationStatus$Builder - clearHeartbeatTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationStatus$Builder - clearLatestUpdateTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationStatus$Builder - clearRequestData: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationStatus$Builder - clearRequestId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationStatus$Builder - clearRequestTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationStatus$Builder - clearState: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationStatus$Builder - getErrors: - annotations: [] - default: false - type: public - returnType: String - getHeartbeatTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getLatestUpdateTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getRequestData: - annotations: [] - default: false - type: public - returnType: String - getRequestId: - annotations: [] - default: false - type: public - returnType: String - getRequestTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getState: - annotations: [] - default: false - type: public - returnType: String - hasErrors: - annotations: [] - default: false - type: public - returnType: boolean - hasHeartbeatTimestamp: - annotations: [] - default: false - type: public - returnType: boolean - hasLatestUpdateTimestamp: - annotations: [] - default: false - type: public - returnType: boolean - hasRequestData: - annotations: [] - default: false - type: public - returnType: boolean - hasRequestId: - annotations: [] - default: false - type: public - returnType: boolean - hasRequestTimestamp: - annotations: [] - default: false - type: public - returnType: boolean - hasState: - annotations: [] - default: false - type: public - returnType: boolean - setErrors: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationStatus$Builder - params: - value: - annotation: [] - type: String - setHeartbeatTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationStatus$Builder - params: - value: - annotation: [] - type: java.time.Instant - setLatestUpdateTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationStatus$Builder - params: - value: - annotation: [] - type: java.time.Instant - setRequestData: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationStatus$Builder - params: - value: - annotation: [] - type: String - setRequestId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationStatus$Builder - params: - value: - annotation: [] - type: String - setRequestTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationStatus$Builder - params: - value: - annotation: [] - type: java.time.Instant - setState: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationStatus$Builder - params: - value: - annotation: [] - type: String -net.corda.data.virtualnode.VirtualNodeOperationStatusRequest: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.virtualnode.VirtualNodeOperationStatusRequest - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getRequestId: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.virtualnode.VirtualNodeOperationStatusRequest$Builder - params: - other: - annotation: [] - type: net.corda.data.virtualnode.VirtualNodeOperationStatusRequest - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setRequestId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.virtualnode.VirtualNodeOperationStatusRequest$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationStatusRequest - clearRequestId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationStatusRequest$Builder - getRequestId: - annotations: [] - default: false - type: public - returnType: String - hasRequestId: - annotations: [] - default: false - type: public - returnType: boolean - setRequestId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationStatusRequest$Builder - params: - value: - annotation: [] - type: String -net.corda.data.virtualnode.VirtualNodeOperationStatusResponse: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.virtualnode.VirtualNodeOperationStatusResponse - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getOperationHistory: - annotations: [] - default: false - type: public - returnType: java.util.List - getRequestId: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.virtualnode.VirtualNodeOperationStatusResponse$Builder - params: - other: - annotation: [] - type: net.corda.data.virtualnode.VirtualNodeOperationStatusResponse - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setOperationHistory: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - setRequestId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.virtualnode.VirtualNodeOperationStatusResponse$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationStatusResponse - clearOperationHistory: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationStatusResponse$Builder - clearRequestId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationStatusResponse$Builder - getOperationHistory: - annotations: [] - default: false - type: public - returnType: java.util.List - getRequestId: - annotations: [] - default: false - type: public - returnType: String - hasOperationHistory: - annotations: [] - default: false - type: public - returnType: boolean - hasRequestId: - annotations: [] - default: false - type: public - returnType: boolean - setOperationHistory: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationStatusResponse$Builder - params: - value: - annotation: [] - type: java.util.List - setRequestId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationStatusResponse$Builder - params: - value: - annotation: [] - type: String -net.corda.data.virtualnode.VirtualNodeOperationalState: - annotations: - - AvroGenerated - type: public final class - extends: java.lang.Enum - implements: - - org.apache.avro.generic.GenericEnumSymbol - interface: false - methods: - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - valueOf: - annotations: [] - default: false - type: public static - returnType: net.corda.data.virtualnode.VirtualNodeOperationalState - params: {} - values: - annotations: [] - default: false - type: public static - returnType: "net.corda.data.virtualnode.VirtualNodeOperationalState[]" - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.virtualnode.VirtualNodeStateChangeRequest: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.virtualnode.VirtualNodeStateChangeRequest - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getHoldingIdentityShortHash: - annotations: [] - default: false - type: public - returnType: String - getNewState: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationalState - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getUpdateActor: - annotations: [] - default: false - type: public - returnType: String - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.virtualnode.VirtualNodeStateChangeRequest$Builder - params: - other: - annotation: [] - type: net.corda.data.virtualnode.VirtualNodeStateChangeRequest - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setHoldingIdentityShortHash: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setNewState: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.virtualnode.VirtualNodeOperationalState - setUpdateActor: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.virtualnode.VirtualNodeStateChangeRequest$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeStateChangeRequest - clearHoldingIdentityShortHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeStateChangeRequest$Builder - clearNewState: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeStateChangeRequest$Builder - clearUpdateActor: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeStateChangeRequest$Builder - getHoldingIdentityShortHash: - annotations: [] - default: false - type: public - returnType: String - getNewState: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationalState - getUpdateActor: - annotations: [] - default: false - type: public - returnType: String - hasHoldingIdentityShortHash: - annotations: [] - default: false - type: public - returnType: boolean - hasNewState: - annotations: [] - default: false - type: public - returnType: boolean - hasUpdateActor: - annotations: [] - default: false - type: public - returnType: boolean - setHoldingIdentityShortHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeStateChangeRequest$Builder - params: - value: - annotation: [] - type: String - setNewState: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeStateChangeRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.virtualnode.VirtualNodeOperationalState - setUpdateActor: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeStateChangeRequest$Builder - params: - value: - annotation: [] - type: String -net.corda.data.virtualnode.VirtualNodeStateChangeResponse: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.virtualnode.VirtualNodeStateChangeResponse - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getFlowOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationalState - getFlowP2pOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationalState - getFlowStartOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationalState - getHoldingIdentityShortHash: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getVaultDbOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationalState - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.virtualnode.VirtualNodeStateChangeResponse$Builder - params: - other: - annotation: [] - type: net.corda.data.virtualnode.VirtualNodeStateChangeResponse - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setFlowOperationalStatus: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.virtualnode.VirtualNodeOperationalState - setFlowP2pOperationalStatus: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.virtualnode.VirtualNodeOperationalState - setFlowStartOperationalStatus: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.virtualnode.VirtualNodeOperationalState - setHoldingIdentityShortHash: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setVaultDbOperationalStatus: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.virtualnode.VirtualNodeOperationalState - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.virtualnode.VirtualNodeStateChangeResponse$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeStateChangeResponse - clearFlowOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeStateChangeResponse$Builder - clearFlowP2pOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeStateChangeResponse$Builder - clearFlowStartOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeStateChangeResponse$Builder - clearHoldingIdentityShortHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeStateChangeResponse$Builder - clearVaultDbOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeStateChangeResponse$Builder - getFlowOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationalState - getFlowP2pOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationalState - getFlowStartOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationalState - getHoldingIdentityShortHash: - annotations: [] - default: false - type: public - returnType: String - getVaultDbOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationalState - hasFlowOperationalStatus: - annotations: [] - default: false - type: public - returnType: boolean - hasFlowP2pOperationalStatus: - annotations: [] - default: false - type: public - returnType: boolean - hasFlowStartOperationalStatus: - annotations: [] - default: false - type: public - returnType: boolean - hasHoldingIdentityShortHash: - annotations: [] - default: false - type: public - returnType: boolean - hasVaultDbOperationalStatus: - annotations: [] - default: false - type: public - returnType: boolean - setFlowOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeStateChangeResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.virtualnode.VirtualNodeOperationalState - setFlowP2pOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeStateChangeResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.virtualnode.VirtualNodeOperationalState - setFlowStartOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeStateChangeResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.virtualnode.VirtualNodeOperationalState - setHoldingIdentityShortHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeStateChangeResponse$Builder - params: - value: - annotation: [] - type: String - setVaultDbOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeStateChangeResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.virtualnode.VirtualNodeOperationalState -net.corda.data.virtualnode.VirtualNodeUpgradeRequest: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.virtualnode.VirtualNodeUpgradeRequest - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getActor: - annotations: [] - default: false - type: public - returnType: String - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getCpiFileChecksum: - annotations: [] - default: false - type: public - returnType: String - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getForceUpgrade: - annotations: [] - default: false - type: public - returnType: boolean - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getVirtualNodeShortHash: - annotations: [] - default: false - type: public - returnType: String - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.virtualnode.VirtualNodeUpgradeRequest$Builder - params: - other: - annotation: [] - type: net.corda.data.virtualnode.VirtualNodeUpgradeRequest - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setActor: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setCpiFileChecksum: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setForceUpgrade: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: boolean - setVirtualNodeShortHash: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.virtualnode.VirtualNodeUpgradeRequest$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeUpgradeRequest - clearActor: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeUpgradeRequest$Builder - clearCpiFileChecksum: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeUpgradeRequest$Builder - clearForceUpgrade: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeUpgradeRequest$Builder - clearVirtualNodeShortHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeUpgradeRequest$Builder - getActor: - annotations: [] - default: false - type: public - returnType: String - getCpiFileChecksum: - annotations: [] - default: false - type: public - returnType: String - getForceUpgrade: - annotations: [] - default: false - type: public - returnType: boolean - getVirtualNodeShortHash: - annotations: [] - default: false - type: public - returnType: String - hasActor: - annotations: [] - default: false - type: public - returnType: boolean - hasCpiFileChecksum: - annotations: [] - default: false - type: public - returnType: boolean - hasForceUpgrade: - annotations: [] - default: false - type: public - returnType: boolean - hasVirtualNodeShortHash: - annotations: [] - default: false - type: public - returnType: boolean - setActor: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeUpgradeRequest$Builder - params: - value: - annotation: [] - type: String - setCpiFileChecksum: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeUpgradeRequest$Builder - params: - value: - annotation: [] - type: String - setForceUpgrade: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeUpgradeRequest$Builder - params: - value: - annotation: [] - type: boolean - setVirtualNodeShortHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeUpgradeRequest$Builder - params: - value: - annotation: [] - type: String -net.corda.data.virtualnode.VirtualNodeUpgradeResponse: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getCpiFileChecksum: - annotations: [] - default: false - type: public - returnType: String - getCpiIdentifier: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpiIdentifier - getCryptoDdlConnectionId: - annotations: [] - default: false - type: public - returnType: String - getCryptoDmlConnectionId: - annotations: [] - default: false - type: public - returnType: String - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getFlowOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationalState - getFlowP2pOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationalState - getFlowStartOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationalState - getHoldingIdentifierHash: - annotations: [] - default: false - type: public - returnType: String - getHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getHsmConnectionId: - annotations: [] - default: false - type: public - returnType: String - getMgmGroupId: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getUniquenessDdlConnectionId: - annotations: [] - default: false - type: public - returnType: String - getUniquenessDmlConnectionId: - annotations: [] - default: false - type: public - returnType: String - getVaultDbOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationalState - getVaultDdlConnectionId: - annotations: [] - default: false - type: public - returnType: String - getVaultDmlConnectionId: - annotations: [] - default: false - type: public - returnType: String - getX500Name: - annotations: [] - default: false - type: public - returnType: String - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder - params: - other: - annotation: [] - type: net.corda.data.virtualnode.VirtualNodeUpgradeResponse - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setCpiFileChecksum: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setCpiIdentifier: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.packaging.CpiIdentifier - setCryptoDdlConnectionId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setCryptoDmlConnectionId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setFlowOperationalStatus: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.virtualnode.VirtualNodeOperationalState - setFlowP2pOperationalStatus: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.virtualnode.VirtualNodeOperationalState - setFlowStartOperationalStatus: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.virtualnode.VirtualNodeOperationalState - setHoldingIdentifierHash: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setHoldingIdentity: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setHsmConnectionId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setMgmGroupId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setUniquenessDdlConnectionId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setUniquenessDmlConnectionId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setVaultDbOperationalStatus: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.virtualnode.VirtualNodeOperationalState - setVaultDdlConnectionId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setVaultDmlConnectionId: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setX500Name: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse - clearCpiFileChecksum: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder - clearCpiIdentifier: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder - clearCryptoDdlConnectionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder - clearCryptoDmlConnectionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder - clearFlowOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder - clearFlowP2pOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder - clearFlowStartOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder - clearHoldingIdentifierHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder - clearHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder - clearHsmConnectionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder - clearMgmGroupId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder - clearUniquenessDdlConnectionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder - clearUniquenessDmlConnectionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder - clearVaultDbOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder - clearVaultDdlConnectionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder - clearVaultDmlConnectionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder - clearX500Name: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder - getCpiFileChecksum: - annotations: [] - default: false - type: public - returnType: String - getCpiIdentifier: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpiIdentifier - getCpiIdentifierBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.packaging.CpiIdentifier$Builder - getCryptoDdlConnectionId: - annotations: [] - default: false - type: public - returnType: String - getCryptoDmlConnectionId: - annotations: [] - default: false - type: public - returnType: String - getFlowOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationalState - getFlowP2pOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationalState - getFlowStartOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationalState - getHoldingIdentifierHash: - annotations: [] - default: false - type: public - returnType: String - getHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getHoldingIdentityBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - getHsmConnectionId: - annotations: [] - default: false - type: public - returnType: String - getMgmGroupId: - annotations: [] - default: false - type: public - returnType: String - getUniquenessDdlConnectionId: - annotations: [] - default: false - type: public - returnType: String - getUniquenessDmlConnectionId: - annotations: [] - default: false - type: public - returnType: String - getVaultDbOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeOperationalState - getVaultDdlConnectionId: - annotations: [] - default: false - type: public - returnType: String - getVaultDmlConnectionId: - annotations: [] - default: false - type: public - returnType: String - getX500Name: - annotations: [] - default: false - type: public - returnType: String - hasCpiFileChecksum: - annotations: [] - default: false - type: public - returnType: boolean - hasCpiIdentifier: - annotations: [] - default: false - type: public - returnType: boolean - hasCpiIdentifierBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasCryptoDdlConnectionId: - annotations: [] - default: false - type: public - returnType: boolean - hasCryptoDmlConnectionId: - annotations: [] - default: false - type: public - returnType: boolean - hasFlowOperationalStatus: - annotations: [] - default: false - type: public - returnType: boolean - hasFlowP2pOperationalStatus: - annotations: [] - default: false - type: public - returnType: boolean - hasFlowStartOperationalStatus: - annotations: [] - default: false - type: public - returnType: boolean - hasHoldingIdentifierHash: - annotations: [] - default: false - type: public - returnType: boolean - hasHoldingIdentity: - annotations: [] - default: false - type: public - returnType: boolean - hasHoldingIdentityBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasHsmConnectionId: - annotations: [] - default: false - type: public - returnType: boolean - hasMgmGroupId: - annotations: [] - default: false - type: public - returnType: boolean - hasUniquenessDdlConnectionId: - annotations: [] - default: false - type: public - returnType: boolean - hasUniquenessDmlConnectionId: - annotations: [] - default: false - type: public - returnType: boolean - hasVaultDbOperationalStatus: - annotations: [] - default: false - type: public - returnType: boolean - hasVaultDdlConnectionId: - annotations: [] - default: false - type: public - returnType: boolean - hasVaultDmlConnectionId: - annotations: [] - default: false - type: public - returnType: boolean - hasX500Name: - annotations: [] - default: false - type: public - returnType: boolean - setCpiFileChecksum: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder - params: - value: - annotation: [] - type: String - setCpiIdentifier: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.packaging.CpiIdentifier - setCpiIdentifierBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.packaging.CpiIdentifier$Builder - setCryptoDdlConnectionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder - params: - value: - annotation: [] - type: String - setCryptoDmlConnectionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder - params: - value: - annotation: [] - type: String - setFlowOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.virtualnode.VirtualNodeOperationalState - setFlowP2pOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.virtualnode.VirtualNodeOperationalState - setFlowStartOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.virtualnode.VirtualNodeOperationalState - setHoldingIdentifierHash: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder - params: - value: - annotation: [] - type: String - setHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setHoldingIdentityBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder - setHsmConnectionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder - params: - value: - annotation: [] - type: String - setMgmGroupId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder - params: - value: - annotation: [] - type: String - setUniquenessDdlConnectionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder - params: - value: - annotation: [] - type: String - setUniquenessDmlConnectionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder - params: - value: - annotation: [] - type: String - setVaultDbOperationalStatus: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.virtualnode.VirtualNodeOperationalState - setVaultDdlConnectionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder - params: - value: - annotation: [] - type: String - setVaultDmlConnectionId: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder - params: - value: - annotation: [] - type: String - setX500Name: - annotations: [] - default: false - type: public - returnType: net.corda.data.virtualnode.VirtualNodeUpgradeResponse$Builder - params: - value: - annotation: [] - type: String -net.corda.ledger.utxo.verification.CordaPackageSummary: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.ledger.utxo.verification.CordaPackageSummary - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getFileChecksum: - annotations: [] - default: false - type: public - returnType: String - getName: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSignerSummaryHash: - annotations: [] - default: false - type: public - returnType: String - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getVersion: - annotations: [] - default: false - type: public - returnType: String - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.ledger.utxo.verification.CordaPackageSummary$Builder - params: - other: - annotation: [] - type: net.corda.ledger.utxo.verification.CordaPackageSummary - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setFileChecksum: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setName: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setSignerSummaryHash: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - setVersion: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: String - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.ledger.utxo.verification.CordaPackageSummary$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.ledger.utxo.verification.CordaPackageSummary - clearFileChecksum: - annotations: [] - default: false - type: public - returnType: net.corda.ledger.utxo.verification.CordaPackageSummary$Builder - clearName: - annotations: [] - default: false - type: public - returnType: net.corda.ledger.utxo.verification.CordaPackageSummary$Builder - clearSignerSummaryHash: - annotations: [] - default: false - type: public - returnType: net.corda.ledger.utxo.verification.CordaPackageSummary$Builder - clearVersion: - annotations: [] - default: false - type: public - returnType: net.corda.ledger.utxo.verification.CordaPackageSummary$Builder - getFileChecksum: - annotations: [] - default: false - type: public - returnType: String - getName: - annotations: [] - default: false - type: public - returnType: String - getSignerSummaryHash: - annotations: [] - default: false - type: public - returnType: String - getVersion: - annotations: [] - default: false - type: public - returnType: String - hasFileChecksum: - annotations: [] - default: false - type: public - returnType: boolean - hasName: - annotations: [] - default: false - type: public - returnType: boolean - hasSignerSummaryHash: - annotations: [] - default: false - type: public - returnType: boolean - hasVersion: - annotations: [] - default: false - type: public - returnType: boolean - setFileChecksum: - annotations: [] - default: false - type: public - returnType: net.corda.ledger.utxo.verification.CordaPackageSummary$Builder - params: - value: - annotation: [] - type: String - setName: - annotations: [] - default: false - type: public - returnType: net.corda.ledger.utxo.verification.CordaPackageSummary$Builder - params: - value: - annotation: [] - type: String - setSignerSummaryHash: - annotations: [] - default: false - type: public - returnType: net.corda.ledger.utxo.verification.CordaPackageSummary$Builder - params: - value: - annotation: [] - type: String - setVersion: - annotations: [] - default: false - type: public - returnType: net.corda.ledger.utxo.verification.CordaPackageSummary$Builder - params: - value: - annotation: [] - type: String -net.corda.ledger.utxo.verification.TransactionVerificationRequest: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.ledger.utxo.verification.TransactionVerificationRequest - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getConversion: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Conversion - params: - field: - annotation: [] - type: int - getCpkMetadata: - annotations: [] - default: false - type: public - returnType: java.util.List - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getFlowExternalEventContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventContext - getHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getTransaction: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.ledger.utxo.verification.TransactionVerificationRequest$Builder - params: - other: - annotation: [] - type: net.corda.ledger.utxo.verification.TransactionVerificationRequest - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setCpkMetadata: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.util.List - setFlowExternalEventContext: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.flow.event.external.ExternalEventContext - setHoldingIdentity: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setTimestamp: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.time.Instant - setTransaction: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: java.nio.ByteBuffer - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.ledger.utxo.verification.TransactionVerificationRequest$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.ledger.utxo.verification.TransactionVerificationRequest - clearCpkMetadata: - annotations: [] - default: false - type: public - returnType: net.corda.ledger.utxo.verification.TransactionVerificationRequest$Builder - clearFlowExternalEventContext: - annotations: [] - default: false - type: public - returnType: net.corda.ledger.utxo.verification.TransactionVerificationRequest$Builder - clearHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.ledger.utxo.verification.TransactionVerificationRequest$Builder - clearTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.ledger.utxo.verification.TransactionVerificationRequest$Builder - clearTransaction: - annotations: [] - default: false - type: public - returnType: net.corda.ledger.utxo.verification.TransactionVerificationRequest$Builder - getCpkMetadata: - annotations: [] - default: false - type: public - returnType: java.util.List - getFlowExternalEventContext: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventContext - getFlowExternalEventContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.flow.event.external.ExternalEventContext$Builder - getHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity - getHoldingIdentityBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.identity.HoldingIdentity$Builder - getTimestamp: - annotations: [] - default: false - type: public - returnType: java.time.Instant - getTransaction: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - hasCpkMetadata: - annotations: [] - default: false - type: public - returnType: boolean - hasFlowExternalEventContext: - annotations: [] - default: false - type: public - returnType: boolean - hasFlowExternalEventContextBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasHoldingIdentity: - annotations: [] - default: false - type: public - returnType: boolean - hasHoldingIdentityBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasTimestamp: - annotations: [] - default: false - type: public - returnType: boolean - hasTransaction: - annotations: [] - default: false - type: public - returnType: boolean - setCpkMetadata: - annotations: [] - default: false - type: public - returnType: net.corda.ledger.utxo.verification.TransactionVerificationRequest$Builder - params: - value: - annotation: [] - type: java.util.List - setFlowExternalEventContext: - annotations: [] - default: false - type: public - returnType: net.corda.ledger.utxo.verification.TransactionVerificationRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.event.external.ExternalEventContext - setFlowExternalEventContextBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.ledger.utxo.verification.TransactionVerificationRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.flow.event.external.ExternalEventContext$Builder - setHoldingIdentity: - annotations: [] - default: false - type: public - returnType: net.corda.ledger.utxo.verification.TransactionVerificationRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity - setHoldingIdentityBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.ledger.utxo.verification.TransactionVerificationRequest$Builder - params: - value: - annotation: [] - type: net.corda.data.identity.HoldingIdentity$Builder - setTimestamp: - annotations: [] - default: false - type: public - returnType: net.corda.ledger.utxo.verification.TransactionVerificationRequest$Builder - params: - value: - annotation: [] - type: java.time.Instant - setTransaction: - annotations: [] - default: false - type: public - returnType: net.corda.ledger.utxo.verification.TransactionVerificationRequest$Builder - params: - value: - annotation: [] - type: java.nio.ByteBuffer -net.corda.ledger.utxo.verification.TransactionVerificationResponse: - annotations: - - AvroGenerated - type: public class - extends: org.apache.avro.specific.SpecificRecordBase - implements: - - org.apache.avro.specific.SpecificRecord - interface: false - methods: - createDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - params: - resolver: - annotation: [] - type: org.apache.avro.message.SchemaStore - customDecode: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: org.apache.avro.io.ResolvingDecoder - customEncode: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: org.apache.avro.io.Encoder - fromByteBuffer: - annotations: [] - default: false - type: public static - returnType: net.corda.ledger.utxo.verification.TransactionVerificationResponse - params: - b: - annotation: [] - type: java.nio.ByteBuffer - get: - annotations: [] - default: false - type: public - returnType: Object - params: - field$: - annotation: [] - type: int - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getDecoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageDecoder - getEncoder: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.message.BinaryMessageEncoder - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - getSpecificData: - annotations: [] - default: false - type: public - returnType: org.apache.avro.specific.SpecificData - getVerificationFailure: - annotations: [] - default: false - type: public - returnType: net.corda.data.ExceptionEnvelope - getVerificationStatus: - annotations: [] - default: false - type: public - returnType: net.corda.ledger.utxo.verification.TransactionVerificationStatus - hasCustomCoders: - annotations: [] - default: false - type: protected - returnType: boolean - newBuilder: - annotations: [] - default: false - type: public static - returnType: net.corda.ledger.utxo.verification.TransactionVerificationResponse$Builder - params: - other: - annotation: [] - type: net.corda.ledger.utxo.verification.TransactionVerificationResponse - put: - annotations: [] - default: false - type: public - returnType: void - params: - field$: - annotation: [] - type: int - value$: - annotation: [] - type: Object - readExternal: - annotations: [] - default: false - type: public - returnType: void - params: - in: - annotation: [] - type: java.io.ObjectInput - setVerificationFailure: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.data.ExceptionEnvelope - setVerificationStatus: - annotations: [] - default: false - type: public - returnType: void - params: - value: - annotation: [] - type: net.corda.ledger.utxo.verification.TransactionVerificationStatus - toByteBuffer: - annotations: [] - default: false - type: public - returnType: java.nio.ByteBuffer - writeExternal: - annotations: [] - default: false - type: public - returnType: void - params: - out: - annotation: [] - type: java.io.ObjectOutput - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema -net.corda.ledger.utxo.verification.TransactionVerificationResponse$Builder: - annotations: - - AvroGenerated - type: public static class - extends: org.apache.avro.specific.SpecificRecordBuilderBase - implements: - - org.apache.avro.data.RecordBuilder - interface: false - methods: - build: - annotations: [] - default: false - type: public - returnType: net.corda.ledger.utxo.verification.TransactionVerificationResponse - clearVerificationFailure: - annotations: [] - default: false - type: public - returnType: net.corda.ledger.utxo.verification.TransactionVerificationResponse$Builder - clearVerificationStatus: - annotations: [] - default: false - type: public - returnType: net.corda.ledger.utxo.verification.TransactionVerificationResponse$Builder - getVerificationFailure: - annotations: [] - default: false - type: public - returnType: net.corda.data.ExceptionEnvelope - getVerificationFailureBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.data.ExceptionEnvelope$Builder - getVerificationStatus: - annotations: [] - default: false - type: public - returnType: net.corda.ledger.utxo.verification.TransactionVerificationStatus - hasVerificationFailure: - annotations: [] - default: false - type: public - returnType: boolean - hasVerificationFailureBuilder: - annotations: [] - default: false - type: public - returnType: boolean - hasVerificationStatus: - annotations: [] - default: false - type: public - returnType: boolean - setVerificationFailure: - annotations: [] - default: false - type: public - returnType: net.corda.ledger.utxo.verification.TransactionVerificationResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.ExceptionEnvelope - setVerificationFailureBuilder: - annotations: [] - default: false - type: public - returnType: net.corda.ledger.utxo.verification.TransactionVerificationResponse$Builder - params: - value: - annotation: [] - type: net.corda.data.ExceptionEnvelope$Builder - setVerificationStatus: - annotations: [] - default: false - type: public - returnType: net.corda.ledger.utxo.verification.TransactionVerificationResponse$Builder - params: - value: - annotation: [] - type: net.corda.ledger.utxo.verification.TransactionVerificationStatus -net.corda.ledger.utxo.verification.TransactionVerificationStatus: - annotations: - - AvroGenerated - type: public final class - extends: java.lang.Enum - implements: - - org.apache.avro.generic.GenericEnumSymbol - interface: false - methods: - getClassSchema: - annotations: [] - default: false - type: public static - returnType: org.apache.avro.Schema - getSchema: - annotations: [] - default: false - type: public - returnType: org.apache.avro.Schema - valueOf: - annotations: [] - default: false - type: public static - returnType: net.corda.ledger.utxo.verification.TransactionVerificationStatus - params: {} - values: - annotations: [] - default: false - type: public static - returnType: "net.corda.ledger.utxo.verification.TransactionVerificationStatus[]" - fields: - SCHEMA$: - annotation: [] - type: public static final org.apache.avro.Schema diff --git a/data/config-schema/build.gradle b/data/config-schema/build.gradle index 397ea8cfed..a6daaed59c 100644 --- a/data/config-schema/build.gradle +++ b/data/config-schema/build.gradle @@ -2,7 +2,6 @@ plugins { id 'corda-api.common-library' id 'corda.common-publishing' id 'corda.java-only' - id 'corda.api-scanner' } description 'Schema Definition for Configuration' diff --git a/data/config-schema/src/api/corda-config-schema-5.1.0.yaml b/data/config-schema/src/api/corda-config-schema-5.1.0.yaml deleted file mode 100644 index 098a9a4fb5..0000000000 --- a/data/config-schema/src/api/corda-config-schema-5.1.0.yaml +++ /dev/null @@ -1,1062 +0,0 @@ -net.corda.schema.common.provider.SchemaProvider: - annotations: [] - type: public interface - extends: [] - interface: true - methods: - getSchema: - annotations: - - NotNull - default: false - type: public abstract - returnType: java.io.InputStream - params: - key: - annotation: - - NotNull - type: String - version: - annotation: - - NotNull - type: net.corda.v5.base.versioning.Version - getSchemaFile: - annotations: - - NotNull - default: false - type: public abstract - returnType: java.io.InputStream - params: - fileName: - annotation: - - NotNull - type: String -net.corda.schema.common.provider.impl.AbstractSchemaProvider: - annotations: [] - type: public abstract class - extends: null - implements: - - net.corda.schema.common.provider.SchemaProvider - interface: false - methods: - getResourceInputStream: - annotations: - - NotNull - default: false - type: protected abstract - returnType: java.io.InputStream - params: - resource: - annotation: - - NotNull - type: String - getResourceRoot: - annotations: [] - default: false - type: public abstract - returnType: String - getSchema: - annotations: - - NotNull - default: false - type: public - returnType: java.io.InputStream - params: - key: - annotation: - - NotNull - type: String - version: - annotation: - - NotNull - type: net.corda.v5.base.versioning.Version - getSchemaFile: - annotations: - - NotNull - default: false - type: public - returnType: java.io.InputStream - params: - fileName: - annotation: - - NotNull - type: String - fields: - logger: - annotation: [] - type: protected final org.slf4j.Logger -net.corda.schema.configuration.BootConfig: - annotations: [] - type: public final class - extends: null - implements: [] - interface: false - methods: {} - fields: - INSTANCE_ID: - annotation: [] - type: public static final String - initialised value: instanceId - TOPIC_PREFIX: - annotation: [] - type: public static final String - initialised value: topicPrefix - BOOT_MAX_ALLOWED_MSG_SIZE: - annotation: [] - type: public static final String - initialised value: maxAllowedMessageSize - BOOT_KAFKA: - annotation: [] - type: public static final String - initialised value: kafka - BOOT_KAFKA_COMMON: - annotation: [] - type: public static final String - initialised value: kafka.common - BOOT_CRYPTO: - annotation: [] - type: public static final String - initialised value: crypto - BOOT_DB: - annotation: [] - type: public static final String - initialised value: db - BOOT_JDBC_URL: - annotation: [] - type: public static final String - initialised value: db.database.jdbc.url - BOOT_JDBC_USER: - annotation: [] - type: public static final String - initialised value: db.database.user - BOOT_JDBC_PASS: - annotation: [] - type: public static final String - initialised value: db.database.pass - BOOT_DIR: - annotation: [] - type: public static final String - initialised value: dir - BOOT_WORKSPACE_DIR: - annotation: [] - type: public static final String - initialised value: dir.workspace - BOOT_TMP_DIR: - annotation: [] - type: public static final String - initialised value: dir.tmp - BOOT_REST: - annotation: [] - type: public static final String - initialised value: rest - BOOT_REST_TLS_KEYSTORE_FILE_PATH: - annotation: [] - type: public static final String - initialised value: rest.tls.keystore.path - BOOT_REST_TLS_KEYSTORE_PASSWORD: - annotation: [] - type: public static final String - initialised value: rest.tls.keystore.password - BOOT_REST_TLS_CRT_PATH: - annotation: [] - type: public static final String - initialised value: rest.tls.crt.path - BOOT_REST_TLS_KEY_PATH: - annotation: [] - type: public static final String - initialised value: rest.tls.key.path - BOOT_REST_TLS_CA_CRT_PATH: - annotation: [] - type: public static final String - initialised value: rest.tls.ca.crt.path - BOOT_SECRETS: - annotation: [] - type: public static final String - initialised value: secrets - BOOT_STATE_MANAGER: - annotation: [] - type: public static final String - initialised value: stateManager - BOOT_STATE_MANAGER_TYPE: - annotation: [] - type: public static final String - initialised value: stateManager.type - BOOT_STATE_MANAGER_DB_USER: - annotation: [] - type: public static final String - initialised value: stateManager.database.user - BOOT_STATE_MANAGER_DB_PASS: - annotation: [] - type: public static final String - initialised value: stateManager.database.pass - BOOT_STATE_MANAGER_JDBC_URL: - annotation: [] - type: public static final String - initialised value: stateManager.database.jdbc.url -net.corda.schema.configuration.ConfigDefaults: - annotations: [] - type: public final class - extends: null - implements: [] - interface: false - methods: {} - fields: - WORKSPACE_DIR: - annotation: [] - type: public static final String - TEMP_DIR: - annotation: [] - type: public static final String -net.corda.schema.configuration.ConfigKeys: - annotations: [] - type: public final class - extends: null - implements: [] - interface: false - methods: {} - fields: - BOOT_CONFIG: - annotation: [] - type: public static final String - initialised value: corda.boot - CRYPTO_CONFIG: - annotation: [] - type: public static final String - initialised value: corda.crypto - DB_CONFIG: - annotation: [] - type: public static final String - initialised value: corda.db - FLOW_CONFIG: - annotation: [] - type: public static final String - initialised value: corda.flow - MESSAGING_CONFIG: - annotation: [] - type: public static final String - initialised value: corda.messaging - EXTERNAL_MESSAGING_CONFIG: - annotation: [] - type: public static final String - initialised value: corda.externalMessaging - UTXO_LEDGER_CONFIG: - annotation: [] - type: public static final String - initialised value: corda.ledger.utxo - P2P_LINK_MANAGER_CONFIG: - annotation: [] - type: public static final String - initialised value: corda.p2p.linkManager - P2P_GATEWAY_CONFIG: - annotation: [] - type: public static final String - initialised value: corda.p2p.gateway - REST_CONFIG: - annotation: [] - type: public static final String - initialised value: corda.rest - SECRETS_CONFIG: - annotation: [] - type: public static final String - initialised value: corda.secrets - SANDBOX_CONFIG: - annotation: [] - type: public static final String - initialised value: corda.sandbox - RECONCILIATION_CONFIG: - annotation: [] - type: public static final String - initialised value: corda.reconciliation - MEMBERSHIP_CONFIG: - annotation: [] - type: public static final String - initialised value: corda.membership - SECURITY_CONFIG: - annotation: [] - type: public static final String - initialised value: corda.security - VNODE_DATASOURCE_CONFIG: - annotation: [] - type: public static final String - initialised value: corda.vnode.datasource - REST_ADDRESS: - annotation: [] - type: public static final String - initialised value: address - REST_CONTEXT_DESCRIPTION: - annotation: [] - type: public static final String - initialised value: context.description - REST_CONTEXT_TITLE: - annotation: [] - type: public static final String - initialised value: context.title - REST_ENDPOINT_TIMEOUT_MILLIS: - annotation: [] - type: public static final String - initialised value: endpoint.timeoutMs - REST_MAX_CONTENT_LENGTH: - annotation: [] - type: public static final String - initialised value: maxContentLength - REST_AZUREAD_CLIENT_ID: - annotation: [] - type: public static final String - initialised value: sso.azureAd.clientId - REST_AZUREAD_CLIENT_SECRET: - annotation: [] - type: public static final String - initialised value: sso.azureAd.clientSecret - REST_AZUREAD_TENANT_ID: - annotation: [] - type: public static final String - initialised value: sso.azureAd.tenantId - REST_WEBSOCKET_CONNECTION_IDLE_TIMEOUT_MS: - annotation: [] - type: public static final String - initialised value: websocket.idleTimeoutMs - SECRETS_TYPE: - annotation: [] - type: public static final String - initialised value: type - SECRETS_PASSPHRASE: - annotation: [] - type: public static final String - initialised value: passphrase - SECRETS_SALT: - annotation: [] - type: public static final String - initialised value: salt - SECRETS_SERVER_ADDRESS: - annotation: [] - type: public static final String - initialised value: serverAddress - SECRETS_SERVER_CREDENTIALS: - annotation: [] - type: public static final String - initialised value: serverCredentials - SECRETS_CREATED_SECRET_PATH: - annotation: [] - type: public static final String - initialised value: createdSecretPath - WORKSPACE_DIR: - annotation: [] - type: public static final String - initialised value: dir.workspace - TEMP_DIR: - annotation: [] - type: public static final String - initialised value: dir.tmp - SECRET_REFRESH_PERIOD: - annotation: [] - type: public static final String - initialised value: refreshPeriod - SECRET_RETRY_BACKOFF: - annotation: [] - type: public static final String - initialised value: retryBackoff - SECRET_KEY: - annotation: [] - type: public static final String - initialised value: configSecret - SECRET_KEY_VAULT_PATH: - annotation: [] - type: public static final String - initialised value: vaultPath - SECRET_KEY_VAULT_KEY: - annotation: [] - type: public static final String - initialised value: vaultKey - SANDBOX_CACHE_SIZE: - annotation: [] - type: public static final String - initialised value: cache.size - SECURITY_POLICY: - annotation: [] - type: public static final String - initialised value: policy -net.corda.schema.configuration.DatabaseConfig: - annotations: [] - type: public final class - extends: null - implements: [] - interface: false - methods: {} - fields: - DB_USER: - annotation: [] - type: public static final String - initialised value: database.user - DB_PASS: - annotation: [] - type: public static final String - initialised value: database.pass - JDBC_DRIVER: - annotation: [] - type: public static final String - initialised value: database.jdbc.driver - JDBC_DRIVER_DIRECTORY: - annotation: [] - type: public static final String - initialised value: database.jdbc.directory - JDBC_URL: - annotation: [] - type: public static final String - initialised value: database.jdbc.url - DB_POOL_MAX_SIZE: - annotation: [] - type: public static final String - initialised value: database.pool.max_size - DB_POOL_MIN_SIZE: - annotation: [] - type: public static final String - initialised value: database.pool.min_size - DB_POOL_IDLE_TIMEOUT_SECONDS: - annotation: [] - type: public static final String - initialised value: database.pool.idleTimeoutSeconds - DB_POOL_MAX_LIFETIME_SECONDS: - annotation: [] - type: public static final String - initialised value: database.pool.maxLifetimeSeconds - DB_POOL_KEEPALIVE_TIME_SECONDS: - annotation: [] - type: public static final String - initialised value: database.pool.keepaliveTimeSeconds - DB_POOL_VALIDATION_TIMEOUT_SECONDS: - annotation: [] - type: public static final String - initialised value: database.pool.validationTimeoutSeconds -net.corda.schema.configuration.ExternalMessagingConfig: - annotations: [] - type: public final class - extends: null - implements: [] - interface: false - methods: {} - fields: - ROUTE_DEFAULTS: - annotation: [] - type: public static final String - initialised value: routeDefaults - EXTERNAL_MESSAGING_RECEIVE_TOPIC_PATTERN: - annotation: [] - type: public static final String - initialised value: routeDefaults.receiveTopicPattern - EXTERNAL_MESSAGING_ACTIVE: - annotation: [] - type: public static final String - initialised value: routeDefaults.active - EXTERNAL_MESSAGING_INTERACTIVE_RESPONSE_TYPE: - annotation: [] - type: public static final String - initialised value: routeDefaults.inactiveResponseType -net.corda.schema.configuration.FlowConfig: - annotations: [] - type: public final class - extends: null - implements: [] - interface: false - methods: {} - fields: - EXTERNAL_EVENT_MESSAGE_RESEND_WINDOW: - annotation: [] - type: public static final String - initialised value: event.messageResendWindow - EXTERNAL_EVENT_MAX_RETRIES: - annotation: [] - type: public static final String - initialised value: event.maxRetries - SESSION_TIMEOUT_WINDOW: - annotation: [] - type: public static final String - initialised value: session.timeout - SESSION_P2P_TTL: - annotation: [] - type: public static final String - initialised value: session.p2pTTL - SESSION_FLOW_CLEANUP_TIME: - annotation: [] - type: public static final String - initialised value: session.cleanupTime - PROCESSING_MAX_RETRY_ATTEMPTS: - annotation: [] - type: public static final String - initialised value: processing.maxRetryAttempts - PROCESSING_MAX_RETRY_WINDOW_DURATION: - annotation: [] - type: public static final String - initialised value: processing.maxRetryWindowDuration - PROCESSING_MAX_RETRY_DELAY: - annotation: [] - type: public static final String - initialised value: processing.maxRetryDelay - PROCESSING_MAX_FLOW_SLEEP_DURATION: - annotation: [] - type: public static final String - initialised value: processing.maxFlowSleepDuration - PROCESSING_FLOW_CLEANUP_TIME: - annotation: [] - type: public static final String - initialised value: processing.cleanupTime -net.corda.schema.configuration.LedgerConfig: - annotations: [] - type: public final class - extends: null - implements: [] - interface: false - methods: {} - fields: - UTXO_TOKEN_MIN_DELAY_BEFORE_NEXT_FULL_SYNC: - annotation: [] - type: public static final String - initialised value: tokens.minDelayBeforeNextFullSync - UTXO_TOKEN_MIN_DELAY_BEFORE_NEXT_PERIODIC_SYNC: - annotation: [] - type: public static final String - initialised value: tokens.minDelayBeforeNextPeriodicSync - UTXO_TOKEN_FULL_SYNC_BLOCK_SIZE: - annotation: [] - type: public static final String - initialised value: tokens.fullSyncBlockSize - UTXO_TOKEN_PERIODIC_CHECK_BLOCK_SIZE: - annotation: [] - type: public static final String - initialised value: tokens.periodCheckBlockSize - UTXO_TOKEN_SEND_WAKEUP_MAX_RETRY_ATTEMPTS: - annotation: [] - type: public static final String - initialised value: tokens.sendWakeUpMaxRetryAttempts - UTXO_TOKEN_SEND_WAKEUP_MAX_RETRY_DELAY: - annotation: [] - type: public static final String - initialised value: tokens.sendWakeUpMaxRetryDelay - UTXO_TOKEN_CACHED_TOKEN_PAGE_SIZE: - annotation: [] - type: public static final String - initialised value: tokens.cachedTokenPageSize - UTXO_TOKEN_CLAIM_TIMEOUT_SECONDS: - annotation: [] - type: public static final String - initialised value: tokens.claimTimeoutSeconds - UTXO_BACKCHAIN_BATCH_SIZE: - annotation: [] - type: public static final String - initialised value: backchain.batchSize -net.corda.schema.configuration.MembershipConfig: - annotations: [] - type: public final class - extends: null - implements: [] - interface: false - methods: {} - fields: - MAX_DURATION_BETWEEN_SYNC_REQUESTS_MINUTES: - annotation: [] - type: public static final String - initialised value: maxDurationBetweenSyncRequestsMinutes - MAX_DURATION_BETWEEN_EXPIRED_REGISTRATION_REQUESTS_POLLS: - annotation: [] - type: public static final String - initialised value: frequencyOfExpirationPoll - EXPIRATION_DATE_FOR_REGISTRATION_REQUESTS: - annotation: [] - type: public static final String - initialised value: expirationTimeFrame -net.corda.schema.configuration.MembershipConfig$TtlsConfig: - annotations: [] - type: public static final class - extends: null - implements: [] - interface: false - methods: {} - fields: - TTLS: - annotation: [] - type: public static final String - initialised value: TTLs - MEMBERS_PACKAGE_UPDATE: - annotation: [] - type: public static final String - initialised value: membersPackageUpdate - DECLINE_REGISTRATION: - annotation: [] - type: public static final String - initialised value: declineRegistration - UPDATE_TO_PENDING_AUTO_APPROVAL: - annotation: [] - type: public static final String - initialised value: updateToPendingAutoApproval - VERIFY_MEMBER_REQUEST: - annotation: [] - type: public static final String - initialised value: verifyMemberRequest - WAIT_FOR_MGM_SESSION: - annotation: [] - type: public static final String - initialised value: waitForMgmSession -net.corda.schema.configuration.MessagingConfig: - annotations: [] - type: public final class - extends: null - implements: [] - interface: false - methods: {} - fields: - MAX_ALLOWED_MSG_SIZE: - annotation: [] - type: public static final String - initialised value: maxAllowedMessageSize -net.corda.schema.configuration.MessagingConfig$Bus: - annotations: [] - type: public static final class - extends: null - implements: [] - interface: false - methods: {} - fields: - BUS: - annotation: [] - type: public static final String - initialised value: bus - BUS_TYPE: - annotation: [] - type: public static final String - initialised value: bus.busType - AUTO_OFFSET_RESET: - annotation: [] - type: public static final String - initialised value: auto.offset.reset - KAFKA_PROPERTIES: - annotation: [] - type: public static final String - initialised value: bus.kafkaProperties - KAFKA_PROPERTIES_COMMON: - annotation: [] - type: public static final String - initialised value: bus.kafkaProperties.common - KAFKA_BOOTSTRAP_SERVERS: - annotation: [] - type: public static final String - initialised value: bus.kafkaProperties.common.bootstrap.servers - KAFKA_PROPERTIES_CONSUMER: - annotation: [] - type: public static final String - initialised value: bus.kafkaProperties.consumer - KAFKA_CONSUMER_MAX_POLL_INTERVAL: - annotation: [] - type: public static final String - initialised value: bus.kafkaProperties.consumer.max.poll.interval.ms - KAFKA_PROPERTIES_PRODUCER: - annotation: [] - type: public static final String - initialised value: bus.kafkaProperties.producer - KAFKA_PRODUCER_CLIENT_ID: - annotation: [] - type: public static final String - initialised value: bus.kafkaProperties.producer.client.id - JDBC_URL: - annotation: [] - type: public static final String - initialised value: jdbcUrl - JDBC_USER: - annotation: [] - type: public static final String - initialised value: user - JDBC_PASS: - annotation: [] - type: public static final String - initialised value: pass - DB_MAX_POLL_RECORDS: - annotation: [] - type: public static final String - initialised value: maxPollRecords - DB_PROPERTIES: - annotation: [] - type: public static final String - initialised value: bus.dbProperties - DB_JDBC_URL: - annotation: [] - type: public static final String - initialised value: bus.dbProperties.jdbcUrl - DB_USER: - annotation: [] - type: public static final String - initialised value: bus.dbProperties.user - DB_PASS: - annotation: [] - type: public static final String - initialised value: bus.dbProperties.pass - DB_PROPERTIES_CONSUMER: - annotation: [] - type: public static final String - initialised value: bus.dbProperties.consumer - DB_CONSUMER_MAX_POLL_RECORDS: - annotation: [] - type: public static final String - initialised value: bus.dbProperties.consumer.maxPollRecords - DB_CONSUMER_AUTO_OFFSET_RESET: - annotation: [] - type: public static final String - initialised value: bus.dbProperties.consumer.auto.offset.reset -net.corda.schema.configuration.MessagingConfig$Publisher: - annotations: [] - type: public static final class - extends: null - implements: [] - interface: false - methods: {} - fields: - PUBLISHER: - annotation: [] - type: public static final String - initialised value: publisher - CLOSE_TIMEOUT: - annotation: [] - type: public static final String - initialised value: publisher.closeTimeout - TRANSACTIONAL: - annotation: [] - type: public static final String - initialised value: publisher.transactional -net.corda.schema.configuration.MessagingConfig$StateManager: - annotations: [] - type: public static final class - extends: null - implements: [] - interface: false - methods: {} - fields: - STATE_MANAGER: - annotation: [] - type: public static final String - initialised value: stateManager - TYPE: - annotation: [] - type: public static final String - initialised value: stateManager.type - DB_PROPERTIES: - annotation: [] - type: public static final String - initialised value: stateManager.database - JDBC_USER: - annotation: [] - type: public static final String - initialised value: stateManager.database.user - JDBC_PASS: - annotation: [] - type: public static final String - initialised value: stateManager.database.pass - JDBC_URL: - annotation: [] - type: public static final String - initialised value: stateManager.database.jdbc.url - JDBC_DRIVER: - annotation: [] - type: public static final String - initialised value: stateManager.database.jdbc.driver - JDBC_DRIVER_DIRECTORY: - annotation: [] - type: public static final String - initialised value: stateManager.database.jdbc.directory - JDBC_PERSISTENCE_UNIT_NAME: - annotation: [] - type: public static final String - initialised value: stateManager.database.jdbc.persistenceUnitName - JDBC_POOL_MAX_SIZE: - annotation: [] - type: public static final String - initialised value: stateManager.database.pool.maxSize - JDBC_POOL_MIN_SIZE: - annotation: [] - type: public static final String - initialised value: stateManager.database.pool.minSize - JDBC_POOL_IDLE_TIMEOUT_SECONDS: - annotation: [] - type: public static final String - initialised value: stateManager.database.pool.idleTimeoutSeconds - JDBC_POOL_MAX_LIFETIME_SECONDS: - annotation: [] - type: public static final String - initialised value: stateManager.database.pool.maxLifetimeSeconds - JDBC_POOL_KEEP_ALIVE_TIME_SECONDS: - annotation: [] - type: public static final String - initialised value: stateManager.database.pool.keepAliveTimeSeconds - JDBC_POOL_VALIDATION_TIMEOUT_SECONDS: - annotation: [] - type: public static final String - initialised value: stateManager.database.pool.validationTimeoutSeconds -net.corda.schema.configuration.MessagingConfig$Subscription: - annotations: [] - type: public static final class - extends: null - implements: [] - interface: false - methods: {} - fields: - SUBSCRIPTION: - annotation: [] - type: public static final String - initialised value: subscription - POLL_TIMEOUT: - annotation: [] - type: public static final String - initialised value: subscription.pollTimeout - THREAD_STOP_TIMEOUT: - annotation: [] - type: public static final String - initialised value: subscription.threadStopTimeout - PROCESSOR_RETRIES: - annotation: [] - type: public static final String - initialised value: subscription.processorRetries - SUBSCRIBE_RETRIES: - annotation: [] - type: public static final String - initialised value: subscription.subscribeRetries - COMMIT_RETRIES: - annotation: [] - type: public static final String - initialised value: subscription.commitRetries - PROCESSOR_TIMEOUT: - annotation: [] - type: public static final String - initialised value: subscription.processorTimeout -net.corda.schema.configuration.ReconciliationConfig: - annotations: [] - type: public final class - extends: null - implements: [] - interface: false - methods: {} - fields: - RECONCILIATION_PERMISSION_SUMMARY_INTERVAL_MS: - annotation: [] - type: public static final String - initialised value: permissionSummaryIntervalMs - RECONCILIATION_CPK_WRITE_INTERVAL_MS: - annotation: [] - type: public static final String - initialised value: cpkWriteIntervalMs - RECONCILIATION_CPI_INFO_INTERVAL_MS: - annotation: [] - type: public static final String - initialised value: cpiInfoIntervalMs - RECONCILIATION_CONFIG_INTERVAL_MS: - annotation: [] - type: public static final String - initialised value: configIntervalMs - RECONCILIATION_VNODE_INFO_INTERVAL_MS: - annotation: [] - type: public static final String - initialised value: vnodeInfoIntervalMs - RECONCILIATION_GROUP_PARAMS_INTERVAL_MS: - annotation: [] - type: public static final String - initialised value: groupParamsIntervalMs - RECONCILIATION_MTLS_MGM_ALLOWED_LIST_INTERVAL_MS: - annotation: [] - type: public static final String - initialised value: mtlsMgmAllowedCertificateSubjectsIntervalMs - RECONCILIATION_MEMBER_INFO_INTERVAL_MS: - annotation: [] - type: public static final String - initialised value: memberInfoIntervalMs -net.corda.schema.configuration.VirtualNodeDatasourceConfig: - annotations: [] - type: public class - extends: null - implements: [] - interface: false - methods: {} - fields: - VNODE_DDL_POOL_CONFIG: - annotation: [] - type: public static final String - initialised value: pool.ddl - VNODE_DML_POOL_CONFIG: - annotation: [] - type: public static final String - initialised value: pool.dml - VNODE_POOL_MAX_SIZE: - annotation: [] - type: public static final String - initialised value: max_size - VNODE_POOL_MIN_SIZE: - annotation: [] - type: public static final String - initialised value: min_size - VNODE_POOL_IDLE_TIMEOUT_SECONDS: - annotation: [] - type: public static final String - initialised value: idleTimeoutSeconds - VNODE_POOL_MAX_LIFETIME_SECONDS: - annotation: [] - type: public static final String - initialised value: maxLifetimeSeconds - VNODE_POOL_KEEPALIVE_TIME_SECONDS: - annotation: [] - type: public static final String - initialised value: keepaliveTimeSeconds - VNODE_VALIDATION_TIMEOUT_SECONDS: - annotation: [] - type: public static final String - initialised value: validationTimeoutSeconds -net.corda.schema.configuration.provider.ConfigSchemaException: - annotations: [] - type: public final class - extends: net.corda.v5.base.exceptions.CordaRuntimeException - implements: [] - interface: false - methods: {} -net.corda.schema.configuration.provider.SchemaProviderConfigFactory: - annotations: [] - type: public final class - extends: null - implements: [] - interface: false - methods: - getSchemaProvider: - annotations: - - NotNull - default: false - type: public static - returnType: net.corda.schema.common.provider.SchemaProvider -net.corda.schema.configuration.provider.impl.SchemaProviderConfigImpl: - annotations: [] - type: public final class - extends: net.corda.schema.common.provider.SchemaProvider - implements: [] - interface: false - methods: - getResourceInputStream: - annotations: - - NotNull - default: false - type: protected - returnType: java.io.InputStream - params: - resource: - annotation: - - NotNull - type: String - getResourceRoot: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: - - NotNull - default: false - type: public - returnType: java.io.InputStream - params: - key: - annotation: - - NotNull - type: String - version: - annotation: - - NotNull - type: net.corda.v5.base.versioning.Version - getSchemaFile: - annotations: - - NotNull - default: false - type: public - returnType: java.io.InputStream - params: - fileName: - annotation: - - NotNull - type: String - fields: - logger: - annotation: [] - type: protected final org.slf4j.Logger -net.corda.schema.cordapp.configuration.ConfigKeys: - annotations: [] - type: public final class - extends: null - implements: [] - interface: false - methods: {} - fields: - EXTERNAL_MESSAGING_CONFIG: - annotation: [] - type: public static final String - initialised value: corda.external.messaging -net.corda.schema.cordapp.configuration.provider.CordappConfigSchemaException: - annotations: [] - type: public final class - extends: net.corda.v5.base.exceptions.CordaRuntimeException - implements: [] - interface: false - methods: {} -net.corda.schema.cordapp.configuration.provider.SchemaProviderCordappConfigFactory: - annotations: [] - type: public final class - extends: null - implements: [] - interface: false - methods: - getSchemaProvider: - annotations: - - NotNull - default: false - type: public static - returnType: net.corda.schema.common.provider.SchemaProvider -net.corda.schema.cordapp.configuration.provider.impl.SchemaProviderCordappConfigImpl: - annotations: [] - type: public final class - extends: net.corda.schema.common.provider.SchemaProvider - implements: [] - interface: false - methods: - getResourceInputStream: - annotations: - - NotNull - default: false - type: protected - returnType: java.io.InputStream - params: - resource: - annotation: - - NotNull - type: String - getResourceRoot: - annotations: [] - default: false - type: public - returnType: String - getSchema: - annotations: - - NotNull - default: false - type: public - returnType: java.io.InputStream - params: - key: - annotation: - - NotNull - type: String - version: - annotation: - - NotNull - type: net.corda.v5.base.versioning.Version - getSchemaFile: - annotations: - - NotNull - default: false - type: public - returnType: java.io.InputStream - params: - fileName: - annotation: - - NotNull - type: String - fields: - logger: - annotation: [] - type: protected final org.slf4j.Logger diff --git a/data/db-schema/build.gradle b/data/db-schema/build.gradle index 160ce349f6..6efccc3dab 100644 --- a/data/db-schema/build.gradle +++ b/data/db-schema/build.gradle @@ -2,7 +2,6 @@ plugins { id 'corda-api.common-library' id 'corda.common-publishing' id 'corda.java-only' - id 'corda.api-scanner' } description 'Definition of Database Schema' diff --git a/data/db-schema/src/api/corda-db-schema-5.1.0.yaml b/data/db-schema/src/api/corda-db-schema-5.1.0.yaml deleted file mode 100644 index 01461795b7..0000000000 --- a/data/db-schema/src/api/corda-db-schema-5.1.0.yaml +++ /dev/null @@ -1,220 +0,0 @@ -net.corda.db.schema.CordaDb: - annotations: [] - type: public final class - extends: java.lang.Enum - implements: [] - interface: false - methods: - getPersistenceUnitName: - annotations: - - NotNull - default: false - type: public - returnType: String - valueOf: - annotations: [] - default: false - type: public static - returnType: net.corda.db.schema.CordaDb - params: {} - values: - annotations: [] - default: false - type: public static - returnType: "net.corda.db.schema.CordaDb[]" -net.corda.db.schema.DbSchema: - annotations: [] - type: public final class - extends: null - implements: [] - interface: false - methods: {} - fields: - RBAC: - annotation: [] - type: public static final String - initialised value: RBAC - CONFIG: - annotation: [] - type: public static final String - initialised value: CONFIG - CONFIG_TABLE: - annotation: [] - type: public static final String - initialised value: config - CONFIG_AUDIT_TABLE: - annotation: [] - type: public static final String - initialised value: config_audit - CONFIG_AUDIT_ID_SEQUENCE: - annotation: [] - type: public static final String - initialised value: config_audit_id_seq - CLUSTER_CERTIFICATE_DB_TABLE: - annotation: [] - type: public static final String - initialised value: cluster_certificate - CLUSTER_STATIC_NETWORK_INFO_TABLE: - annotation: [] - type: public static final String - initialised value: static_network_info - CONFIG_AUDIT_ID_SEQUENCE_ALLOC_SIZE: - annotation: [] - type: public static final int - initialised value: 1 - DB_CONNECTION_TABLE: - annotation: [] - type: public static final String - initialised value: db_connection - DB_CONNECTION_AUDIT_TABLE: - annotation: [] - type: public static final String - initialised value: db_connection_audit - DB_CONNECTION_AUDIT_ID_SEQUENCE: - annotation: [] - type: public static final String - initialised value: db_connection_audit_id_seq - DB_CONNECTION_AUDIT_ID_SEQUENCE_ALLOC_SIZE: - annotation: [] - type: public static final int - initialised value: 1 - VNODE: - annotation: [] - type: public static final String - initialised value: VNODE - VIRTUAL_NODE_DB_TABLE: - annotation: [] - type: public static final String - initialised value: virtual_node - HOLDING_IDENTITY_DB_TABLE: - annotation: [] - type: public static final String - initialised value: holding_identity - VNODE_VAULT_DB_TABLE: - annotation: [] - type: public static final String - initialised value: vnode_vault - VNODE_KEY_DB_TABLE: - annotation: [] - type: public static final String - initialised value: vnode_key - VNODE_CERTIFICATE_DB_TABLE: - annotation: [] - type: public static final String - initialised value: vnode_certificate - VNODE_ALLOWED_CERTIFICATE_DB_TABLE: - annotation: [] - type: public static final String - initialised value: vnode_mtls_allowed_certificate - VNODE_GROUP_REGISTRATION_TABLE: - annotation: [] - type: public static final String - initialised value: vnode_registration_request - VNODE_MEMBER_INFO: - annotation: [] - type: public static final String - initialised value: vnode_member_info - VNODE_GROUP_POLICY: - annotation: [] - type: public static final String - initialised value: vnode_group_policy - VNODE_MEMBER_SIGNATURE: - annotation: [] - type: public static final String - initialised value: vnode_member_signature - VNODE_GROUP_PARAMETERS: - annotation: [] - type: public static final String - initialised value: vnode_group_parameters - VNODE_GROUP_APPROVAL_RULES: - annotation: [] - type: public static final String - initialised value: vnode_group_approval_rules - VNODE_PRE_AUTH_TOKENS: - annotation: [] - type: public static final String - initialised value: vnode_pre_auth_tokens - VNODE_PERSISTENCE_REQUEST_ID_TABLE: - annotation: [] - type: public static final String - initialised value: vnode_persistence_request_id - LEDGER_CONSENSUAL_TRANSACTION_TABLE: - annotation: [] - type: public static final String - initialised value: consensual_transaction - LEDGER_CONSENSUAL_TRANSACTION_STATUS_TABLE: - annotation: [] - type: public static final String - initialised value: consensual_transaction_status - LEDGER_CONSENSUAL_TRANSACTION_SIGNATURE_TABLE: - annotation: [] - type: public static final String - initialised value: consensual_transaction_signature - LEDGER_CONSENSUAL_TRANSACTION_COMPONENT_TABLE: - annotation: [] - type: public static final String - initialised value: consensual_transaction_component - LEDGER_CONSENSUAL_CPK_TABLE: - annotation: [] - type: public static final String - initialised value: consensual_cpk - LEDGER_CONSENSUAL_TRANSACTION_CPK_TABLE: - annotation: [] - type: public static final String - initialised value: consensual_transaction_cpk - DB_MESSAGE_BUS: - annotation: [] - type: public static final String - initialised value: DB_MESSAGE_BUS - CRYPTO: - annotation: [] - type: public static final String - initialised value: CRYPTO - CRYPTO_WRAPPING_KEY_TABLE: - annotation: [] - type: public static final String - initialised value: crypto_wrapping_key - CRYPTO_SIGNING_KEY_TABLE: - annotation: [] - type: public static final String - initialised value: crypto_signing_key - CRYPTO_SIGNING_KEY_MATERIAL_TABLE: - annotation: [] - type: public static final String - initialised value: crypto_signing_key_material - CRYPTO_HSM_CONFIG_TABLE: - annotation: [] - type: public static final String - initialised value: crypto_hsm_config - CRYPTO_HSM_CATEGORY_MAP_TABLE: - annotation: [] - type: public static final String - initialised value: crypto_hsm_category_map - CRYPTO_HSM_ASSOCIATION_TABLE: - annotation: [] - type: public static final String - initialised value: crypto_hsm_association - CRYPTO_HSM_CATEGORY_ASSOCIATION_TABLE: - annotation: [] - type: public static final String - initialised value: crypto_hsm_category_association - UNIQUENESS: - annotation: [] - type: public static final String - initialised value: UNIQUENESS - UNIQUENESS_STATE_DETAILS_TABLE: - annotation: [] - type: public static final String - initialised value: uniqueness_state_details - UNIQUENESS_TX_DETAILS_TABLE: - annotation: [] - type: public static final String - initialised value: uniqueness_tx_details - UNIQUENESS_REJECTED_TX_TABLE: - annotation: [] - type: public static final String - initialised value: uniqueness_rejected_txs - STATE_MANAGER_TABLE: - annotation: [] - type: public static final String - initialised value: state diff --git a/data/membership-schema/build.gradle b/data/membership-schema/build.gradle index 720a8388d7..65aad20642 100644 --- a/data/membership-schema/build.gradle +++ b/data/membership-schema/build.gradle @@ -2,7 +2,6 @@ plugins { id 'corda-api.common-library' id 'corda.common-publishing' id 'corda.java-only' - id 'corda.api-scanner' } description 'Schema definitions for membership operations' diff --git a/data/membership-schema/src/api/corda-membership-schema-5.1.0.yaml b/data/membership-schema/src/api/corda-membership-schema-5.1.0.yaml deleted file mode 100644 index 03be794dbd..0000000000 --- a/data/membership-schema/src/api/corda-membership-schema-5.1.0.yaml +++ /dev/null @@ -1,139 +0,0 @@ -net.corda.schema.membership.MembershipSchema: - annotations: [] - type: public abstract class - extends: null - implements: [] - interface: false - methods: - getSchemaName: - annotations: - - NotNull - default: false - type: public final - returnType: String -net.corda.schema.membership.MembershipSchema$GroupPolicySchema: - annotations: [] - type: public static final class - extends: net.corda.schema.membership.MembershipSchema - implements: [] - interface: false - methods: - getSchemaName: - annotations: - - NotNull - default: false - type: public final - returnType: String - fields: - Default: - annotation: [] - type: public static final net.corda.schema.membership.MembershipSchema$GroupPolicySchema -net.corda.schema.membership.MembershipSchema$RegistrationContextSchema: - annotations: [] - type: public static final class - extends: net.corda.schema.membership.MembershipSchema - implements: [] - interface: false - methods: - getSchemaName: - annotations: - - NotNull - default: false - type: public final - returnType: String - fields: - StaticMember: - annotation: [] - type: public static final net.corda.schema.membership.MembershipSchema$RegistrationContextSchema - DynamicMember: - annotation: [] - type: public static final net.corda.schema.membership.MembershipSchema$RegistrationContextSchema - Mgm: - annotation: [] - type: public static final net.corda.schema.membership.MembershipSchema$RegistrationContextSchema -net.corda.schema.membership.provider.MembershipSchemaException: - annotations: [] - type: public final class - extends: net.corda.v5.base.exceptions.CordaRuntimeException - implements: [] - interface: false - methods: {} -net.corda.schema.membership.provider.MembershipSchemaProvider: - annotations: [] - type: public interface - extends: [] - interface: true - methods: - getSchema: - annotations: - - NotNull - default: false - type: public abstract - returnType: java.io.InputStream - params: - schema: - annotation: - - NotNull - type: net.corda.schema.membership.MembershipSchema - version: - annotation: - - NotNull - type: net.corda.v5.base.versioning.Version - getSchemaFile: - annotations: - - NotNull - default: false - type: public abstract - returnType: java.io.InputStream - params: - fileName: - annotation: - - NotNull - type: String -net.corda.schema.membership.provider.MembershipSchemaProviderFactory: - annotations: [] - type: public final class - extends: null - implements: [] - interface: false - methods: - getSchemaProvider: - annotations: - - NotNull - default: false - type: public static - returnType: net.corda.schema.membership.provider.MembershipSchemaProvider -net.corda.schema.membership.provider.impl.MembershipSchemaProviderImpl: - annotations: [] - type: public class - extends: null - implements: - - net.corda.schema.membership.provider.MembershipSchemaProvider - interface: false - methods: - getSchema: - annotations: - - NotNull - default: false - type: public - returnType: java.io.InputStream - params: - schema: - annotation: - - NotNull - type: net.corda.schema.membership.MembershipSchema - version: - annotation: - - NotNull - type: net.corda.v5.base.versioning.Version - getSchemaFile: - annotations: - - NotNull - default: false - type: public - returnType: java.io.InputStream - params: - fileName: - annotation: - - NotNull - type: String diff --git a/data/rbac-schema/build.gradle b/data/rbac-schema/build.gradle index d1d1029e0f..8f881137e3 100644 --- a/data/rbac-schema/build.gradle +++ b/data/rbac-schema/build.gradle @@ -2,7 +2,6 @@ plugins { id 'corda-api.common-library' id 'corda.common-publishing' id 'corda.java-only' - id 'corda.api-scanner' } description 'Schema Definition for Role Based Access Control' diff --git a/data/rbac-schema/src/api/corda-rbac-schema-5.1.0.yaml b/data/rbac-schema/src/api/corda-rbac-schema-5.1.0.yaml deleted file mode 100644 index b79c74030b..0000000000 --- a/data/rbac-schema/src/api/corda-rbac-schema-5.1.0.yaml +++ /dev/null @@ -1,44 +0,0 @@ -net.corda.rbac.schema.RbacKeys: - annotations: [] - type: public final class - extends: null - implements: [] - interface: false - methods: {} - fields: - START_FLOW_PREFIX: - annotation: [] - type: public static final String - initialised value: StartFlow - PREFIX_SEPARATOR: - annotation: [] - type: public static final String - initialised value: ':' - UUID_REGEX: - annotation: [] - type: public static final String - initialised value: "[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[1-5][a-fA-F0-9]{3}-[89aAbB][a-fA-F0-9]{3}-[a-fA-F0-9]{12}" - VNODE_SHORT_HASH_REGEX: - annotation: [] - type: public static final String - initialised value: "[a-fA-F0-9]{12}" - VNODE_STATE_REGEX: - annotation: [] - type: public static final String - initialised value: "[_a-zA-Z0-9]{3,255}" - USER_REGEX: - annotation: [] - type: public static final String - initialised value: "[-._@a-zA-Z0-9]{3,255}" - USER_URL_REGEX: - annotation: [] - type: public static final String - initialised value: "[-._a-zA-Z0-9]{3,200}[%40]{0,3}[-._a-zA-Z0-9]{0,50}" - CLIENT_REQ_REGEX: - annotation: [] - type: public static final String - initialised value: "[-._A-Za-z0-9]{1,250}" - FLOW_NAME_REGEX: - annotation: [] - type: public static final String - initialised value: "[._$a-zA-Z0-9]{1,250}" diff --git a/data/topic-schema/build.gradle b/data/topic-schema/build.gradle index 4092239b19..0dce24b7b1 100644 --- a/data/topic-schema/build.gradle +++ b/data/topic-schema/build.gradle @@ -2,7 +2,6 @@ plugins { id 'corda-api.common-library' id 'corda.common-publishing' id 'corda.java-only' - id 'corda.api-scanner' } description 'Definition of Topics' diff --git a/data/topic-schema/src/api/corda-topic-schema-5.1.0.yaml b/data/topic-schema/src/api/corda-topic-schema-5.1.0.yaml deleted file mode 100644 index a936d5e0d7..0000000000 --- a/data/topic-schema/src/api/corda-topic-schema-5.1.0.yaml +++ /dev/null @@ -1,515 +0,0 @@ -net.corda.schema.Schemas: - annotations: [] - type: public final class - extends: null - implements: [] - interface: false - methods: - getDLQTopic: - annotations: - - NotNull - default: false - type: public static - returnType: String - params: - topic: - annotation: - - NotNull - type: String - getRPCResponseTopic: - annotations: - - NotNull - default: false - type: public static - returnType: String - params: - topic: - annotation: - - NotNull - type: String - getStateAndEventStateTopic: - annotations: - - NotNull - default: false - type: public static - returnType: String - params: - topic: - annotation: - - NotNull - type: String - fields: - TOPIC_NAME: - annotation: [] - type: public static final String - initialised value: topicName - NUM_PARTITIONS: - annotation: [] - type: public static final String - initialised value: numPartitions - REPLICATION_FACTOR: - annotation: [] - type: public static final String - initialised value: replicationFactor - TOPIC_CONFIG: - annotation: [] - type: public static final String - initialised value: config -net.corda.schema.Schemas$AvroSchema: - annotations: [] - type: public static final class - extends: null - implements: [] - interface: false - methods: {} - fields: - AVRO_SCHEMA_TOPIC: - annotation: [] - type: public static final String - initialised value: avro.schema -net.corda.schema.Schemas$Certificates: - annotations: [] - type: public static final class - extends: null - implements: [] - interface: false - methods: {} - fields: - CERTIFICATES_RPC_TOPIC: - annotation: [] - type: public static final String - initialised value: certificates.rpc.ops - CERTIFICATES_RPC_RESPONSE_TOPIC: - annotation: [] - type: public static final String -net.corda.schema.Schemas$Config: - annotations: [] - type: public static final class - extends: null - implements: [] - interface: false - methods: {} - fields: - CONFIG_TOPIC: - annotation: [] - type: public static final String - initialised value: config.topic - CONFIG_MGMT_REQUEST_TOPIC: - annotation: [] - type: public static final String - initialised value: config.management.request - CONFIG_MGMT_REQUEST_RESP_TOPIC: - annotation: [] - type: public static final String -net.corda.schema.Schemas$Crypto: - annotations: [] - type: public static final class - extends: null - implements: [] - interface: false - methods: {} - fields: - RPC_HSM_REGISTRATION_MESSAGE_TOPIC: - annotation: [] - type: public static final String - initialised value: crypto.hsm.rpc.registration - RPC_HSM_REGISTRATION_MESSAGE_RESPONSE_TOPIC: - annotation: [] - type: public static final String - FLOW_OPS_MESSAGE_TOPIC: - annotation: [] - type: public static final String - initialised value: crypto.ops.flow - RPC_OPS_MESSAGE_TOPIC: - annotation: [] - type: public static final String - initialised value: crypto.ops.rpc - RPC_OPS_MESSAGE_RESPONSE_TOPIC: - annotation: [] - type: public static final String -net.corda.schema.Schemas$Flow: - annotations: [] - type: public static final class - extends: null - implements: [] - interface: false - methods: {} - fields: - FLOW_STATUS_TOPIC: - annotation: [] - type: public static final String - initialised value: flow.status - FLOW_EVENT_TOPIC: - annotation: [] - type: public static final String - initialised value: flow.event - FLOW_EVENT_STATE_TOPIC: - annotation: [] - type: public static final String - FLOW_EVENT_DLQ_TOPIC: - annotation: [] - type: public static final String - FLOW_MAPPER_EVENT_TOPIC: - annotation: [] - type: public static final String - initialised value: flow.mapper.event - FLOW_MAPPER_EVENT_STATE_TOPIC: - annotation: [] - type: public static final String - FLOW_MAPPER_EVENT_DLQ_TOPIC: - annotation: [] - type: public static final String - FLOW_MAPPER_CLEANUP_TOPIC: - annotation: [] - type: public static final String - initialised value: flow.mapper.cleanup - FLOW_TIMEOUT_TOPIC: - annotation: [] - type: public static final String - initialised value: flow.timeout -net.corda.schema.Schemas$Membership: - annotations: [] - type: public static final class - extends: null - implements: [] - interface: false - methods: {} - fields: - GROUP_PARAMETERS_TOPIC: - annotation: [] - type: public static final String - initialised value: membership.group.params - MEMBER_LIST_TOPIC: - annotation: [] - type: public static final String - initialised value: membership.members - MEMBERSHIP_RPC_TOPIC: - annotation: [] - type: public static final String - initialised value: membership.rpc.ops - MEMBERSHIP_RPC_RESPONSE_TOPIC: - annotation: [] - type: public static final String - MEMBERSHIP_DB_RPC_TOPIC: - annotation: [] - type: public static final String - initialised value: membership.db.rpc.ops - MEMBERSHIP_DB_RPC_RESPONSE_TOPIC: - annotation: [] - type: public static final String - MEMBERSHIP_DB_ASYNC_TOPIC: - annotation: [] - type: public static final String - initialised value: membership.db.async.ops - MEMBERSHIP_DB_ASYNC_STATE_TOPIC: - annotation: [] - type: public static final String - MEMBERSHIP_DB_ASYNC_DLQ_TOPIC: - annotation: [] - type: public static final String - MEMBERSHIP_ASYNC_REQUEST_TOPIC: - annotation: [] - type: public static final String - initialised value: membership.async.request - MEMBERSHIP_ASYNC_REQUEST_RETRIES_TOPIC: - annotation: [] - type: public static final String - initialised value: membership.async.request.retries - MEMBERSHIP_ASYNC_REQUEST_RETRIES_STATE_TOPIC: - annotation: [] - type: public static final String - MEMBERSHIP_ASYNC_REQUEST_RETRIES_DLQ_TOPIC: - annotation: [] - type: public static final String - MEMBERSHIP_ACTIONS_TOPIC: - annotation: [] - type: public static final String - initialised value: membership.actions - EVENT_TOPIC: - annotation: [] - type: public static final String - initialised value: membership.event - REGISTRATION_COMMAND_TOPIC: - annotation: [] - type: public static final String - initialised value: membership.registration - REGISTRATION_STATE_TOPIC: - annotation: [] - type: public static final String - REGISTRATION_DLQ_TOPIC: - annotation: [] - type: public static final String - SYNCHRONIZATION_TOPIC: - annotation: [] - type: public static final String - initialised value: membership.sync -net.corda.schema.Schemas$P2P: - annotations: [] - type: public static final class - extends: null - implements: [] - interface: false - methods: {} - fields: - P2P_OUT_TOPIC: - annotation: [] - type: public static final String - initialised value: p2p.out - P2P_OUT_TOPIC_DLQ: - annotation: [] - type: public static final String - P2P_OUT_MARKERS: - annotation: [] - type: public static final String - initialised value: p2p.out.markers - P2P_OUT_MARKERS_STATE: - annotation: [] - type: public static final String - P2P_OUT_MARKERS_DLQ: - annotation: [] - type: public static final String - P2P_IN_TOPIC: - annotation: [] - type: public static final String - initialised value: p2p.in - P2P_HOSTED_IDENTITIES_TOPIC: - annotation: [] - type: public static final String - initialised value: p2p.hosted.identities - P2P_MGM_ALLOWED_CLIENT_CERTIFICATE_SUBJECTS: - annotation: [] - type: public static final String - initialised value: p2p.mgm.allowed.client.certificate.subjects - LINK_OUT_TOPIC: - annotation: [] - type: public static final String - initialised value: link.out - LINK_IN_TOPIC: - annotation: [] - type: public static final String - initialised value: link.in - SESSION_OUT_PARTITIONS: - annotation: [] - type: public static final String - initialised value: session.out.partitions - GATEWAY_TLS_TRUSTSTORES: - annotation: [] - type: public static final String - initialised value: gateway.tls.truststores - GATEWAY_TLS_CERTIFICATES: - annotation: [] - type: public static final String - initialised value: gateway.tls.certs - GATEWAY_REVOCATION_CHECK_REQUEST_TOPIC: - annotation: [] - type: public static final String - initialised value: gateway.revocation.request - GATEWAY_REVOCATION_CHECK_RESPONSE_TOPIC: - annotation: [] - type: public static final String - P2P_MTLS_MEMBER_CLIENT_CERTIFICATE_SUBJECT_TOPIC: - annotation: [] - type: public static final String - initialised value: p2p.mtls.member.client.certificate.subject - GATEWAY_ALLOWED_CLIENT_CERTIFICATE_SUBJECTS: - annotation: [] - type: public static final String - initialised value: gateway.allowed.client.certificate.subjects -net.corda.schema.Schemas$Permissions: - annotations: [] - type: public static final class - extends: null - implements: [] - interface: false - methods: {} - fields: - PERMISSIONS_USER_SUMMARY_TOPIC: - annotation: [] - type: public static final String - initialised value: permissions.user.summary -net.corda.schema.Schemas$Persistence: - annotations: [] - type: public static final class - extends: null - implements: [] - interface: false - methods: {} - fields: - PERSISTENCE_ENTITY_PROCESSOR_TOPIC: - annotation: [] - type: public static final String - initialised value: persistence.entity.processor - PERSISTENCE_LEDGER_PROCESSOR_TOPIC: - annotation: [] - type: public static final String - initialised value: persistence.ledger.processor -net.corda.schema.Schemas$Rest: - annotations: [] - type: public static final class - extends: null - implements: [] - interface: false - methods: {} - fields: - REST_PERM_MGMT_REQ_TOPIC: - annotation: [] - type: public static final String - initialised value: rest.permissions.management - REST_PERM_MGMT_RESP_TOPIC: - annotation: [] - type: public static final String - REST_PERM_USER_TOPIC: - annotation: [] - type: public static final String - initialised value: rest.permissions.user - REST_PERM_GROUP_TOPIC: - annotation: [] - type: public static final String - initialised value: rest.permissions.group - REST_PERM_ROLE_TOPIC: - annotation: [] - type: public static final String - initialised value: rest.permissions.role - REST_PERM_ENTITY_TOPIC: - annotation: [] - type: public static final String - initialised value: rest.permissions.permission -net.corda.schema.Schemas$ScheduledTask: - annotations: [] - type: public static final class - extends: null - implements: [] - interface: false - methods: {} - fields: - SCHEDULED_TASK_TOPIC_DB_PROCESSOR: - annotation: [] - type: public static final String - initialised value: scheduled.task.db.processor - SCHEDULED_TASK_NAME_DB_PROCESSOR: - annotation: [] - type: public static final String - initialised value: deduplication-table-clean-up-task - SCHEDULED_TASK_TOPIC_MAPPER_PROCESSOR: - annotation: [] - type: public static final String - initialised value: scheduled.task.mapper.processor - SCHEDULED_TASK_NAME_MAPPER_CLEANUP: - annotation: [] - type: public static final String - initialised value: flow-mapper-state-cleanup - SCHEDULED_TASK_TOPIC_FLOW_PROCESSOR: - annotation: [] - type: public static final String - initialised value: scheduled.task.flow.processor - SCHEDULED_TASK_NAME_SESSION_TIMEOUT: - annotation: [] - type: public static final String - initialised value: flow-session-timeout -net.corda.schema.Schemas$Services: - annotations: [] - type: public static final class - extends: null - implements: [] - interface: false - methods: {} - fields: - TOKEN_CACHE_EVENT: - annotation: [] - type: public static final String - initialised value: services.token.event - TOKEN_CACHE_EVENT_STATE: - annotation: [] - type: public static final String - TOKEN_CACHE_EVENT_DLQ: - annotation: [] - type: public static final String - TOKEN_CACHE_SYNC_EVENT: - annotation: [] - type: public static final String - initialised value: services.token.sync.event - TOKEN_CACHE_SYNC_EVENT_STATE: - annotation: [] - type: public static final String - TOKEN_CACHE_SYNC_EVENT_DLQ: - annotation: [] - type: public static final String -net.corda.schema.Schemas$UniquenessChecker: - annotations: [] - type: public static final class - extends: null - implements: [] - interface: false - methods: {} - fields: - UNIQUENESS_CHECK_TOPIC: - annotation: [] - type: public static final String - initialised value: uniqueness.check -net.corda.schema.Schemas$Verification: - annotations: [] - type: public static final class - extends: null - implements: [] - interface: false - methods: {} - fields: - VERIFICATION_LEDGER_PROCESSOR_TOPIC: - annotation: [] - type: public static final String - initialised value: verification.ledger.processor -net.corda.schema.Schemas$VirtualNode: - annotations: [] - type: public static final class - extends: null - implements: [] - interface: false - methods: {} - fields: - VIRTUAL_NODE_INFO_TOPIC: - annotation: [] - type: public static final String - initialised value: virtual.node.info - VIRTUAL_NODE_ASYNC_REQUEST_TOPIC: - annotation: [] - type: public static final String - initialised value: virtual.node.async.request - VIRTUAL_NODE_OPERATION_STATUS_TOPIC: - annotation: [] - type: public static final String - initialised value: virtual.node.operation.status - VIRTUAL_NODE_CREATION_REQUEST_TOPIC: - annotation: [] - type: public static final String - initialised value: virtual.node.creation.request - VIRTUAL_NODE_CREATION_REQUEST_RESPONSE_TOPIC: - annotation: [] - type: public static final String - CPI_INFO_TOPIC: - annotation: [] - type: public static final String - initialised value: cpi.info - CPI_UPLOAD_TOPIC: - annotation: [] - type: public static final String - initialised value: cpi.upload - CPI_UPLOAD_STATUS_TOPIC: - annotation: [] - type: public static final String - initialised value: cpi.upload.status - CPK_FILE_TOPIC: - annotation: [] - type: public static final String - initialised value: cpk.file -net.corda.schema.TestSchema: - annotations: [] - type: public final class - extends: null - implements: [] - interface: false - methods: {} - fields: - APP_RECEIVED_MESSAGES_TOPIC: - annotation: [] - type: public static final String - initialised value: p2p.app.received_msg From 35e36fc482c987918b839171004a93231c0f626a Mon Sep 17 00:00:00 2001 From: Dries Samyn Date: Thu, 12 Oct 2023 12:13:47 +0100 Subject: [PATCH 13/30] CORE-17623 - Change ACL mappings to add tokenSelection worker. (#1291) * Change ACL mappings to add tokenSelection worker. --- .../main/resources/net/corda/schema/AvroSchema.yaml | 2 ++ .../src/main/resources/net/corda/schema/Config.yaml | 1 + .../src/main/resources/net/corda/schema/Flow.yaml | 1 + .../main/resources/net/corda/schema/Services.yaml | 13 +++++++++++++ .../resources/net/corda/schema/VirtualNode.yaml | 1 + 5 files changed, 18 insertions(+) diff --git a/data/topic-schema/src/main/resources/net/corda/schema/AvroSchema.yaml b/data/topic-schema/src/main/resources/net/corda/schema/AvroSchema.yaml index 94a2cba559..f0be2203ef 100644 --- a/data/topic-schema/src/main/resources/net/corda/schema/AvroSchema.yaml +++ b/data/topic-schema/src/main/resources/net/corda/schema/AvroSchema.yaml @@ -13,6 +13,7 @@ topics: - persistence - rest - uniqueness + - tokenSelection producers: - crypto - db @@ -25,6 +26,7 @@ topics: - persistence - rest - uniqueness + - tokenSelection config: cleanup.policy: compact segment.ms: 600000 diff --git a/data/topic-schema/src/main/resources/net/corda/schema/Config.yaml b/data/topic-schema/src/main/resources/net/corda/schema/Config.yaml index 8be7ce7891..7913ccbc5b 100644 --- a/data/topic-schema/src/main/resources/net/corda/schema/Config.yaml +++ b/data/topic-schema/src/main/resources/net/corda/schema/Config.yaml @@ -27,6 +27,7 @@ topics: - rest - persistence - uniqueness + - tokenSelection producers: - db config: diff --git a/data/topic-schema/src/main/resources/net/corda/schema/Flow.yaml b/data/topic-schema/src/main/resources/net/corda/schema/Flow.yaml index 4effa3fd76..5aed6fdbcf 100644 --- a/data/topic-schema/src/main/resources/net/corda/schema/Flow.yaml +++ b/data/topic-schema/src/main/resources/net/corda/schema/Flow.yaml @@ -11,6 +11,7 @@ topics: - verification - persistence - uniqueness + - tokenSelection config: FlowEventStateTopic: name: flow.event.state diff --git a/data/topic-schema/src/main/resources/net/corda/schema/Services.yaml b/data/topic-schema/src/main/resources/net/corda/schema/Services.yaml index 268165d626..22d543762c 100644 --- a/data/topic-schema/src/main/resources/net/corda/schema/Services.yaml +++ b/data/topic-schema/src/main/resources/net/corda/schema/Services.yaml @@ -1,19 +1,24 @@ +# TODO: remove db access once the tokenSelection worker has been integrated. topics: ServicesTokenEventTopic: name: services.token.event consumers: - db + - tokenSelection producers: - flow - db - persistence + - tokenSelection config: ServicesTokenEventStateTopic: name: services.token.event.state consumers: - db + - tokenSelection producers: - db + - tokenSelection config: cleanup.policy: compact segment.ms: 600000 @@ -25,22 +30,28 @@ topics: name: services.token.event.dlq consumers: - db + - tokenSelection producers: - db + - tokenSelection config: ServicesTokenSyncEventTopic: name: services.token.sync.event consumers: - db + - tokenSelection producers: - db + - tokenSelection config: ServicesTokenSyncEventStateTopic: name: services.token.sync.event.state consumers: - db + - tokenSelection producers: - db + - tokenSelection config: cleanup.policy: compact segment.ms: 600000 @@ -52,6 +63,8 @@ topics: name: services.token.sync.event.dlq consumers: - db + - tokenSelection producers: - db + - tokenSelection config: diff --git a/data/topic-schema/src/main/resources/net/corda/schema/VirtualNode.yaml b/data/topic-schema/src/main/resources/net/corda/schema/VirtualNode.yaml index 17a067b3e5..b9474d0579 100644 --- a/data/topic-schema/src/main/resources/net/corda/schema/VirtualNode.yaml +++ b/data/topic-schema/src/main/resources/net/corda/schema/VirtualNode.yaml @@ -74,6 +74,7 @@ topics: - link-manager - persistence - rest + - tokenSelection producers: - db config: From c781f5f01271fd916e75abbb6f0f6c42844b2535 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Jos=C3=A9=20Ramos?= Date: Thu, 12 Oct 2023 14:51:33 +0100 Subject: [PATCH 14/30] CORE-16323: Add Index on State Version Column (#1295) Add index on the version field to improve optimistic locking checks. --- .../statemanager/migration/state-manager-migration-v5.1.xml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/data/db-schema/src/main/resources/net/corda/db/schema/statemanager/migration/state-manager-migration-v5.1.xml b/data/db-schema/src/main/resources/net/corda/db/schema/statemanager/migration/state-manager-migration-v5.1.xml index 77380c0cff..c23dd5696e 100644 --- a/data/db-schema/src/main/resources/net/corda/db/schema/statemanager/migration/state-manager-migration-v5.1.xml +++ b/data/db-schema/src/main/resources/net/corda/db/schema/statemanager/migration/state-manager-migration-v5.1.xml @@ -30,6 +30,9 @@ + + + From c5788ec2f31a1280952ef175297ca6d3add07ef2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Jos=C3=A9=20Ramos?= Date: Thu, 12 Oct 2023 16:08:18 +0100 Subject: [PATCH 15/30] CORE-16323: Improve State Manager Index (#1296) Update recently introduced index so it uses both the "key" and "version" columns as both are used by the State Manager during update and delete queries. --- .../statemanager/migration/state-manager-migration-v5.1.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/data/db-schema/src/main/resources/net/corda/db/schema/statemanager/migration/state-manager-migration-v5.1.xml b/data/db-schema/src/main/resources/net/corda/db/schema/statemanager/migration/state-manager-migration-v5.1.xml index c23dd5696e..20084adc1c 100644 --- a/data/db-schema/src/main/resources/net/corda/db/schema/statemanager/migration/state-manager-migration-v5.1.xml +++ b/data/db-schema/src/main/resources/net/corda/db/schema/statemanager/migration/state-manager-migration-v5.1.xml @@ -30,7 +30,8 @@ - + + From 086845ee0895b4b18f6e7bfcfff372ed5a276965 Mon Sep 17 00:00:00 2001 From: Lajos Veres Date: Fri, 13 Oct 2023 08:59:39 +0100 Subject: [PATCH 16/30] CORE-17431 utxo_transaction_metadata table and related migrations (#1286) CORE-17431 Create utxo_transaction_metadata for storing metadata since it is relatively large but does not change frequently. Also, two new fields for accessing signed group parameters and CPI file checksum easier. --- .../migration/ledger-utxo-creation-v5.1.xml | 53 +++++++++++++++++++ gradle.properties | 2 +- 2 files changed, 54 insertions(+), 1 deletion(-) diff --git a/data/db-schema/src/main/resources/net/corda/db/schema/vnode-vault/migration/ledger-utxo-creation-v5.1.xml b/data/db-schema/src/main/resources/net/corda/db/schema/vnode-vault/migration/ledger-utxo-creation-v5.1.xml index b958807b00..156636ce8d 100644 --- a/data/db-schema/src/main/resources/net/corda/db/schema/vnode-vault/migration/ledger-utxo-creation-v5.1.xml +++ b/data/db-schema/src/main/resources/net/corda/db/schema/vnode-vault/migration/ledger-utxo-creation-v5.1.xml @@ -121,6 +121,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + INSERT INTO utxo_transaction_metadata + SELECT DISTINCT + hash, + data as canonical_data, + convert_from(data, 'UTF-8')::jsonb->'membershipGroupParametersHash' AS group_parameters_hash, + convert_from(data, 'UTF-8')::jsonb->'cpiMetadata'->'fileChecksum' AS cpi_file_checksum + FROM + utxo_transaction_component + WHERE + group_idx=0 AND + leaf_idx=0; + + + + + + + + + + + + + group_idx=0 AND leaf_idx=0 + + \ No newline at end of file diff --git a/gradle.properties b/gradle.properties index 73c15af796..37dfbd0648 100644 --- a/gradle.properties +++ b/gradle.properties @@ -9,7 +9,7 @@ cordaProductVersion = 5.1.0 # NOTE: update this each time this module contains a breaking change ## NOTE: currently this is a top level revision, so all API versions will line up, but this could be moved to ## a per module property in which case module versions can change independently. -cordaApiRevision = 32 +cordaApiRevision = 33 # Main kotlinVersion = 1.8.21 From 2abfc20e8bf3ef10aa9709736fc83c07e38face8 Mon Sep 17 00:00:00 2001 From: nkovacsx <57627796+nkovacsx@users.noreply.github.com> Date: Fri, 13 Oct 2023 12:15:09 +0100 Subject: [PATCH 17/30] CORE-17430 Modify the utxo_transaction_sources table by removing unused columns and renaming (#1288) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The created and is_ref_input columns are unnecessary to have in the utxo_transaction_sources table. The created column will be the same as in utxo_transaction_component table and it’s a 1:1 mapping. Whether a state is an input or a reference can be found out by using the groupIdx column rather than having an extra is_ref_input column. Also rename the ref_transaction_id and ref_leaf_idx columns as those are quite confusing. --- .../migration/ledger-utxo-creation-v5.1.xml | 19 ++++++++++++++++--- gradle.properties | 2 +- 2 files changed, 17 insertions(+), 4 deletions(-) diff --git a/data/db-schema/src/main/resources/net/corda/db/schema/vnode-vault/migration/ledger-utxo-creation-v5.1.xml b/data/db-schema/src/main/resources/net/corda/db/schema/vnode-vault/migration/ledger-utxo-creation-v5.1.xml index 156636ce8d..912a6c9e79 100644 --- a/data/db-schema/src/main/resources/net/corda/db/schema/vnode-vault/migration/ledger-utxo-creation-v5.1.xml +++ b/data/db-schema/src/main/resources/net/corda/db/schema/vnode-vault/migration/ledger-utxo-creation-v5.1.xml @@ -113,8 +113,22 @@ - - + + + + + + + + + + @@ -145,7 +159,6 @@ - INSERT INTO utxo_transaction_metadata SELECT DISTINCT diff --git a/gradle.properties b/gradle.properties index 37dfbd0648..31347a6a44 100644 --- a/gradle.properties +++ b/gradle.properties @@ -9,7 +9,7 @@ cordaProductVersion = 5.1.0 # NOTE: update this each time this module contains a breaking change ## NOTE: currently this is a top level revision, so all API versions will line up, but this could be moved to ## a per module property in which case module versions can change independently. -cordaApiRevision = 33 +cordaApiRevision = 34 # Main kotlinVersion = 1.8.21 From 1eab83ef8f44fca5a8758977a02f7d0f806dc872 Mon Sep 17 00:00:00 2001 From: Christian Sailer Date: Fri, 13 Oct 2023 14:27:15 +0100 Subject: [PATCH 18/30] CORE-17747 Remove attachments (#1297) Remove mentioning of attachments from the API - this has never been implemented and is unlikely to make an appearance soon, so having dead API calls is misleading. --- gradle.properties | 2 +- .../net/corda/v5/ledger/utxo/Attachment.java | 79 ------------------- .../v5/ledger/utxo/UtxoLedgerService.java | 2 +- .../transaction/UtxoLedgerTransaction.java | 19 ----- .../transaction/UtxoTransactionBuilder.java | 11 --- 5 files changed, 2 insertions(+), 111 deletions(-) delete mode 100644 ledger/ledger-utxo/src/main/java/net/corda/v5/ledger/utxo/Attachment.java diff --git a/gradle.properties b/gradle.properties index 31347a6a44..d1df236c86 100644 --- a/gradle.properties +++ b/gradle.properties @@ -9,7 +9,7 @@ cordaProductVersion = 5.1.0 # NOTE: update this each time this module contains a breaking change ## NOTE: currently this is a top level revision, so all API versions will line up, but this could be moved to ## a per module property in which case module versions can change independently. -cordaApiRevision = 34 +cordaApiRevision = 35 # Main kotlinVersion = 1.8.21 diff --git a/ledger/ledger-utxo/src/main/java/net/corda/v5/ledger/utxo/Attachment.java b/ledger/ledger-utxo/src/main/java/net/corda/v5/ledger/utxo/Attachment.java deleted file mode 100644 index 3784b1ec6b..0000000000 --- a/ledger/ledger-utxo/src/main/java/net/corda/v5/ledger/utxo/Attachment.java +++ /dev/null @@ -1,79 +0,0 @@ -package net.corda.v5.ledger.utxo; - -import net.corda.v5.base.annotations.CordaSerializable; -import net.corda.v5.base.annotations.DoNotImplement; -import net.corda.v5.crypto.SecureHash; -import org.jetbrains.annotations.NotNull; - -import java.io.IOException; -import java.io.InputStream; -import java.io.OutputStream; -import java.security.PublicKey; -import java.util.List; -import java.util.zip.ZipInputStream; - -/** - * Defines a data attachment that can be referenced within a transaction. - *

- * Attachments are ZIP, or optionally a signed JAR file that contains one or more files of public, static data that - * can be referenced from a transaction, and utilised within a contract. Examples of attachments include: - *

- * - Calendar data - * - Fixes (for example, LIBOR) - * - Smart contract code - * - Legal documents - * - Facts generated by oracles. - */ -@DoNotImplement -@CordaSerializable -public interface Attachment { - - /** - * Gets the ID of the unique hash of the attachment. - * - * @return Returns the ID of the unique hash of the attachment. - */ - @NotNull - SecureHash getId(); - - /** - * Gets the size of the attachment in bytes. - * - * @return Returns the size of the attachment in bytes. - */ - int getSize(); - - /** - * Gets the keys that have been used to sign the attachment, or empty if the attachment does not require signing. - * - * @return Returns the keys that have been used to sign the attachment, or empty if the attachment does not require signing. - */ - @NotNull - List getSignatories(); - - /** - * Finds the specified file (case insensitively) within the attachment and copies it to the specified output stream. - * - * @param path The path of the file to find within the attachment. - * @param output The output stream where the file should be copied to. - */ - void extractFile(@NotNull String path, @NotNull OutputStream output); - - /** - * Opens the current {@link Attachment}. - * - * @return Returns the {@link InputStream} for the current {@link Attachment}. - */ - @NotNull - InputStream open(); - - /** - * Opens the current {@link Attachment} as a ZIP. - * - * @return Returns the {@link ZipInputStream} for the current {@link Attachment}. - */ - @NotNull - default ZipInputStream openAsZip() { - return new ZipInputStream(open()); - } -} diff --git a/ledger/ledger-utxo/src/main/java/net/corda/v5/ledger/utxo/UtxoLedgerService.java b/ledger/ledger-utxo/src/main/java/net/corda/v5/ledger/utxo/UtxoLedgerService.java index aa844829df..44f0a8c951 100644 --- a/ledger/ledger-utxo/src/main/java/net/corda/v5/ledger/utxo/UtxoLedgerService.java +++ b/ledger/ledger-utxo/src/main/java/net/corda/v5/ledger/utxo/UtxoLedgerService.java @@ -162,7 +162,7 @@ FinalizationResult receiveFinality( *

* The notary and time window from the proposal will get discarded and the original will be kept if both the original and * the proposal have these components set. - * Duplications of input staterefs, reference staterefs, attachments and signatories will be discarded. + * Duplications of input staterefs, reference staterefs, and signatories will be discarded. *

* Receiver: *

{@code
diff --git a/ledger/ledger-utxo/src/main/java/net/corda/v5/ledger/utxo/transaction/UtxoLedgerTransaction.java b/ledger/ledger-utxo/src/main/java/net/corda/v5/ledger/utxo/transaction/UtxoLedgerTransaction.java
index 7a57f92a6b..1eec2bb9de 100644
--- a/ledger/ledger-utxo/src/main/java/net/corda/v5/ledger/utxo/transaction/UtxoLedgerTransaction.java
+++ b/ledger/ledger-utxo/src/main/java/net/corda/v5/ledger/utxo/transaction/UtxoLedgerTransaction.java
@@ -4,7 +4,6 @@
 import net.corda.v5.base.types.MemberX500Name;
 import net.corda.v5.crypto.SecureHash;
 import net.corda.v5.ledger.common.transaction.TransactionMetadata;
-import net.corda.v5.ledger.utxo.Attachment;
 import net.corda.v5.ledger.utxo.Command;
 import net.corda.v5.ledger.utxo.ContractState;
 import net.corda.v5.ledger.utxo.StateAndRef;
@@ -74,24 +73,6 @@ public interface UtxoLedgerTransaction {
     @NotNull
     List getSignatories();
 
-    /**
-     * Gets the attachments associated with the current {@link UtxoLedgerTransaction}.
-     *
-     * @return Returns the attachments associated with the current {@link UtxoLedgerTransaction}.
-     */
-    @NotNull
-    List getAttachments();
-
-    /**
-     * Obtains an attachment associated with the current {@link UtxoLedgerTransaction}.
-     *
-     * @param id The ID of the attachment to obtain.
-     * @return Returns the attachment with the specified ID.
-     * @throws IllegalArgumentException if the attachment with the specified ID cannot be found.
-     */
-    @NotNull
-    Attachment getAttachment(@NotNull SecureHash id);
-
     /**
      * Gets the commands associated with the current {@link UtxoLedgerTransaction}.
      *
diff --git a/ledger/ledger-utxo/src/main/java/net/corda/v5/ledger/utxo/transaction/UtxoTransactionBuilder.java b/ledger/ledger-utxo/src/main/java/net/corda/v5/ledger/utxo/transaction/UtxoTransactionBuilder.java
index d23ce1a1fb..e4f28da014 100644
--- a/ledger/ledger-utxo/src/main/java/net/corda/v5/ledger/utxo/transaction/UtxoTransactionBuilder.java
+++ b/ledger/ledger-utxo/src/main/java/net/corda/v5/ledger/utxo/transaction/UtxoTransactionBuilder.java
@@ -3,9 +3,7 @@
 import net.corda.v5.base.annotations.DoNotImplement;
 import net.corda.v5.base.annotations.Suspendable;
 import net.corda.v5.base.types.MemberX500Name;
-import net.corda.v5.crypto.SecureHash;
 import net.corda.v5.ledger.common.transaction.TransactionNoAvailableKeysException;
-import net.corda.v5.ledger.utxo.Attachment;
 import net.corda.v5.ledger.utxo.Command;
 import net.corda.v5.ledger.utxo.ContractState;
 import net.corda.v5.ledger.utxo.StateRef;
@@ -24,15 +22,6 @@
 @SuppressWarnings("TooManyFunctions")
 public interface UtxoTransactionBuilder {
 
-    /**
-     * Adds the specified {@link Attachment} to the current {@link UtxoTransactionBuilder}.
-     *
-     * @param attachmentId The ID of the {@link Attachment} to add to the current {@link UtxoTransactionBuilder}.
-     * @return Returns the current {@link UtxoTransactionBuilder} with the specified {@link Attachment}.
-     */
-    @NotNull
-    UtxoTransactionBuilder addAttachment(@NotNull SecureHash attachmentId);
-
     /**
      * Adds the specified command to the current {@link UtxoTransactionBuilder}.
      *

From 40eb1aa970b7f1e0fac185fad6a86b19c2999478 Mon Sep 17 00:00:00 2001
From: Dan Newton 
Date: Fri, 13 Oct 2023 16:08:44 +0100
Subject: [PATCH 19/30] CORE-15552 Add `findUnconsumedStatesByExactType` paging
 API (#1292)

Add `findUnconsumedStatesByExactType` to `UtxoLedgerService `, allowing developers to retrieve states by type from the vault in pages. This dissuades developers from retrieving every state from the vault in one go and returning them to a flow.

Remove the non-paged version of the API.
---
 .../FindUnconsumedVisibleExactStates.avsc     | 13 ----
 .../persistence/LedgerPersistenceRequest.avsc |  1 -
 gradle.properties                             |  2 +-
 .../v5/ledger/utxo/UtxoLedgerService.java     | 63 ++++++++++++++-----
 4 files changed, 49 insertions(+), 30 deletions(-)
 delete mode 100644 data/avro-schema/src/main/resources/avro/net/corda/data/ledger/persistence/FindUnconsumedVisibleExactStates.avsc

diff --git a/data/avro-schema/src/main/resources/avro/net/corda/data/ledger/persistence/FindUnconsumedVisibleExactStates.avsc b/data/avro-schema/src/main/resources/avro/net/corda/data/ledger/persistence/FindUnconsumedVisibleExactStates.avsc
deleted file mode 100644
index 1f192264c0..0000000000
--- a/data/avro-schema/src/main/resources/avro/net/corda/data/ledger/persistence/FindUnconsumedVisibleExactStates.avsc
+++ /dev/null
@@ -1,13 +0,0 @@
-{
-  "type": "record",
-  "name": "FindUnconsumedStatesByExactType",
-  "doc": "Retrieve the unconsumed visible states of specific type. This only retrieves exact type excluding its states of subclass unlike {@link FindUnconsumedStatesByType}. One of several types of ledger persistence request {@link LedgerPersistenceRequest}",
-  "namespace": "net.corda.data.ledger.persistence",
-  "fields": [
-    {
-      "name": "stateClassName",
-      "type": "string",
-      "doc": "The fully qualified state class name"
-    }
-  ]
-}
diff --git a/data/avro-schema/src/main/resources/avro/net/corda/data/ledger/persistence/LedgerPersistenceRequest.avsc b/data/avro-schema/src/main/resources/avro/net/corda/data/ledger/persistence/LedgerPersistenceRequest.avsc
index cddfd596f0..d2a1676686 100644
--- a/data/avro-schema/src/main/resources/avro/net/corda/data/ledger/persistence/LedgerPersistenceRequest.avsc
+++ b/data/avro-schema/src/main/resources/avro/net/corda/data/ledger/persistence/LedgerPersistenceRequest.avsc
@@ -34,7 +34,6 @@
         "net.corda.data.ledger.persistence.PersistTransactionIfDoesNotExist",
         "net.corda.data.ledger.persistence.FindTransaction",
         "net.corda.data.ledger.persistence.FindUnconsumedStatesByType",
-        "net.corda.data.ledger.persistence.FindUnconsumedStatesByExactType",
         "net.corda.data.ledger.persistence.ResolveStateRefs",
         "net.corda.data.ledger.persistence.UpdateTransactionStatus",
         "net.corda.data.persistence.FindWithNamedQuery",
diff --git a/gradle.properties b/gradle.properties
index d1df236c86..11c6a2a6c7 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -9,7 +9,7 @@ cordaProductVersion = 5.1.0
 # NOTE: update this each time this module contains a breaking change
 ## NOTE: currently this is a top level revision, so all API versions will line up, but this could be moved to
 ##   a per module property in which case module versions can change independently.
-cordaApiRevision = 35
+cordaApiRevision = 36
 
 # Main
 kotlinVersion = 1.8.21
diff --git a/ledger/ledger-utxo/src/main/java/net/corda/v5/ledger/utxo/UtxoLedgerService.java b/ledger/ledger-utxo/src/main/java/net/corda/v5/ledger/utxo/UtxoLedgerService.java
index 44f0a8c951..e802588c3f 100644
--- a/ledger/ledger-utxo/src/main/java/net/corda/v5/ledger/utxo/UtxoLedgerService.java
+++ b/ledger/ledger-utxo/src/main/java/net/corda/v5/ledger/utxo/UtxoLedgerService.java
@@ -2,6 +2,7 @@
 
 import net.corda.v5.application.messaging.FlowSession;
 import net.corda.v5.application.persistence.PagedQuery;
+import net.corda.v5.application.persistence.PagedQuery.ResultSet;
 import net.corda.v5.base.annotations.DoNotImplement;
 import net.corda.v5.base.annotations.Suspendable;
 import net.corda.v5.crypto.SecureHash;
@@ -16,6 +17,7 @@
 import org.jetbrains.annotations.NotNull;
 import org.jetbrains.annotations.Nullable;
 
+import java.time.Instant;
 import java.util.List;
 
 /**
@@ -36,7 +38,7 @@ public interface UtxoLedgerService {
     /**
      * Resolves the specified {@link StateRef} instances into {@link StateAndRef} instances of the specified {@link ContractState} type.
      *
-     * @param  The underlying {@link ContractState} type.
+     * @param        The underlying {@link ContractState} type.
      * @param stateRefs The {@link StateRef} instances to resolve.
      * @return Returns a {@link List} of {@link StateAndRef} of the specified {@link ContractState} type.
      */
@@ -47,7 +49,7 @@ public interface UtxoLedgerService {
     /**
      * Resolves the specified {@link StateRef} instance into a {@link StateAndRef} instance of the specified {@link ContractState} type.
      *
-     * @param  The underlying {@link ContractState} type.
+     * @param       The underlying {@link ContractState} type.
      * @param stateRef The {@link StateRef} instances to resolve.
      * @return Returns a {@link StateAndRef} of the specified {@link ContractState} type.
      */
@@ -92,7 +94,7 @@ public interface UtxoLedgerService {
      * Only use this method if subclasses of {@code type} must be returned.
      * 

* Use {@link #findUnconsumedStatesByExactType(Class)} to return exact instances of the input {@code type}. - * This method is more performant than {@link #findUnconsumedStatesByType(Class)}. + * This method is more performant than {@link #findUnconsumedStatesByExactType(Class, Integer, Instant)}. *

* Use {@link #query(String, Class)} for a more performant method of retrieving subclasses of a specified type. * @@ -106,14 +108,46 @@ public interface UtxoLedgerService { /** * Finds unconsumed states of the specified {@link ContractState} type in the vault. + *

+ * This version supports paging, limiting the number of results returned in a single query call by setting the + * `limit` argument. + *

+ * Example usage: + *

    + *
  • Kotlin:
    {@code
    +     * val resultSet = utxoLedgerService.findUnconsumedStatesByExactType(MyState::class.java, 10, Instant.now())
          *
    -     * @param   The underlying {@link ContractState} type.
    -     * @param type The {@link ContractState} type to find in the vault.
    -     * @return Returns a {@link List} of {@link StateAndRef} of unconsumed states of the specified type, or an empty list if no states could be found.
    +     * processResultsWithApplicationLogic(resultSet.results)
    +     *
    +     * while (resultSet.hasNext()) {
    +     *     val results = resultSet.next()
    +     *     processResultsWithApplicationLogic(results)
    +     * }
    +     * }
  • + *
  • Java:
    {@code
    +     * PagedQuery.ResultSet> resultSet = utxoLedgerService.query(MyState.class, 10, Instant.now())
    +     *
    +     * processResultsWithApplicationLogic(resultSet.getResults());
    +     *
    +     * while (resultSet.hasNext()) {
    +     *     List results = resultSet.next();
    +     *     processResultsWithApplicationLogic(results);
    +     * }
    +     * }
  • + * + * @param The underlying {@link ContractState} type. + * @param type The {@link ContractState} type to find in the vault. + * @param limit The size of each page. + * @param createdTimestampLimit The timestamp limit the underlying query enforces. + * @return Returns a {@link ResultSet} of {@link StateAndRef} of unconsumed states of the specified type. */ @NotNull @Suspendable - List> findUnconsumedStatesByExactType(@NotNull Class type); + ResultSet> findUnconsumedStatesByExactType( + @NotNull Class type, + @NotNull Integer limit, + @NotNull Instant createdTimestampLimit + ); /** * Verifies, signs, collects signatures, records and broadcasts a {@link UtxoSignedTransaction} to participants and observers. @@ -174,8 +208,7 @@ FinalizationResult receiveFinality( * }
* * @param transactionBuilder The {@link UtxoTransactionBuilder} to send. - * @param session The receiver {@link FlowSession}. - * + * @param session The receiver {@link FlowSession}. * @return A new merged builder of the original and proposed components. */ @NotNull @@ -203,8 +236,9 @@ UtxoTransactionBuilder receiveTransactionBuilder( * which tracks the differences internally. * If it is called with anything else, it throws InvalidParameterException. *

+ * * @param transactionBuilder The {@link UtxoTransactionBuilder} to send. - * @param session The receiver {@link FlowSession}. + * @param session The receiver {@link FlowSession}. */ @Suspendable void sendUpdatedTransactionBuilder( @@ -260,15 +294,14 @@ void sendUpdatedTransactionBuilder( * } * } * - * @param queryName The name of the named ledger query to use. + * @param queryName The name of the named ledger query to use. * @param resultClass Type that the query should return when executed. - * * @return A {@link VaultNamedParameterizedQuery} query object that can be executed or modified further on. - * * @see VaultNamedParameterizedQuery - * @see PagedQuery.ResultSet + * @see ResultSet * @see VaultNamedQueryFactory */ @Suspendable - @NotNull VaultNamedParameterizedQuery query(@NotNull String queryName, @NotNull Class resultClass); + @NotNull + VaultNamedParameterizedQuery query(@NotNull String queryName, @NotNull Class resultClass); } From 23e83c21ce2634aba65feaed7d63a5239ac25231 Mon Sep 17 00:00:00 2001 From: Dan Newton Date: Fri, 13 Oct 2023 19:37:28 +0100 Subject: [PATCH 20/30] CORE-15758 Configurable thread pool size of the mediator (#1287) --- .../java/net/corda/schema/configuration/FlowConfig.java | 1 + .../corda/schema/configuration/flow/1.0/corda.flow.json | 9 ++++++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/data/config-schema/src/main/java/net/corda/schema/configuration/FlowConfig.java b/data/config-schema/src/main/java/net/corda/schema/configuration/FlowConfig.java index 67e75825d6..8a68a0fc4a 100644 --- a/data/config-schema/src/main/java/net/corda/schema/configuration/FlowConfig.java +++ b/data/config-schema/src/main/java/net/corda/schema/configuration/FlowConfig.java @@ -14,4 +14,5 @@ private FlowConfig() { public static final String PROCESSING_MAX_RETRY_DELAY = "processing.maxRetryDelay"; public static final String PROCESSING_MAX_FLOW_SLEEP_DURATION = "processing.maxFlowSleepDuration"; public static final String PROCESSING_FLOW_CLEANUP_TIME = "processing.cleanupTime"; + public static final String PROCESSING_THREAD_POOL_SIZE = "processing.poolSize"; } diff --git a/data/config-schema/src/main/resources/net/corda/schema/configuration/flow/1.0/corda.flow.json b/data/config-schema/src/main/resources/net/corda/schema/configuration/flow/1.0/corda.flow.json index 3e5331403d..baa488793f 100644 --- a/data/config-schema/src/main/resources/net/corda/schema/configuration/flow/1.0/corda.flow.json +++ b/data/config-schema/src/main/resources/net/corda/schema/configuration/flow/1.0/corda.flow.json @@ -45,6 +45,13 @@ "minimum": 1000, "maximum": 2147483647, "default": 600000 + }, + "poolSize": { + "description": "The size of the flow event processing pool size.", + "type": "integer", + "minimum": 1, + "maximum": 2147483647, + "default": 8 } }, "additionalProperties": false @@ -82,7 +89,7 @@ "maximum": 2147483647, "default": 1800000 }, - "p2pTTL": { + "p2pTTL": { "description": "The TTL set in milliseconds. This is added to the current time and set on messages passed to the P2P layer to send to a counterparty. Messages received with a TTL timestamp set in the past will be discarded.", "type": "integer", "minimum": 10000, From c09ddb6fa158f0f39e2aece11888e541d3581917 Mon Sep 17 00:00:00 2001 From: Ronan Browne Date: Mon, 16 Oct 2023 08:42:40 +0100 Subject: [PATCH 21/30] ES-1491: Update CODEOWNERS file for 5.1 code freeze (#1298) --- .github/CODEOWNERS | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index bb5b3dc148..734204008d 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,15 +1 @@ - -# Build scripts and Jenkins files should be audited by BLT -# Any changes to source code of corda-api to be reviewd by C5 team leads - -Jenkinsfile @corda/blt -.ci/** @corda/blt - -gradle/* @corda/blt -*.gradle @corda/blt -gradle.properties @corda/corda5-team-leads - -*.kt @corda/corda5-team-leads -*.java @corda/corda5-team-leads - -CODEOWNERS @corda/blt @corda/corda5-team-leads +* @driessamyn @jasonbyrner3 @dimosr @ronanbrowne @rick-r3 @simon-johnson-r3 @blsemo @Omar-awad @aditisdesai @vinir3 @vkolomeyko @thiagoviana @Sakpal From b003f7db100e609ef99f4788a1b83fecc328dec7 Mon Sep 17 00:00:00 2001 From: Ramzi El-Yafi Date: Mon, 16 Oct 2023 13:42:04 +0100 Subject: [PATCH 22/30] Add deprecation warning to `findUnconsumedStatesByType` (#1300) --- gradle.properties | 2 +- .../corda/v5/ledger/utxo/UtxoLedgerService.java | 15 ++++++++------- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/gradle.properties b/gradle.properties index 11c6a2a6c7..ed6f197a28 100644 --- a/gradle.properties +++ b/gradle.properties @@ -9,7 +9,7 @@ cordaProductVersion = 5.1.0 # NOTE: update this each time this module contains a breaking change ## NOTE: currently this is a top level revision, so all API versions will line up, but this could be moved to ## a per module property in which case module versions can change independently. -cordaApiRevision = 36 +cordaApiRevision = 37 # Main kotlinVersion = 1.8.21 diff --git a/ledger/ledger-utxo/src/main/java/net/corda/v5/ledger/utxo/UtxoLedgerService.java b/ledger/ledger-utxo/src/main/java/net/corda/v5/ledger/utxo/UtxoLedgerService.java index e802588c3f..af18dff0f9 100644 --- a/ledger/ledger-utxo/src/main/java/net/corda/v5/ledger/utxo/UtxoLedgerService.java +++ b/ledger/ledger-utxo/src/main/java/net/corda/v5/ledger/utxo/UtxoLedgerService.java @@ -90,18 +90,19 @@ public interface UtxoLedgerService { /** * Finds unconsumed states that are concrete implementations or subclasses of {@code type}. - *

- * Only use this method if subclasses of {@code type} must be returned. - *

- * Use {@link #findUnconsumedStatesByExactType(Class)} to return exact instances of the input {@code type}. - * This method is more performant than {@link #findUnconsumedStatesByExactType(Class, Integer, Instant)}. - *

- * Use {@link #query(String, Class)} for a more performant method of retrieving subclasses of a specified type. + * + * @deprecated This method should no longer be used due to its lack of paging support, which can result in + * serious performance issues and / or out of memory errors if the query returns many states. + * {@link #findUnconsumedStatesByExactType(Class, Integer, Instant)} should be used instead. Note + * that this will not return subclasses of the specified class. If this functionality is required, + * it is recommended to write a custom query and invoke this via the {@link #query(String, Class)} + * API instead. * * @param The underlying {@link ContractState} type. * @param type The {@link ContractState} type to find in the vault. * @return Returns a {@link List} of {@link StateAndRef} of unconsumed states of the specified type, or an empty list if no states could be found. */ + @Deprecated(since = "5.1", forRemoval = true) @NotNull @Suspendable List> findUnconsumedStatesByType(@NotNull Class type); From 69a79f0eb0cb1cdd02289169230f5a496f9b881d Mon Sep 17 00:00:00 2001 From: Jacob Date: Mon, 16 Oct 2023 14:38:14 +0100 Subject: [PATCH 23/30] move yamls to scans dir and cementApi --- .../corda-application-5.1.0.yaml | 4 +- base/{src/api => scans}/corda-base-5.1.0.yaml | 4 +- .../corda-crypto-extensions-5.1.0.yaml | 4 +- .../api => scans}/corda-crypto-5.1.0.yaml | 4 +- .../corda-ledger-common-5.1.0.yaml | 4 +- .../corda-ledger-consensual-5.1.0.yaml | 4 +- .../corda-ledger-utxo-5.1.0.yaml | 93 +++---------------- .../corda-notary-plugin-5.1.0.yaml | 4 +- .../api => scans}/corda-membership-5.1.0.yaml | 4 +- .../corda-serialization-5.1.0.yaml | 4 +- 10 files changed, 39 insertions(+), 90 deletions(-) rename application/{src/api => scans}/corda-application-5.1.0.yaml (99%) rename base/{src/api => scans}/corda-base-5.1.0.yaml (99%) rename crypto-extensions/{src/api => scans}/corda-crypto-extensions-5.1.0.yaml (96%) rename crypto/{src/api => scans}/corda-crypto-5.1.0.yaml (99%) rename ledger/ledger-common/{src/api => scans}/corda-ledger-common-5.1.0.yaml (98%) rename ledger/ledger-consensual/{src/api => scans}/corda-ledger-consensual-5.1.0.yaml (98%) rename ledger/ledger-utxo/{src/api => scans}/corda-ledger-utxo-5.1.0.yaml (96%) rename ledger/notary-plugin/{src/api => scans}/corda-notary-plugin-5.1.0.yaml (93%) rename membership/{src/api => scans}/corda-membership-5.1.0.yaml (96%) rename serialization/{src/api => scans}/corda-serialization-5.1.0.yaml (96%) diff --git a/application/src/api/corda-application-5.1.0.yaml b/application/scans/corda-application-5.1.0.yaml similarity index 99% rename from application/src/api/corda-application-5.1.0.yaml rename to application/scans/corda-application-5.1.0.yaml index 32306de0aa..8c86ca41b3 100644 --- a/application/src/api/corda-application-5.1.0.yaml +++ b/application/scans/corda-application-5.1.0.yaml @@ -1,3 +1,5 @@ +# Auto-generated by Gradle cementApi task +# DO NOT EDIT THIS FILE MANUALLY net.corda.v5.application.crypto.CompositeKeyGenerator: annotations: [] type: public interface @@ -1895,4 +1897,4 @@ net.corda.v5.application.uniqueness.model.UniquenessCheckStateRef: - NotNull default: false type: public abstract - returnType: net.corda.v5.crypto.SecureHash + returnType: net.corda.v5.crypto.SecureHash \ No newline at end of file diff --git a/base/src/api/corda-base-5.1.0.yaml b/base/scans/corda-base-5.1.0.yaml similarity index 99% rename from base/src/api/corda-base-5.1.0.yaml rename to base/scans/corda-base-5.1.0.yaml index 0fd08a81fe..970e4011ca 100644 --- a/base/src/api/corda-base-5.1.0.yaml +++ b/base/scans/corda-base-5.1.0.yaml @@ -1,3 +1,5 @@ +# Auto-generated by Gradle cementApi task +# DO NOT EDIT THIS FILE MANUALLY net.corda.v5.base.annotations.ConstructorForDeserialization: annotations: [] type: public @interface @@ -768,4 +770,4 @@ net.corda.v5.base.versioning.Version: - NotNull default: false type: public - returnType: String + returnType: String \ No newline at end of file diff --git a/crypto-extensions/src/api/corda-crypto-extensions-5.1.0.yaml b/crypto-extensions/scans/corda-crypto-extensions-5.1.0.yaml similarity index 96% rename from crypto-extensions/src/api/corda-crypto-extensions-5.1.0.yaml rename to crypto-extensions/scans/corda-crypto-extensions-5.1.0.yaml index 98f7f0b6f3..ed08a13329 100644 --- a/crypto-extensions/src/api/corda-crypto-extensions-5.1.0.yaml +++ b/crypto-extensions/scans/corda-crypto-extensions-5.1.0.yaml @@ -1,3 +1,5 @@ +# Auto-generated by Gradle cementApi task +# DO NOT EDIT THIS FILE MANUALLY net.corda.v5.crypto.extensions.DigestAlgorithm: annotations: [] type: public interface @@ -160,4 +162,4 @@ net.corda.v5.crypto.extensions.merkle.MerkleTreeHashDigestProviderWithSizeProofS right: annotation: - NotNull - type: net.corda.v5.crypto.SecureHash + type: net.corda.v5.crypto.SecureHash \ No newline at end of file diff --git a/crypto/src/api/corda-crypto-5.1.0.yaml b/crypto/scans/corda-crypto-5.1.0.yaml similarity index 99% rename from crypto/src/api/corda-crypto-5.1.0.yaml rename to crypto/scans/corda-crypto-5.1.0.yaml index 430c542388..f92999023d 100644 --- a/crypto/src/api/corda-crypto-5.1.0.yaml +++ b/crypto/scans/corda-crypto-5.1.0.yaml @@ -1,3 +1,5 @@ +# Auto-generated by Gradle cementApi task +# DO NOT EDIT THIS FILE MANUALLY net.corda.v5.crypto.CompositeKey: annotations: [] type: public interface @@ -560,4 +562,4 @@ net.corda.v5.crypto.merkle.MerkleTreeHashDigest: - NotNull default: false type: public abstract - returnType: net.corda.v5.crypto.DigestAlgorithmName + returnType: net.corda.v5.crypto.DigestAlgorithmName \ No newline at end of file diff --git a/ledger/ledger-common/src/api/corda-ledger-common-5.1.0.yaml b/ledger/ledger-common/scans/corda-ledger-common-5.1.0.yaml similarity index 98% rename from ledger/ledger-common/src/api/corda-ledger-common-5.1.0.yaml rename to ledger/ledger-common/scans/corda-ledger-common-5.1.0.yaml index b6c37c94e3..a6ab68fb42 100644 --- a/ledger/ledger-common/src/api/corda-ledger-common-5.1.0.yaml +++ b/ledger/ledger-common/scans/corda-ledger-common-5.1.0.yaml @@ -1,3 +1,5 @@ +# Auto-generated by Gradle cementApi task +# DO NOT EDIT THIS FILE MANUALLY net.corda.v5.ledger.common.NotaryLookup: annotations: - DoNotImplement @@ -235,4 +237,4 @@ net.corda.v5.ledger.common.transaction.TransactionWithMetadata: - NotNull default: false type: public abstract - returnType: net.corda.v5.ledger.common.transaction.TransactionMetadata + returnType: net.corda.v5.ledger.common.transaction.TransactionMetadata \ No newline at end of file diff --git a/ledger/ledger-consensual/src/api/corda-ledger-consensual-5.1.0.yaml b/ledger/ledger-consensual/scans/corda-ledger-consensual-5.1.0.yaml similarity index 98% rename from ledger/ledger-consensual/src/api/corda-ledger-consensual-5.1.0.yaml rename to ledger/ledger-consensual/scans/corda-ledger-consensual-5.1.0.yaml index 90e65b5068..014e7e6051 100644 --- a/ledger/ledger-consensual/src/api/corda-ledger-consensual-5.1.0.yaml +++ b/ledger/ledger-consensual/scans/corda-ledger-consensual-5.1.0.yaml @@ -1,3 +1,5 @@ +# Auto-generated by Gradle cementApi task +# DO NOT EDIT THIS FILE MANUALLY net.corda.v5.ledger.consensual.ConsensualLedgerService: annotations: - DoNotImplement @@ -190,4 +192,4 @@ net.corda.v5.ledger.consensual.transaction.ConsensualTransactionValidator: transaction: annotation: - NotNull - type: net.corda.v5.ledger.consensual.transaction.ConsensualLedgerTransaction + type: net.corda.v5.ledger.consensual.transaction.ConsensualLedgerTransaction \ No newline at end of file diff --git a/ledger/ledger-utxo/src/api/corda-ledger-utxo-5.1.0.yaml b/ledger/ledger-utxo/scans/corda-ledger-utxo-5.1.0.yaml similarity index 96% rename from ledger/ledger-utxo/src/api/corda-ledger-utxo-5.1.0.yaml rename to ledger/ledger-utxo/scans/corda-ledger-utxo-5.1.0.yaml index 09f8a3fe0a..16cdc694aa 100644 --- a/ledger/ledger-utxo/src/api/corda-ledger-utxo-5.1.0.yaml +++ b/ledger/ledger-utxo/scans/corda-ledger-utxo-5.1.0.yaml @@ -1,54 +1,5 @@ -net.corda.v5.ledger.utxo.Attachment: - annotations: - - CordaSerializable - - DoNotImplement - type: public interface - extends: [] - interface: true - methods: - extractFile: - annotations: [] - default: false - type: public abstract - returnType: void - params: - path: - annotation: - - NotNull - type: String - output: - annotation: - - NotNull - type: java.io.OutputStream - getId: - annotations: - - NotNull - default: false - type: public abstract - returnType: net.corda.v5.crypto.SecureHash - getSignatories: - annotations: - - NotNull - default: false - type: public abstract - returnType: java.util.List - getSize: - annotations: [] - default: false - type: public abstract - returnType: int - open: - annotations: - - NotNull - default: false - type: public abstract - returnType: java.io.InputStream - openAsZip: - annotations: - - NotNull - default: true - type: public - returnType: java.util.zip.ZipInputStream +# Auto-generated by Gradle cementApi task +# DO NOT EDIT THIS FILE MANUALLY net.corda.v5.ledger.utxo.BelongsToContract: annotations: [] type: public @interface @@ -412,12 +363,20 @@ net.corda.v5.ledger.utxo.UtxoLedgerService: - NotNull default: false type: public abstract - returnType: java.util.List> + returnType: net.corda.v5.application.persistence.PagedQuery$ResultSet> params: type: annotation: - NotNull type: Class + limit: + annotation: + - NotNull + type: Integer + createdTimestampLimit: + annotation: + - NotNull + type: java.time.Instant findUnconsumedStatesByType: annotations: - Suspendable @@ -1377,23 +1336,6 @@ net.corda.v5.ledger.utxo.transaction.UtxoLedgerTransaction: extends: [] interface: true methods: - getAttachment: - annotations: - - NotNull - default: false - type: public abstract - returnType: net.corda.v5.ledger.utxo.Attachment - params: - id: - annotation: - - NotNull - type: net.corda.v5.crypto.SecureHash - getAttachments: - annotations: - - NotNull - default: false - type: public abstract - returnType: java.util.List getCommands: annotations: - NotNull @@ -1638,17 +1580,6 @@ net.corda.v5.ledger.utxo.transaction.UtxoTransactionBuilder: extends: [] interface: true methods: - addAttachment: - annotations: - - NotNull - default: false - type: public abstract - returnType: net.corda.v5.ledger.utxo.transaction.UtxoTransactionBuilder - params: - attachmentId: - annotation: - - NotNull - type: net.corda.v5.crypto.SecureHash addCommand: annotations: - NotNull @@ -2132,4 +2063,4 @@ net.corda.v5.ledger.utxo.uniqueness.client.LedgerUniquenessCheckerClientService: timeWindowUpperBound: annotation: - NotNull - type: java.time.Instant + type: java.time.Instant \ No newline at end of file diff --git a/ledger/notary-plugin/src/api/corda-notary-plugin-5.1.0.yaml b/ledger/notary-plugin/scans/corda-notary-plugin-5.1.0.yaml similarity index 93% rename from ledger/notary-plugin/src/api/corda-notary-plugin-5.1.0.yaml rename to ledger/notary-plugin/scans/corda-notary-plugin-5.1.0.yaml index aab366207f..1c4a53c651 100644 --- a/ledger/notary-plugin/src/api/corda-notary-plugin-5.1.0.yaml +++ b/ledger/notary-plugin/scans/corda-notary-plugin-5.1.0.yaml @@ -1,3 +1,5 @@ +# Auto-generated by Gradle cementApi task +# DO NOT EDIT THIS FILE MANUALLY net.corda.v5.ledger.notary.plugin.api.PluggableNotaryClientFlow: annotations: [] type: public interface @@ -64,4 +66,4 @@ net.corda.v5.ledger.notary.plugin.core.NotaryExceptionUnknown: - Nullable default: false type: public final - returnType: net.corda.v5.crypto.SecureHash + returnType: net.corda.v5.crypto.SecureHash \ No newline at end of file diff --git a/membership/src/api/corda-membership-5.1.0.yaml b/membership/scans/corda-membership-5.1.0.yaml similarity index 96% rename from membership/src/api/corda-membership-5.1.0.yaml rename to membership/scans/corda-membership-5.1.0.yaml index 5bb89acf6a..2700313fa3 100644 --- a/membership/src/api/corda-membership-5.1.0.yaml +++ b/membership/scans/corda-membership-5.1.0.yaml @@ -1,3 +1,5 @@ +# Auto-generated by Gradle cementApi task +# DO NOT EDIT THIS FILE MANUALLY net.corda.v5.membership.EndpointInfo: annotations: - CordaSerializable @@ -144,4 +146,4 @@ net.corda.v5.membership.NotaryInfo: - NotNull default: false type: public abstract - returnType: java.security.PublicKey + returnType: java.security.PublicKey \ No newline at end of file diff --git a/serialization/src/api/corda-serialization-5.1.0.yaml b/serialization/scans/corda-serialization-5.1.0.yaml similarity index 96% rename from serialization/src/api/corda-serialization-5.1.0.yaml rename to serialization/scans/corda-serialization-5.1.0.yaml index 1b3f5dbeaa..5bbd1e4a64 100644 --- a/serialization/src/api/corda-serialization-5.1.0.yaml +++ b/serialization/scans/corda-serialization-5.1.0.yaml @@ -1,3 +1,5 @@ +# Auto-generated by Gradle cementApi task +# DO NOT EDIT THIS FILE MANUALLY net.corda.v5.serialization.MissingSerializerException: annotations: [] type: public class @@ -120,4 +122,4 @@ net.corda.v5.serialization.annotations.CordaSerializationTransformRenames: annotations: [] default: false type: public abstract - returnType: "net.corda.v5.serialization.annotations.CordaSerializationTransformRename[]" + returnType: "net.corda.v5.serialization.annotations.CordaSerializationTransformRename[]" \ No newline at end of file From 25c887cbe5b7b253e751a0b13f37f656540645c1 Mon Sep 17 00:00:00 2001 From: Jacob Date: Mon, 16 Oct 2023 16:58:57 +0100 Subject: [PATCH 24/30] revert Jenkinsfiles --- .ci/JenkinsApiCompatibility | 2 +- Jenkinsfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.ci/JenkinsApiCompatibility b/.ci/JenkinsApiCompatibility index 57c1ad5a41..2fb1d7ca2e 100644 --- a/.ci/JenkinsApiCompatibility +++ b/.ci/JenkinsApiCompatibility @@ -1,5 +1,5 @@ // Check corda-api compatibility with downstream consumers which implement CordApps -@Library('corda-shared-build-pipeline-steps@jacob/ES-1398') _ +@Library('corda-shared-build-pipeline-steps@5.1') _ cordaApiCompatibilityCheck( javaVersion: '17' diff --git a/Jenkinsfile b/Jenkinsfile index 0289bf0596..80b286b560 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,4 +1,4 @@ -@Library('corda-shared-build-pipeline-steps@jacob/ES-1398') _ +@Library('corda-shared-build-pipeline-steps@5.1') _ cordaPipelineKubernetesAgent( runIntegrationTests: false, From a12bd0bb712daa2e735634a039679da756793813 Mon Sep 17 00:00:00 2001 From: Jacob Scott Date: Tue, 17 Oct 2023 13:33:21 +0100 Subject: [PATCH 25/30] Create workflow remove-stale-branches.yml --- .github/workflows/remove-stale-branches.yml | 23 +++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/remove-stale-branches.yml diff --git a/.github/workflows/remove-stale-branches.yml b/.github/workflows/remove-stale-branches.yml new file mode 100644 index 0000000000..b50cac6171 --- /dev/null +++ b/.github/workflows/remove-stale-branches.yml @@ -0,0 +1,23 @@ +on: + workflow_dispatch: # this will eventually be a cron job - for now it is used in manual testing + inputs: + days_before_stale: + type: number + default: 30 + days_before_delete: + type: number + default: 14 + +jobs: + remove-stale-branches: + name: Remove stale branches + runs-on: ubuntu-latest + steps: + - uses: fpicalausa/remove-stale-branches@v1.5.8 + with: + dry-run: true + days-before-branch-stale: ${{ inputs.days_before_stale }} + days-before-branch-delete: ${{ inputs.days_before_delete }} + stale-branch-message: "@{author} The branch [{branchName}]({branchUrl}) hasn't been updated in the last 30 days and is marked as stale. It will be removed in 14 days.\r\nIf you want to keep this branch around, delete this comment or add new commits to this branch." + exempt-protected-branches: true + exempt-branches-regex: "^(release\\/|feature\\/|poc\\/).*" From 6211fc37e8d536a09c05993bd3d45fc4cf04e728 Mon Sep 17 00:00:00 2001 From: Jacob Scott Date: Tue, 17 Oct 2023 15:44:34 +0100 Subject: [PATCH 26/30] Add cron job to stale branch workflow --- .github/workflows/remove-stale-branches.yml | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/.github/workflows/remove-stale-branches.yml b/.github/workflows/remove-stale-branches.yml index b50cac6171..25dd1b9f8c 100644 --- a/.github/workflows/remove-stale-branches.yml +++ b/.github/workflows/remove-stale-branches.yml @@ -1,12 +1,7 @@ -on: - workflow_dispatch: # this will eventually be a cron job - for now it is used in manual testing - inputs: - days_before_stale: - type: number - default: 30 - days_before_delete: - type: number - default: 14 +name: 'Remove stale branches' +on: + schedule: + - cron: '0 0 * * 1-5' jobs: remove-stale-branches: @@ -16,8 +11,9 @@ jobs: - uses: fpicalausa/remove-stale-branches@v1.5.8 with: dry-run: true - days-before-branch-stale: ${{ inputs.days_before_stale }} - days-before-branch-delete: ${{ inputs.days_before_delete }} + days-before-branch-stale: 30 + days-before-branch-delete: 14 stale-branch-message: "@{author} The branch [{branchName}]({branchUrl}) hasn't been updated in the last 30 days and is marked as stale. It will be removed in 14 days.\r\nIf you want to keep this branch around, delete this comment or add new commits to this branch." exempt-protected-branches: true exempt-branches-regex: "^(release\\/|feature\\/|poc\\/).*" + operations-per-run: 30 From 262d21be346a51516ddd60674ce3095b1dd7dbfe Mon Sep 17 00:00:00 2001 From: Owen Stanford <92725587+owenstanford@users.noreply.github.com> Date: Mon, 23 Oct 2023 17:28:39 +0100 Subject: [PATCH 27/30] CORE-17502 Added token selection worker HTTP endpoint definition. (#1313) --- .../src/main/java/net/corda/schema/configuration/BootConfig.java | 1 + 1 file changed, 1 insertion(+) diff --git a/data/config-schema/src/main/java/net/corda/schema/configuration/BootConfig.java b/data/config-schema/src/main/java/net/corda/schema/configuration/BootConfig.java index de0f1452b0..219239b23d 100644 --- a/data/config-schema/src/main/java/net/corda/schema/configuration/BootConfig.java +++ b/data/config-schema/src/main/java/net/corda/schema/configuration/BootConfig.java @@ -47,4 +47,5 @@ private BootConfig() { public static final String VERIFICATION_WORKER_REST_ENDPOINT = BOOT_WORKER_SERVICE + ".endpoints.verification"; public static final String UNIQUENESS_WORKER_REST_ENDPOINT = BOOT_WORKER_SERVICE + ".endpoints.uniqueness"; public static final String PERSISTENCE_WORKER_REST_ENDPOINT = BOOT_WORKER_SERVICE + ".endpoints.persistence"; + public static final String TOKEN_SELECTION_WORKER_REST_ENDPOINT = BOOT_WORKER_SERVICE + ".endpoints.tokenSelection"; } From eb1d079b35e9d4db1108eebc566f6af7389ee77a Mon Sep 17 00:00:00 2001 From: Miljenko Brkic <97448832+mbrkic-r3@users.noreply.github.com> Date: Tue, 24 Oct 2023 15:15:20 +0100 Subject: [PATCH 28/30] CORE-17768 Topology changes - Use new topics (#1306) Set permission for FlowMapper to send messages to Kafka topic "flow.mapper.session.in" Set permission for TokenSelection to send messages to Kafka topic "flow.session" --- data/topic-schema/src/main/resources/net/corda/schema/Flow.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/data/topic-schema/src/main/resources/net/corda/schema/Flow.yaml b/data/topic-schema/src/main/resources/net/corda/schema/Flow.yaml index 5aed6fdbcf..04fd6571d9 100644 --- a/data/topic-schema/src/main/resources/net/corda/schema/Flow.yaml +++ b/data/topic-schema/src/main/resources/net/corda/schema/Flow.yaml @@ -114,6 +114,7 @@ topics: consumers: - flowMapper producers: + - flowMapper - link-manager config: FlowStart: @@ -129,5 +130,6 @@ topics: - flow producers: - flowMapper + - tokenSelection config: From 072ae2ef2eee1a017f6aa1ff9af5fac1b3f4f384 Mon Sep 17 00:00:00 2001 From: Alexander Cramb Date: Fri, 27 Oct 2023 14:08:19 +0100 Subject: [PATCH 29/30] Restore pre-freeze code owners file --- .github/CODEOWNERS | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 734204008d..bb5b3dc148 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1 +1,15 @@ -* @driessamyn @jasonbyrner3 @dimosr @ronanbrowne @rick-r3 @simon-johnson-r3 @blsemo @Omar-awad @aditisdesai @vinir3 @vkolomeyko @thiagoviana @Sakpal + +# Build scripts and Jenkins files should be audited by BLT +# Any changes to source code of corda-api to be reviewd by C5 team leads + +Jenkinsfile @corda/blt +.ci/** @corda/blt + +gradle/* @corda/blt +*.gradle @corda/blt +gradle.properties @corda/corda5-team-leads + +*.kt @corda/corda5-team-leads +*.java @corda/corda5-team-leads + +CODEOWNERS @corda/blt @corda/corda5-team-leads From 87531419911bf0ecce1521bf7493a9a419de2a17 Mon Sep 17 00:00:00 2001 From: Alexander Cramb Date: Fri, 27 Oct 2023 16:40:57 +0100 Subject: [PATCH 30/30] Add InteropProcessorEvent avro type --- .../corda/data/interop/InteropProcessorEvent.avsc | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 data/avro-schema/src/main/resources/avro/net/corda/data/interop/InteropProcessorEvent.avsc diff --git a/data/avro-schema/src/main/resources/avro/net/corda/data/interop/InteropProcessorEvent.avsc b/data/avro-schema/src/main/resources/avro/net/corda/data/interop/InteropProcessorEvent.avsc new file mode 100644 index 0000000000..6021916fde --- /dev/null +++ b/data/avro-schema/src/main/resources/avro/net/corda/data/interop/InteropProcessorEvent.avsc @@ -0,0 +1,13 @@ +{ + "type": "record", + "name": "InteropProcessorEvent", + "namespace": "net.corda.data.interop", + "fields": [ + { + "name": "payload", + "type": [ + "net.corda.data.flow.event.SessionEvent" + ] + } + ] +}